diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index b15d89219f4..b85e9226121 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -126,9 +126,6 @@
# Jetbrains
/pkgs/applications/editors/jetbrains @edwtjo
-# Eclipse
-/pkgs/applications/editors/eclipse @rycee
-
# Licenses
/lib/licenses.nix @alyssais
diff --git a/.github/labeler.yml b/.github/labeler.yml
index 77422234ab3..1b0392692ed 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -5,6 +5,10 @@
- pkgs/development/libraries/agda/**/*
- pkgs/top-level/agda-packages.nix
+"6.topic: bsd":
+ - pkgs/os-specific/bsd/**/*
+ - pkgs/stdenv/freebsd/**/*
+
"6.topic: cinnamon":
- pkgs/desktops/cinnamon/**/*
diff --git a/.github/workflows/direct-push.yml b/.github/workflows/direct-push.yml
new file mode 100644
index 00000000000..6177004295f
--- /dev/null
+++ b/.github/workflows/direct-push.yml
@@ -0,0 +1,29 @@
+name: "Direct Push Warning"
+on:
+ push:
+ branches:
+ - master
+ - release-**
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ if: github.repository_owner == 'NixOS'
+ env:
+ GITHUB_SHA: ${{ github.sha }}
+ GITHUB_REPOSITORY: ${{ github.repository }}
+ steps:
+ - name: Check if commit is a merge commit
+ id: ismerge
+ run: |
+ ISMERGE=$(curl -H 'Accept: application/vnd.github.groot-preview+json' -H "authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ env.GITHUB_REPOSITORY }}/commits/${{ env.GITHUB_SHA }}/pulls | jq -r '.[] | select(.merge_commit_sha == "${{ env.GITHUB_SHA }}") | any')
+ echo "::set-output name=ismerge::$ISMERGE"
+ - name: Warn if the commit was a direct push
+ if: steps.ismerge.outputs.ismerge != 'true'
+ uses: peter-evans/commit-comment@v1
+ with:
+ body: |
+ @${{ github.actor }}, you pushed a commit directly to master/release branch
+ instead of going through a Pull Request.
+
+ That's highly discouraged beyond the few exceptions listed
+ on https://github.com/NixOS/nixpkgs/issues/118661
diff --git a/doc/builders/packages/dlib.section.md b/doc/builders/packages/dlib.section.md
new file mode 100644
index 00000000000..8f0aa861018
--- /dev/null
+++ b/doc/builders/packages/dlib.section.md
@@ -0,0 +1,13 @@
+# DLib {#dlib}
+
+[DLib](http://dlib.net/) is a modern, C++-based toolkit which provides several machine learning algorithms.
+
+## Compiling without AVX support {#compiling-without-avx-support}
+
+Especially older CPUs don\'t support [AVX](https://en.wikipedia.org/wiki/Advanced_Vector_Extensions) (Advanced Vector Extensions) instructions that are used by DLib to optimize their algorithms.
+
+On the affected hardware errors like `Illegal instruction` will occur. In those cases AVX support needs to be disabled:
+
+```nix
+self: super: { dlib = super.dlib.override { avxSupport = false; }; }
+```
diff --git a/doc/builders/packages/dlib.xml b/doc/builders/packages/dlib.xml
deleted file mode 100644
index 5f768dd51b6..00000000000
--- a/doc/builders/packages/dlib.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
- DLib
-
-
- DLib is a modern, C++-based toolkit which provides several machine learning algorithms.
-
-
-
- Compiling without AVX support
-
-
- Especially older CPUs don't support AVX (Advanced Vector Extensions) instructions that are used by DLib to optimize their algorithms.
-
-
-
- On the affected hardware errors like Illegal instruction will occur. In those cases AVX support needs to be disabled:
-self: super: {
- dlib = super.dlib.override { avxSupport = false; };
-}
-
-
-
diff --git a/doc/builders/packages/fuse.section.md b/doc/builders/packages/fuse.section.md
index 5603481115e..eb0023fcbc3 100644
--- a/doc/builders/packages/fuse.section.md
+++ b/doc/builders/packages/fuse.section.md
@@ -17,3 +17,29 @@ following, it's a likely sign that you need to have macFUSE installed.
Referenced from: /nix/store/w8bi72bssv0bnxhwfw3xr1mvn7myf37x-sshfs-fuse-2.10/bin/sshfs
Reason: image not found
[1] 92299 abort /nix/store/w8bi72bssv0bnxhwfw3xr1mvn7myf37x-sshfs-fuse-2.10/bin/sshfs
+
+Package maintainers may often encounter the following error when building FUSE
+packages on macOS:
+
+ checking for fuse.h... no
+ configure: error: No fuse.h found.
+
+This happens on autoconf based projects that uses `AC_CHECK_HEADERS` or
+`AC_CHECK_LIBS` to detect libfuse, and will occur even when the `fuse` package
+is included in `buildInputs`. It happens because libfuse headers throw an error
+on macOS if the `FUSE_USE_VERSION` macro is undefined. Many proejcts do define
+`FUSE_USE_VERSION`, but only inside C source files. This results in the above
+error at configure time because the configure script would attempt to compile
+sample FUSE programs without defining `FUSE_USE_VERSION`.
+
+There are two possible solutions for this problem in Nixpkgs:
+
+1. Pass `FUSE_USE_VERSION` to the configure script by adding
+ `CFLAGS=-DFUSE_USE_VERSION=25` in `configureFlags`. The actual value would
+ have to match the definition used in the upstream source code.
+2. Remove `AC_CHECK_HEADERS` / `AC_CHECK_LIBS` for libfuse.
+
+However, a better solution might be to fix the build script upstream to use
+`PKG_CHECK_MODULES` instead. This approach wouldn't suffer from the problem that
+`AC_CHECK_HEADERS`/`AC_CHECK_LIBS` has at the price of introducing a dependency
+on pkg-config.
diff --git a/doc/builders/packages/index.xml b/doc/builders/packages/index.xml
index a2bcd431531..f5b05b0bbcc 100644
--- a/doc/builders/packages/index.xml
+++ b/doc/builders/packages/index.xml
@@ -6,7 +6,7 @@
This chapter contains information about how to use and maintain the Nix expressions for a number of specific packages, such as the Linux kernel or X.org.
-
+
diff --git a/doc/contributing/coding-conventions.chapter.md b/doc/contributing/coding-conventions.chapter.md
new file mode 100644
index 00000000000..eccf4f7436e
--- /dev/null
+++ b/doc/contributing/coding-conventions.chapter.md
@@ -0,0 +1,514 @@
+# Coding conventions {#chap-conventions}
+
+## Syntax {#sec-syntax}
+
+- Use 2 spaces of indentation per indentation level in Nix expressions, 4 spaces in shell scripts.
+
+- Do not use tab characters, i.e. configure your editor to use soft tabs. For instance, use `(setq-default indent-tabs-mode nil)` in Emacs. Everybody has different tab settings so it’s asking for trouble.
+
+- Use `lowerCamelCase` for variable names, not `UpperCamelCase`. Note, this rule does not apply to package attribute names, which instead follow the rules in .
+
+- Function calls with attribute set arguments are written as
+
+ ```nix
+ foo {
+ arg = ...;
+ }
+ ```
+
+ not
+
+ ```nix
+ foo
+ {
+ arg = ...;
+ }
+ ```
+
+ Also fine is
+
+ ```nix
+ foo { arg = ...; }
+ ```
+
+ if it's a short call.
+
+- In attribute sets or lists that span multiple lines, the attribute names or list elements should be aligned:
+
+ ```nix
+ # A long list.
+ list = [
+ elem1
+ elem2
+ elem3
+ ];
+
+ # A long attribute set.
+ attrs = {
+ attr1 = short_expr;
+ attr2 =
+ if true then big_expr else big_expr;
+ };
+
+ # Combined
+ listOfAttrs = [
+ {
+ attr1 = 3;
+ attr2 = "fff";
+ }
+ {
+ attr1 = 5;
+ attr2 = "ggg";
+ }
+ ];
+ ```
+
+- Short lists or attribute sets can be written on one line:
+
+ ```nix
+ # A short list.
+ list = [ elem1 elem2 elem3 ];
+
+ # A short set.
+ attrs = { x = 1280; y = 1024; };
+ ```
+
+- Breaking in the middle of a function argument can give hard-to-read code, like
+
+ ```nix
+ someFunction { x = 1280;
+ y = 1024; } otherArg
+ yetAnotherArg
+ ```
+
+ (especially if the argument is very large, spanning multiple lines).
+
+ Better:
+
+ ```nix
+ someFunction
+ { x = 1280; y = 1024; }
+ otherArg
+ yetAnotherArg
+ ```
+
+ or
+
+ ```nix
+ let res = { x = 1280; y = 1024; };
+ in someFunction res otherArg yetAnotherArg
+ ```
+
+- The bodies of functions, asserts, and withs are not indented to prevent a lot of superfluous indentation levels, i.e.
+
+ ```nix
+ { arg1, arg2 }:
+ assert system == "i686-linux";
+ stdenv.mkDerivation { ...
+ ```
+
+ not
+
+ ```nix
+ { arg1, arg2 }:
+ assert system == "i686-linux";
+ stdenv.mkDerivation { ...
+ ```
+
+- Function formal arguments are written as:
+
+ ```nix
+ { arg1, arg2, arg3 }:
+ ```
+
+ but if they don't fit on one line they're written as:
+
+ ```nix
+ { arg1, arg2, arg3
+ , arg4, ...
+ , # Some comment...
+ argN
+ }:
+ ```
+
+- Functions should list their expected arguments as precisely as possible. That is, write
+
+ ```nix
+ { stdenv, fetchurl, perl }: ...
+ ```
+
+ instead of
+
+ ```nix
+ args: with args; ...
+ ```
+
+ or
+
+ ```nix
+ { stdenv, fetchurl, perl, ... }: ...
+ ```
+
+ For functions that are truly generic in the number of arguments (such as wrappers around `mkDerivation`) that have some required arguments, you should write them using an `@`-pattern:
+
+ ```nix
+ { stdenv, doCoverageAnalysis ? false, ... } @ args:
+
+ stdenv.mkDerivation (args // {
+ ... if doCoverageAnalysis then "bla" else "" ...
+ })
+ ```
+
+ instead of
+
+ ```nix
+ args:
+
+ args.stdenv.mkDerivation (args // {
+ ... if args ? doCoverageAnalysis && args.doCoverageAnalysis then "bla" else "" ...
+ })
+ ```
+
+- Arguments should be listed in the order they are used, with the exception of `lib`, which always goes first.
+
+- Prefer using the top-level `lib` over its alias `stdenv.lib`. `lib` is unrelated to `stdenv`, and so `stdenv.lib` should only be used as a convenience alias when developing to avoid having to modify the function inputs just to test something out.
+
+## Package naming {#sec-package-naming}
+
+The key words _must_, _must not_, _required_, _shall_, _shall not_, _should_, _should not_, _recommended_, _may_, and _optional_ in this section are to be interpreted as described in [RFC 2119](https://tools.ietf.org/html/rfc2119). Only _emphasized_ words are to be interpreted in this way.
+
+In Nixpkgs, there are generally three different names associated with a package:
+
+- The `name` attribute of the derivation (excluding the version part). This is what most users see, in particular when using `nix-env`.
+
+- The variable name used for the instantiated package in `all-packages.nix`, and when passing it as a dependency to other functions. Typically this is called the _package attribute name_. This is what Nix expression authors see. It can also be used when installing using `nix-env -iA`.
+
+- The filename for (the directory containing) the Nix expression.
+
+Most of the time, these are the same. For instance, the package `e2fsprogs` has a `name` attribute `"e2fsprogs-version"`, is bound to the variable name `e2fsprogs` in `all-packages.nix`, and the Nix expression is in `pkgs/os-specific/linux/e2fsprogs/default.nix`.
+
+There are a few naming guidelines:
+
+- The `name` attribute _should_ be identical to the upstream package name.
+
+- The `name` attribute _must not_ contain uppercase letters — e.g., `"mplayer-1.0rc2"` instead of `"MPlayer-1.0rc2"`.
+
+- The version part of the `name` attribute _must_ start with a digit (following a dash) — e.g., `"hello-0.3.1rc2"`.
+
+- If a package is not a release but a commit from a repository, then the version part of the name _must_ be the date of that (fetched) commit. The date _must_ be in `"YYYY-MM-DD"` format. Also append `"unstable"` to the name - e.g., `"pkgname-unstable-2014-09-23"`.
+
+- Dashes in the package name _should_ be preserved in new variable names, rather than converted to underscores or camel cased — e.g., `http-parser` instead of `http_parser` or `httpParser`. The hyphenated style is preferred in all three package names.
+
+- If there are multiple versions of a package, this _should_ be reflected in the variable names in `all-packages.nix`, e.g. `json-c-0-9` and `json-c-0-11`. If there is an obvious “default” version, make an attribute like `json-c = json-c-0-9;`. See also
+
+## File naming and organisation {#sec-organisation}
+
+Names of files and directories should be in lowercase, with dashes between words — not in camel case. For instance, it should be `all-packages.nix`, not `allPackages.nix` or `AllPackages.nix`.
+
+### Hierarchy {#sec-hierarchy}
+
+Each package should be stored in its own directory somewhere in the `pkgs/` tree, i.e. in `pkgs/category/subcategory/.../pkgname`. Below are some rules for picking the right category for a package. Many packages fall under several categories; what matters is the _primary_ purpose of a package. For example, the `libxml2` package builds both a library and some tools; but it’s a library foremost, so it goes under `pkgs/development/libraries`.
+
+When in doubt, consider refactoring the `pkgs/` tree, e.g. creating new categories or splitting up an existing category.
+
+**If it’s used to support _software development_:**
+
+- **If it’s a _library_ used by other packages:**
+
+ - `development/libraries` (e.g. `libxml2`)
+
+- **If it’s a _compiler_:**
+
+ - `development/compilers` (e.g. `gcc`)
+
+- **If it’s an _interpreter_:**
+
+ - `development/interpreters` (e.g. `guile`)
+
+- **If it’s a (set of) development _tool(s)_:**
+
+ - **If it’s a _parser generator_ (including lexers):**
+
+ - `development/tools/parsing` (e.g. `bison`, `flex`)
+
+ - **If it’s a _build manager_:**
+
+ - `development/tools/build-managers` (e.g. `gnumake`)
+
+ - **Else:**
+
+ - `development/tools/misc` (e.g. `binutils`)
+
+- **Else:**
+
+ - `development/misc`
+
+**If it’s a (set of) _tool(s)_:**
+
+(A tool is a relatively small program, especially one intended to be used non-interactively.)
+
+- **If it’s for _networking_:**
+
+ - `tools/networking` (e.g. `wget`)
+
+- **If it’s for _text processing_:**
+
+ - `tools/text` (e.g. `diffutils`)
+
+- **If it’s a _system utility_, i.e., something related or essential to the operation of a system:**
+
+ - `tools/system` (e.g. `cron`)
+
+- **If it’s an _archiver_ (which may include a compression function):**
+
+ - `tools/archivers` (e.g. `zip`, `tar`)
+
+- **If it’s a _compression_ program:**
+
+ - `tools/compression` (e.g. `gzip`, `bzip2`)
+
+- **If it’s a _security_-related program:**
+
+ - `tools/security` (e.g. `nmap`, `gnupg`)
+
+- **Else:**
+
+ - `tools/misc`
+
+**If it’s a _shell_:**
+
+- `shells` (e.g. `bash`)
+
+**If it’s a _server_:**
+
+- **If it’s a web server:**
+
+ - `servers/http` (e.g. `apache-httpd`)
+
+- **If it’s an implementation of the X Windowing System:**
+
+ - `servers/x11` (e.g. `xorg` — this includes the client libraries and programs)
+
+- **Else:**
+
+ - `servers/misc`
+
+**If it’s a _desktop environment_:**
+
+- `desktops` (e.g. `kde`, `gnome`, `enlightenment`)
+
+**If it’s a _window manager_:**
+
+- `applications/window-managers` (e.g. `awesome`, `stumpwm`)
+
+**If it’s an _application_:**
+
+A (typically large) program with a distinct user interface, primarily used interactively.
+
+- **If it’s a _version management system_:**
+
+ - `applications/version-management` (e.g. `subversion`)
+
+- **If it’s a _terminal emulator_:**
+
+ - `applications/terminal-emulators` (e.g. `alacritty` or `rxvt` or `termite`)
+
+- **If it’s for _video playback / editing_:**
+
+ - `applications/video` (e.g. `vlc`)
+
+- **If it’s for _graphics viewing / editing_:**
+
+ - `applications/graphics` (e.g. `gimp`)
+
+- **If it’s for _networking_:**
+
+ - **If it’s a _mailreader_:**
+
+ - `applications/networking/mailreaders` (e.g. `thunderbird`)
+
+ - **If it’s a _newsreader_:**
+
+ - `applications/networking/newsreaders` (e.g. `pan`)
+
+ - **If it’s a _web browser_:**
+
+ - `applications/networking/browsers` (e.g. `firefox`)
+
+ - **Else:**
+
+ - `applications/networking/misc`
+
+- **Else:**
+
+ - `applications/misc`
+
+**If it’s _data_ (i.e., does not have a straight-forward executable semantics):**
+
+- **If it’s a _font_:**
+
+ - `data/fonts`
+
+- **If it’s an _icon theme_:**
+
+ - `data/icons`
+
+- **If it’s related to _SGML/XML processing_:**
+
+ - **If it’s an _XML DTD_:**
+
+ - `data/sgml+xml/schemas/xml-dtd` (e.g. `docbook`)
+
+ - **If it’s an _XSLT stylesheet_:**
+
+ (Okay, these are executable...)
+
+ - `data/sgml+xml/stylesheets/xslt` (e.g. `docbook-xsl`)
+
+- **If it’s a _theme_ for a _desktop environment_, a _window manager_ or a _display manager_:**
+
+ - `data/themes`
+
+**If it’s a _game_:**
+
+- `games`
+
+**Else:**
+
+- `misc`
+
+### Versioning {#sec-versioning}
+
+Because every version of a package in Nixpkgs creates a potential maintenance burden, old versions of a package should not be kept unless there is a good reason to do so. For instance, Nixpkgs contains several versions of GCC because other packages don’t build with the latest version of GCC. Other examples are having both the latest stable and latest pre-release version of a package, or to keep several major releases of an application that differ significantly in functionality.
+
+If there is only one version of a package, its Nix expression should be named `e2fsprogs/default.nix`. If there are multiple versions, this should be reflected in the filename, e.g. `e2fsprogs/1.41.8.nix` and `e2fsprogs/1.41.9.nix`. The version in the filename should leave out unnecessary detail. For instance, if we keep the latest Firefox 2.0.x and 3.5.x versions in Nixpkgs, they should be named `firefox/2.0.nix` and `firefox/3.5.nix`, respectively (which, at a given point, might contain versions `2.0.0.20` and `3.5.4`). If a version requires many auxiliary files, you can use a subdirectory for each version, e.g. `firefox/2.0/default.nix` and `firefox/3.5/default.nix`.
+
+All versions of a package _must_ be included in `all-packages.nix` to make sure that they evaluate correctly.
+
+## Fetching Sources {#sec-sources}
+
+There are multiple ways to fetch a package source in nixpkgs. The general guideline is that you should package reproducible sources with a high degree of availability. Right now there is only one fetcher which has mirroring support and that is `fetchurl`. Note that you should also prefer protocols which have a corresponding proxy environment variable.
+
+You can find many source fetch helpers in `pkgs/build-support/fetch*`.
+
+In the file `pkgs/top-level/all-packages.nix` you can find fetch helpers, these have names on the form `fetchFrom*`. The intention of these are to provide snapshot fetches but using the same api as some of the version controlled fetchers from `pkgs/build-support/`. As an example going from bad to good:
+
+- Bad: Uses `git://` which won't be proxied.
+
+ ```nix
+ src = fetchgit {
+ url = "git://github.com/NixOS/nix.git";
+ rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae";
+ sha256 = "1cw5fszffl5pkpa6s6wjnkiv6lm5k618s32sp60kvmvpy7a2v9kg";
+ }
+ ```
+
+- Better: This is ok, but an archive fetch will still be faster.
+
+ ```nix
+ src = fetchgit {
+ url = "https://github.com/NixOS/nix.git";
+ rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae";
+ sha256 = "1cw5fszffl5pkpa6s6wjnkiv6lm5k618s32sp60kvmvpy7a2v9kg";
+ }
+ ```
+
+- Best: Fetches a snapshot archive and you get the rev you want.
+
+ ```nix
+ src = fetchFromGitHub {
+ owner = "NixOS";
+ repo = "nix";
+ rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae";
+ sha256 = "1i2yxndxb6yc9l6c99pypbd92lfq5aac4klq7y2v93c9qvx2cgpc";
+ }
+ ```
+
+ Find the value to put as `sha256` by running `nix run -f '' nix-prefetch-github -c nix-prefetch-github --rev 1f795f9f44607cc5bec70d1300150bfefcef2aae NixOS nix` or `nix-prefetch-url --unpack https://github.com/NixOS/nix/archive/1f795f9f44607cc5bec70d1300150bfefcef2aae.tar.gz`.
+
+## Obtaining source hash {#sec-source-hashes}
+
+Preferred source hash type is sha256. There are several ways to get it.
+
+1. Prefetch URL (with `nix-prefetch-XXX URL`, where `XXX` is one of `url`, `git`, `hg`, `cvs`, `bzr`, `svn`). Hash is printed to stdout.
+
+2. Prefetch by package source (with `nix-prefetch-url '' -A PACKAGE.src`, where `PACKAGE` is package attribute name). Hash is printed to stdout.
+
+ This works well when you've upgraded existing package version and want to find out new hash, but is useless if package can't be accessed by attribute or package has multiple sources (`.srcs`, architecture-dependent sources, etc).
+
+3. Upstream provided hash: use it when upstream provides `sha256` or `sha512` (when upstream provides `md5`, don't use it, compute `sha256` instead).
+
+ A little nuance is that `nix-prefetch-*` tools produce hash encoded with `base32`, but upstream usually provides hexadecimal (`base16`) encoding. Fetchers understand both formats. Nixpkgs does not standardize on any one format.
+
+ You can convert between formats with nix-hash, for example:
+
+ ```ShellSession
+ $ nix-hash --type sha256 --to-base32 HASH
+ ```
+
+4. Extracting hash from local source tarball can be done with `sha256sum`. Use `nix-prefetch-url file:///path/to/tarball` if you want base32 hash.
+
+5. Fake hash: set fake hash in package expression, perform build and extract correct hash from error Nix prints.
+
+ For package updates it is enough to change one symbol to make hash fake. For new packages, you can use `lib.fakeSha256`, `lib.fakeSha512` or any other fake hash.
+
+ This is last resort method when reconstructing source URL is non-trivial and `nix-prefetch-url -A` isn't applicable (for example, [one of `kodi` dependencies](https://github.com/NixOS/nixpkgs/blob/d2ab091dd308b99e4912b805a5eb088dd536adb9/pkgs/applications/video/kodi/default.nix#L73")). The easiest way then would be replace hash with a fake one and rebuild. Nix build will fail and error message will contain desired hash.
+
+::: warning
+This method has security problems. Check below for details.
+:::
+
+### Obtaining hashes securely {#sec-source-hashes-security}
+
+Let's say Man-in-the-Middle (MITM) sits close to your network. Then instead of fetching source you can fetch malware, and instead of source hash you get hash of malware. Here are security considerations for this scenario:
+
+- `http://` URLs are not secure to prefetch hash from;
+
+- hashes from upstream (in method 3) should be obtained via secure protocol;
+
+- `https://` URLs are secure in methods 1, 2, 3;
+
+- `https://` URLs are not secure in method 5. When obtaining hashes with fake hash method, TLS checks are disabled. So refetch source hash from several different networks to exclude MITM scenario. Alternatively, use fake hash method to make Nix error, but instead of extracting hash from error, extract `https://` URL and prefetch it with method 1.
+
+## Patches {#sec-patches}
+
+Patches available online should be retrieved using `fetchpatch`.
+
+```nix
+patches = [
+ (fetchpatch {
+ name = "fix-check-for-using-shared-freetype-lib.patch";
+ url = "http://git.ghostscript.com/?p=ghostpdl.git;a=patch;h=8f5d285";
+ sha256 = "1f0k043rng7f0rfl9hhb89qzvvksqmkrikmm38p61yfx51l325xr";
+ })
+];
+```
+
+Otherwise, you can add a `.patch` file to the `nixpkgs` repository. In the interest of keeping our maintenance burden to a minimum, only patches that are unique to `nixpkgs` should be added in this way.
+
+```nix
+patches = [ ./0001-changes.patch ];
+```
+
+If you do need to do create this sort of patch file, one way to do so is with git:
+
+1. Move to the root directory of the source code you're patching.
+
+ ```ShellSession
+ $ cd the/program/source
+ ```
+
+2. If a git repository is not already present, create one and stage all of the source files.
+
+ ```ShellSession
+ $ git init
+ $ git add .
+ ```
+
+3. Edit some files to make whatever changes need to be included in the patch.
+
+4. Use git to create a diff, and pipe the output to a patch file:
+
+ ```ShellSession
+ $ git diff > nixpkgs/pkgs/the/package/0001-changes.patch
+ ```
diff --git a/doc/contributing/coding-conventions.xml b/doc/contributing/coding-conventions.xml
deleted file mode 100644
index 9f00942918c..00000000000
--- a/doc/contributing/coding-conventions.xml
+++ /dev/null
@@ -1,943 +0,0 @@
-
- Coding conventions
-
- Syntax
-
-
-
-
- Use 2 spaces of indentation per indentation level in Nix expressions, 4 spaces in shell scripts.
-
-
-
-
- Do not use tab characters, i.e. configure your editor to use soft tabs. For instance, use (setq-default indent-tabs-mode nil) in Emacs. Everybody has different tab settings so it’s asking for trouble.
-
-
-
-
- Use lowerCamelCase for variable names, not UpperCamelCase. Note, this rule does not apply to package attribute names, which instead follow the rules in .
-
-
-
-
- Function calls with attribute set arguments are written as
-
-foo {
- arg = ...;
-}
-
- not
-
-foo
-{
- arg = ...;
-}
-
- Also fine is
-
-foo { arg = ...; }
-
- if it's a short call.
-
-
-
-
- In attribute sets or lists that span multiple lines, the attribute names or list elements should be aligned:
-
-# A long list.
-list = [
- elem1
- elem2
- elem3
-];
-
-# A long attribute set.
-attrs = {
- attr1 = short_expr;
- attr2 =
- if true then big_expr else big_expr;
-};
-
-# Combined
-listOfAttrs = [
- {
- attr1 = 3;
- attr2 = "fff";
- }
- {
- attr1 = 5;
- attr2 = "ggg";
- }
-];
-
-
-
-
-
- Short lists or attribute sets can be written on one line:
-
-# A short list.
-list = [ elem1 elem2 elem3 ];
-
-# A short set.
-attrs = { x = 1280; y = 1024; };
-
-
-
-
-
- Breaking in the middle of a function argument can give hard-to-read code, like
-
-someFunction { x = 1280;
- y = 1024; } otherArg
- yetAnotherArg
-
- (especially if the argument is very large, spanning multiple lines).
-
-
- Better:
-
-someFunction
- { x = 1280; y = 1024; }
- otherArg
- yetAnotherArg
-
- or
-
-let res = { x = 1280; y = 1024; };
-in someFunction res otherArg yetAnotherArg
-
-
-
-
-
- The bodies of functions, asserts, and withs are not indented to prevent a lot of superfluous indentation levels, i.e.
-
-{ arg1, arg2 }:
-assert system == "i686-linux";
-stdenv.mkDerivation { ...
-
- not
-
-{ arg1, arg2 }:
- assert system == "i686-linux";
- stdenv.mkDerivation { ...
-
-
-
-
-
- Function formal arguments are written as:
-
-{ arg1, arg2, arg3 }:
-
- but if they don't fit on one line they're written as:
-
-{ arg1, arg2, arg3
-, arg4, ...
-, # Some comment...
- argN
-}:
-
-
-
-
-
- Functions should list their expected arguments as precisely as possible. That is, write
-
-{ stdenv, fetchurl, perl }: ...
-
- instead of
-
-args: with args; ...
-
- or
-
-{ stdenv, fetchurl, perl, ... }: ...
-
-
-
- For functions that are truly generic in the number of arguments (such as wrappers around mkDerivation) that have some required arguments, you should write them using an @-pattern:
-
-{ stdenv, doCoverageAnalysis ? false, ... } @ args:
-
-stdenv.mkDerivation (args // {
- ... if doCoverageAnalysis then "bla" else "" ...
-})
-
- instead of
-
-args:
-
-args.stdenv.mkDerivation (args // {
- ... if args ? doCoverageAnalysis && args.doCoverageAnalysis then "bla" else "" ...
-})
-
-
-
-
-
- Arguments should be listed in the order they are used, with the exception of lib, which always goes first.
-
-
-
-
- Prefer using the top-level lib over its alias stdenv.lib. lib is unrelated to stdenv, and so stdenv.lib should only be used as a convenience alias when developing to avoid having to modify the function inputs just to test something out.
-
-
-
-
-
- Package naming
-
-
- The key words must, must not, required, shall, shall not, should, should not, recommended, may, and optional in this section are to be interpreted as described in RFC 2119. Only emphasized words are to be interpreted in this way.
-
-
-
- In Nixpkgs, there are generally three different names associated with a package:
-
-
-
- The name attribute of the derivation (excluding the version part). This is what most users see, in particular when using nix-env.
-
-
-
-
- The variable name used for the instantiated package in all-packages.nix, and when passing it as a dependency to other functions. Typically this is called the package attribute name. This is what Nix expression authors see. It can also be used when installing using nix-env -iA.
-
-
-
-
- The filename for (the directory containing) the Nix expression.
-
-
-
- Most of the time, these are the same. For instance, the package e2fsprogs has a name attribute "e2fsprogs-version", is bound to the variable name e2fsprogs in all-packages.nix, and the Nix expression is in pkgs/os-specific/linux/e2fsprogs/default.nix.
-
-
-
- There are a few naming guidelines:
-
-
-
- The name attribute should be identical to the upstream package name.
-
-
-
-
- The name attribute must not contain uppercase letters — e.g., "mplayer-1.0rc2" instead of "MPlayer-1.0rc2".
-
-
-
-
- The version part of the name attribute must start with a digit (following a dash) — e.g., "hello-0.3.1rc2".
-
-
-
-
- If a package is not a release but a commit from a repository, then the version part of the name must be the date of that (fetched) commit. The date must be in "YYYY-MM-DD" format. Also append "unstable" to the name - e.g., "pkgname-unstable-2014-09-23".
-
-
-
-
- Dashes in the package name should be preserved in new variable names, rather than converted to underscores or camel cased — e.g., http-parser instead of http_parser or httpParser. The hyphenated style is preferred in all three package names.
-
-
-
-
- If there are multiple versions of a package, this should be reflected in the variable names in all-packages.nix, e.g. json-c-0-9 and json-c-0-11. If there is an obvious “default” version, make an attribute like json-c = json-c-0-9;. See also
-
-
-
-
-
-
- File naming and organisation
-
-
- Names of files and directories should be in lowercase, with dashes between words — not in camel case. For instance, it should be all-packages.nix, not allPackages.nix or AllPackages.nix.
-
-
-
- Hierarchy
-
-
- Each package should be stored in its own directory somewhere in the pkgs/ tree, i.e. in pkgs/category/subcategory/.../pkgname. Below are some rules for picking the right category for a package. Many packages fall under several categories; what matters is the primary purpose of a package. For example, the libxml2 package builds both a library and some tools; but it’s a library foremost, so it goes under pkgs/development/libraries.
-
-
-
- When in doubt, consider refactoring the pkgs/ tree, e.g. creating new categories or splitting up an existing category.
-
-
-
-
-
- If it’s used to support software development:
-
-
-
-
-
- If it’s a library used by other packages:
-
-
-
- development/libraries (e.g. libxml2)
-
-
-
-
-
- If it’s a compiler:
-
-
-
- development/compilers (e.g. gcc)
-
-
-
-
-
- If it’s an interpreter:
-
-
-
- development/interpreters (e.g. guile)
-
-
-
-
-
- If it’s a (set of) development tool(s):
-
-
-
-
-
- If it’s a parser generator (including lexers):
-
-
-
- development/tools/parsing (e.g. bison, flex)
-
-
-
-
-
- If it’s a build manager:
-
-
-
- development/tools/build-managers (e.g. gnumake)
-
-
-
-
-
- Else:
-
-
-
- development/tools/misc (e.g. binutils)
-
-
-
-
-
-
-
-
- Else:
-
-
-
- development/misc
-
-
-
-
-
-
-
-
- If it’s a (set of) tool(s):
-
-
-
- (A tool is a relatively small program, especially one intended to be used non-interactively.)
-
-
-
-
- If it’s for networking:
-
-
-
- tools/networking (e.g. wget)
-
-
-
-
-
- If it’s for text processing:
-
-
-
- tools/text (e.g. diffutils)
-
-
-
-
-
- If it’s a system utility, i.e., something related or essential to the operation of a system:
-
-
-
- tools/system (e.g. cron)
-
-
-
-
-
- If it’s an archiver (which may include a compression function):
-
-
-
- tools/archivers (e.g. zip, tar)
-
-
-
-
-
- If it’s a compression program:
-
-
-
- tools/compression (e.g. gzip, bzip2)
-
-
-
-
-
- If it’s a security-related program:
-
-
-
- tools/security (e.g. nmap, gnupg)
-
-
-
-
-
- Else:
-
-
-
- tools/misc
-
-
-
-
-
-
-
-
- If it’s a shell:
-
-
-
- shells (e.g. bash)
-
-
-
-
-
- If it’s a server:
-
-
-
-
-
- If it’s a web server:
-
-
-
- servers/http (e.g. apache-httpd)
-
-
-
-
-
- If it’s an implementation of the X Windowing System:
-
-
-
- servers/x11 (e.g. xorg — this includes the client libraries and programs)
-
-
-
-
-
- Else:
-
-
-
- servers/misc
-
-
-
-
-
-
-
-
- If it’s a desktop environment:
-
-
-
- desktops (e.g. kde, gnome, enlightenment)
-
-
-
-
-
- If it’s a window manager:
-
-
-
- applications/window-managers (e.g. awesome, stumpwm)
-
-
-
-
-
- If it’s an application:
-
-
-
- A (typically large) program with a distinct user interface, primarily used interactively.
-
-
-
-
- If it’s a version management system:
-
-
-
- applications/version-management (e.g. subversion)
-
-
-
-
-
- If it’s a terminal emulator:
-
-
-
- applications/terminal-emulators (e.g. alacritty or rxvt or termite)
-
-
-
-
-
- If it’s for video playback / editing:
-
-
-
- applications/video (e.g. vlc)
-
-
-
-
-
- If it’s for graphics viewing / editing:
-
-
-
- applications/graphics (e.g. gimp)
-
-
-
-
-
- If it’s for networking:
-
-
-
-
-
- If it’s a mailreader:
-
-
-
- applications/networking/mailreaders (e.g. thunderbird)
-
-
-
-
-
- If it’s a newsreader:
-
-
-
- applications/networking/newsreaders (e.g. pan)
-
-
-
-
-
- If it’s a web browser:
-
-
-
- applications/networking/browsers (e.g. firefox)
-
-
-
-
-
- Else:
-
-
-
- applications/networking/misc
-
-
-
-
-
-
-
-
- Else:
-
-
-
- applications/misc
-
-
-
-
-
-
-
-
- If it’s data (i.e., does not have a straight-forward executable semantics):
-
-
-
-
-
- If it’s a font:
-
-
-
- data/fonts
-
-
-
-
-
- If it’s an icon theme:
-
-
-
- data/icons
-
-
-
-
-
- If it’s related to SGML/XML processing:
-
-
-
-
-
- If it’s an XML DTD:
-
-
-
- data/sgml+xml/schemas/xml-dtd (e.g. docbook)
-
-
-
-
-
- If it’s an XSLT stylesheet:
-
-
-
- (Okay, these are executable...)
-
-
- data/sgml+xml/stylesheets/xslt (e.g. docbook-xsl)
-
-
-
-
-
-
-
-
- If it’s a theme for a desktop environment, a window manager or a display manager:
-
-
-
- data/themes
-
-
-
-
-
-
-
-
- If it’s a game:
-
-
-
- games
-
-
-
-
-
- Else:
-
-
-
- misc
-
-
-
-
-
-
-
- Versioning
-
-
- Because every version of a package in Nixpkgs creates a potential maintenance burden, old versions of a package should not be kept unless there is a good reason to do so. For instance, Nixpkgs contains several versions of GCC because other packages don’t build with the latest version of GCC. Other examples are having both the latest stable and latest pre-release version of a package, or to keep several major releases of an application that differ significantly in functionality.
-
-
-
- If there is only one version of a package, its Nix expression should be named e2fsprogs/default.nix. If there are multiple versions, this should be reflected in the filename, e.g. e2fsprogs/1.41.8.nix and e2fsprogs/1.41.9.nix. The version in the filename should leave out unnecessary detail. For instance, if we keep the latest Firefox 2.0.x and 3.5.x versions in Nixpkgs, they should be named firefox/2.0.nix and firefox/3.5.nix, respectively (which, at a given point, might contain versions 2.0.0.20 and 3.5.4). If a version requires many auxiliary files, you can use a subdirectory for each version, e.g. firefox/2.0/default.nix and firefox/3.5/default.nix.
-
-
-
- All versions of a package must be included in all-packages.nix to make sure that they evaluate correctly.
-
-
-
-
- Fetching Sources
-
-
- There are multiple ways to fetch a package source in nixpkgs. The general guideline is that you should package reproducible sources with a high degree of availability. Right now there is only one fetcher which has mirroring support and that is fetchurl. Note that you should also prefer protocols which have a corresponding proxy environment variable.
-
-
-
- You can find many source fetch helpers in pkgs/build-support/fetch*.
-
-
-
- In the file pkgs/top-level/all-packages.nix you can find fetch helpers, these have names on the form fetchFrom*. The intention of these are to provide snapshot fetches but using the same api as some of the version controlled fetchers from pkgs/build-support/. As an example going from bad to good:
-
-
-
- Bad: Uses git:// which won't be proxied.
-
-src = fetchgit {
- url = "git://github.com/NixOS/nix.git";
- rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae";
- sha256 = "1cw5fszffl5pkpa6s6wjnkiv6lm5k618s32sp60kvmvpy7a2v9kg";
-}
-
-
-
-
-
- Better: This is ok, but an archive fetch will still be faster.
-
-src = fetchgit {
- url = "https://github.com/NixOS/nix.git";
- rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae";
- sha256 = "1cw5fszffl5pkpa6s6wjnkiv6lm5k618s32sp60kvmvpy7a2v9kg";
-}
-
-
-
-
-
- Best: Fetches a snapshot archive and you get the rev you want.
-
-src = fetchFromGitHub {
- owner = "NixOS";
- repo = "nix";
- rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae";
- sha256 = "1i2yxndxb6yc9l6c99pypbd92lfq5aac4klq7y2v93c9qvx2cgpc";
-}
-
- Find the value to put as sha256 by running nix run -f '<nixpkgs>' nix-prefetch-github -c nix-prefetch-github --rev 1f795f9f44607cc5bec70d1300150bfefcef2aae NixOS nix or nix-prefetch-url --unpack https://github.com/NixOS/nix/archive/1f795f9f44607cc5bec70d1300150bfefcef2aae.tar.gz.
-
-
-
-
-
-
- Obtaining source hash
-
-
- Preferred source hash type is sha256. There are several ways to get it.
-
-
-
-
-
- Prefetch URL (with nix-prefetch-XXX URL, where XXX is one of url, git, hg, cvs, bzr, svn). Hash is printed to stdout.
-
-
-
-
- Prefetch by package source (with nix-prefetch-url '<nixpkgs>' -A PACKAGE.src, where PACKAGE is package attribute name). Hash is printed to stdout.
-
-
- This works well when you've upgraded existing package version and want to find out new hash, but is useless if package can't be accessed by attribute or package has multiple sources (.srcs, architecture-dependent sources, etc).
-
-
-
-
- Upstream provided hash: use it when upstream provides sha256 or sha512 (when upstream provides md5, don't use it, compute sha256 instead).
-
-
- A little nuance is that nix-prefetch-* tools produce hash encoded with base32, but upstream usually provides hexadecimal (base16) encoding. Fetchers understand both formats. Nixpkgs does not standardize on any one format.
-
-
- You can convert between formats with nix-hash, for example:
-
-$ nix-hash --type sha256 --to-base32 HASH
-
-
-
-
-
- Extracting hash from local source tarball can be done with sha256sum. Use nix-prefetch-url file:///path/to/tarball if you want base32 hash.
-
-
-
-
- Fake hash: set fake hash in package expression, perform build and extract correct hash from error Nix prints.
-
-
- For package updates it is enough to change one symbol to make hash fake. For new packages, you can use lib.fakeSha256, lib.fakeSha512 or any other fake hash.
-
-
- This is last resort method when reconstructing source URL is non-trivial and nix-prefetch-url -A isn't applicable (for example, one of kodi dependencies). The easiest way then would be replace hash with a fake one and rebuild. Nix build will fail and error message will contain desired hash.
-
-
-
- This method has security problems. Check below for details.
-
-
-
-
-
-
- Obtaining hashes securely
-
-
- Let's say Man-in-the-Middle (MITM) sits close to your network. Then instead of fetching source you can fetch malware, and instead of source hash you get hash of malware. Here are security considerations for this scenario:
-
-
-
-
-
- http:// URLs are not secure to prefetch hash from;
-
-
-
-
- hashes from upstream (in method 3) should be obtained via secure protocol;
-
-
-
-
- https:// URLs are secure in methods 1, 2, 3;
-
-
-
-
- https:// URLs are not secure in method 5. When obtaining hashes with fake hash method, TLS checks are disabled. So refetch source hash from several different networks to exclude MITM scenario. Alternatively, use fake hash method to make Nix error, but instead of extracting hash from error, extract https:// URL and prefetch it with method 1.
-
-
-
-
-
-
- Patches
-
-
- Patches available online should be retrieved using fetchpatch.
-
-
-
-
-patches = [
- (fetchpatch {
- name = "fix-check-for-using-shared-freetype-lib.patch";
- url = "http://git.ghostscript.com/?p=ghostpdl.git;a=patch;h=8f5d285";
- sha256 = "1f0k043rng7f0rfl9hhb89qzvvksqmkrikmm38p61yfx51l325xr";
- })
-];
-
-
-
-
- Otherwise, you can add a .patch file to the nixpkgs repository. In the interest of keeping our maintenance burden to a minimum, only patches that are unique to nixpkgs should be added in this way.
-
-
-
-
-patches = [ ./0001-changes.patch ];
-
-
-
-
- If you do need to do create this sort of patch file, one way to do so is with git:
-
-
-
- Move to the root directory of the source code you're patching.
-
-$ cd the/program/source
-
-
-
-
- If a git repository is not already present, create one and stage all of the source files.
-
-$ git init
-$ git add .
-
-
-
-
- Edit some files to make whatever changes need to be included in the patch.
-
-
-
-
- Use git to create a diff, and pipe the output to a patch file:
-
-$ git diff > nixpkgs/pkgs/the/package/0001-changes.patch
-
-
-
-
-
-
diff --git a/doc/contributing/contributing-to-documentation.chapter.md b/doc/contributing/contributing-to-documentation.chapter.md
new file mode 100644
index 00000000000..642beba74d6
--- /dev/null
+++ b/doc/contributing/contributing-to-documentation.chapter.md
@@ -0,0 +1,24 @@
+# Contributing to this documentation {#chap-contributing}
+
+The DocBook sources of the Nixpkgs manual are in the [doc](https://github.com/NixOS/nixpkgs/tree/master/doc) subdirectory of the Nixpkgs repository.
+
+You can quickly check your edits with `make`:
+
+```ShellSession
+$ cd /path/to/nixpkgs/doc
+$ nix-shell
+[nix-shell]$ make $makeFlags
+```
+
+If you experience problems, run `make debug` to help understand the docbook errors.
+
+After making modifications to the manual, it's important to build it before committing. You can do that as follows:
+
+```ShellSession
+$ cd /path/to/nixpkgs/doc
+$ nix-shell
+[nix-shell]$ make clean
+[nix-shell]$ nix-build .
+```
+
+If the build succeeds, the manual will be in `./result/share/doc/nixpkgs/manual.html`.
diff --git a/doc/contributing/contributing-to-documentation.xml b/doc/contributing/contributing-to-documentation.xml
deleted file mode 100644
index 132fa3816e3..00000000000
--- a/doc/contributing/contributing-to-documentation.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
- Contributing to this documentation
-
- The DocBook sources of the Nixpkgs manual are in the doc subdirectory of the Nixpkgs repository.
-
-
- You can quickly check your edits with make:
-
-
-$ cd /path/to/nixpkgs/doc
-$ nix-shell
-[nix-shell]$ make $makeFlags
-
-
- If you experience problems, run make debug to help understand the docbook errors.
-
-
- After making modifications to the manual, it's important to build it before committing. You can do that as follows:
-
-$ cd /path/to/nixpkgs/doc
-$ nix-shell
-[nix-shell]$ make clean
-[nix-shell]$ nix-build .
-
- If the build succeeds, the manual will be in ./result/share/doc/nixpkgs/manual.html.
-
-
diff --git a/doc/contributing/quick-start.chapter.md b/doc/contributing/quick-start.chapter.md
new file mode 100644
index 00000000000..85c3897221e
--- /dev/null
+++ b/doc/contributing/quick-start.chapter.md
@@ -0,0 +1,77 @@
+# Quick Start to Adding a Package {#chap-quick-start}
+
+To add a package to Nixpkgs:
+
+1. Checkout the Nixpkgs source tree:
+
+ ```ShellSession
+ $ git clone https://github.com/NixOS/nixpkgs
+ $ cd nixpkgs
+ ```
+
+2. Find a good place in the Nixpkgs tree to add the Nix expression for your package. For instance, a library package typically goes into `pkgs/development/libraries/pkgname`, while a web browser goes into `pkgs/applications/networking/browsers/pkgname`. See for some hints on the tree organisation. Create a directory for your package, e.g.
+
+ ```ShellSession
+ $ mkdir pkgs/development/libraries/libfoo
+ ```
+
+3. In the package directory, create a Nix expression — a piece of code that describes how to build the package. In this case, it should be a _function_ that is called with the package dependencies as arguments, and returns a build of the package in the Nix store. The expression should usually be called `default.nix`.
+
+ ```ShellSession
+ $ emacs pkgs/development/libraries/libfoo/default.nix
+ $ git add pkgs/development/libraries/libfoo/default.nix
+ ```
+
+ You can have a look at the existing Nix expressions under `pkgs/` to see how it’s done. Here are some good ones:
+
+ - GNU Hello: [`pkgs/applications/misc/hello/default.nix`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/hello/default.nix). Trivial package, which specifies some `meta` attributes which is good practice.
+
+ - GNU cpio: [`pkgs/tools/archivers/cpio/default.nix`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/archivers/cpio/default.nix). Also a simple package. The generic builder in `stdenv` does everything for you. It has no dependencies beyond `stdenv`.
+
+ - GNU Multiple Precision arithmetic library (GMP): [`pkgs/development/libraries/gmp/5.1.x.nix`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/libraries/gmp/5.1.x.nix). Also done by the generic builder, but has a dependency on `m4`.
+
+ - Pan, a GTK-based newsreader: [`pkgs/applications/networking/newsreaders/pan/default.nix`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/networking/newsreaders/pan/default.nix). Has an optional dependency on `gtkspell`, which is only built if `spellCheck` is `true`.
+
+ - Apache HTTPD: [`pkgs/servers/http/apache-httpd/2.4.nix`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/servers/http/apache-httpd/2.4.nix). A bunch of optional features, variable substitutions in the configure flags, a post-install hook, and miscellaneous hackery.
+
+ - Thunderbird: [`pkgs/applications/networking/mailreaders/thunderbird/default.nix`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/networking/mailreaders/thunderbird/default.nix). Lots of dependencies.
+
+ - JDiskReport, a Java utility: [`pkgs/tools/misc/jdiskreport/default.nix`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/jdiskreport/default.nix). Nixpkgs doesn’t have a decent `stdenv` for Java yet so this is pretty ad-hoc.
+
+ - XML::Simple, a Perl module: [`pkgs/top-level/perl-packages.nix`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/perl-packages.nix) (search for the `XMLSimple` attribute). Most Perl modules are so simple to build that they are defined directly in `perl-packages.nix`; no need to make a separate file for them.
+
+ - Adobe Reader: [`pkgs/applications/misc/adobe-reader/default.nix`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/adobe-reader/default.nix). Shows how binary-only packages can be supported. In particular the [builder](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/adobe-reader/builder.sh) uses `patchelf` to set the RUNPATH and ELF interpreter of the executables so that the right libraries are found at runtime.
+
+ Some notes:
+
+ - All [`meta`](#chap-meta) attributes are optional, but it’s still a good idea to provide at least the `description`, `homepage` and [`license`](#sec-meta-license).
+
+ - You can use `nix-prefetch-url url` to get the SHA-256 hash of source distributions. There are similar commands as `nix-prefetch-git` and `nix-prefetch-hg` available in `nix-prefetch-scripts` package.
+
+ - A list of schemes for `mirror://` URLs can be found in [`pkgs/build-support/fetchurl/mirrors.nix`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/build-support/fetchurl/mirrors.nix).
+
+ The exact syntax and semantics of the Nix expression language, including the built-in function, are described in the Nix manual in the [chapter on writing Nix expressions](https://hydra.nixos.org/job/nix/trunk/tarball/latest/download-by-type/doc/manual/#chap-writing-nix-expressions).
+
+4. Add a call to the function defined in the previous step to [`pkgs/top-level/all-packages.nix`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/all-packages.nix) with some descriptive name for the variable, e.g. `libfoo`.
+
+ ```ShellSession
+ $ emacs pkgs/top-level/all-packages.nix
+ ```
+
+ The attributes in that file are sorted by category (like “Development / Libraries”) that more-or-less correspond to the directory structure of Nixpkgs, and then by attribute name.
+
+5. To test whether the package builds, run the following command from the root of the nixpkgs source tree:
+
+ ```ShellSession
+ $ nix-build -A libfoo
+ ```
+
+ where `libfoo` should be the variable name defined in the previous step. You may want to add the flag `-K` to keep the temporary build directory in case something fails. If the build succeeds, a symlink `./result` to the package in the Nix store is created.
+
+6. If you want to install the package into your profile (optional), do
+
+ ```ShellSession
+ $ nix-env -f . -iA libfoo
+ ```
+
+7. Optionally commit the new package and open a pull request [to nixpkgs](https://github.com/NixOS/nixpkgs/pulls), or use [the Patches category](https://discourse.nixos.org/t/about-the-patches-category/477) on Discourse for sending a patch without a GitHub account.
diff --git a/doc/contributing/quick-start.xml b/doc/contributing/quick-start.xml
deleted file mode 100644
index 09d60834ec2..00000000000
--- a/doc/contributing/quick-start.xml
+++ /dev/null
@@ -1,152 +0,0 @@
-
- Quick Start to Adding a Package
-
- To add a package to Nixpkgs:
-
-
-
- Checkout the Nixpkgs source tree:
-
-$ git clone https://github.com/NixOS/nixpkgs
-$ cd nixpkgs
-
-
-
-
- Find a good place in the Nixpkgs tree to add the Nix expression for your package. For instance, a library package typically goes into pkgs/development/libraries/pkgname, while a web browser goes into pkgs/applications/networking/browsers/pkgname. See for some hints on the tree organisation. Create a directory for your package, e.g.
-
-$ mkdir pkgs/development/libraries/libfoo
-
-
-
-
- In the package directory, create a Nix expression — a piece of code that describes how to build the package. In this case, it should be a function that is called with the package dependencies as arguments, and returns a build of the package in the Nix store. The expression should usually be called default.nix.
-
-$ emacs pkgs/development/libraries/libfoo/default.nix
-$ git add pkgs/development/libraries/libfoo/default.nix
-
-
- You can have a look at the existing Nix expressions under pkgs/ to see how it’s done. Here are some good ones:
-
-
-
- GNU Hello: pkgs/applications/misc/hello/default.nix. Trivial package, which specifies some meta attributes which is good practice.
-
-
-
-
- GNU cpio: pkgs/tools/archivers/cpio/default.nix. Also a simple package. The generic builder in stdenv does everything for you. It has no dependencies beyond stdenv.
-
-
-
-
- GNU Multiple Precision arithmetic library (GMP): pkgs/development/libraries/gmp/5.1.x.nix. Also done by the generic builder, but has a dependency on m4.
-
-
-
-
- Pan, a GTK-based newsreader: pkgs/applications/networking/newsreaders/pan/default.nix. Has an optional dependency on gtkspell, which is only built if spellCheck is true.
-
-
-
-
- Apache HTTPD: pkgs/servers/http/apache-httpd/2.4.nix. A bunch of optional features, variable substitutions in the configure flags, a post-install hook, and miscellaneous hackery.
-
-
-
-
- Thunderbird: pkgs/applications/networking/mailreaders/thunderbird/default.nix. Lots of dependencies.
-
-
-
-
- JDiskReport, a Java utility: pkgs/tools/misc/jdiskreport/default.nix. Nixpkgs doesn’t have a decent stdenv for Java yet so this is pretty ad-hoc.
-
-
-
-
- XML::Simple, a Perl module: pkgs/top-level/perl-packages.nix (search for the XMLSimple attribute). Most Perl modules are so simple to build that they are defined directly in perl-packages.nix; no need to make a separate file for them.
-
-
-
-
- Adobe Reader: pkgs/applications/misc/adobe-reader/default.nix. Shows how binary-only packages can be supported. In particular the builder uses patchelf to set the RUNPATH and ELF interpreter of the executables so that the right libraries are found at runtime.
-
-
-
-
-
- Some notes:
-
-
-
- All meta attributes are optional, but it’s still a good idea to provide at least the description, homepage and license.
-
-
-
-
- You can use nix-prefetch-url url to get the SHA-256 hash of source distributions. There are similar commands as nix-prefetch-git and nix-prefetch-hg available in nix-prefetch-scripts package.
-
-
-
-
- A list of schemes for mirror:// URLs can be found in pkgs/build-support/fetchurl/mirrors.nix.
-
-
-
-
-
- The exact syntax and semantics of the Nix expression language, including the built-in function, are described in the Nix manual in the chapter on writing Nix expressions.
-
-
-
-
- Add a call to the function defined in the previous step to pkgs/top-level/all-packages.nix with some descriptive name for the variable, e.g. libfoo.
-
-$ emacs pkgs/top-level/all-packages.nix
-
-
- The attributes in that file are sorted by category (like “Development / Libraries”) that more-or-less correspond to the directory structure of Nixpkgs, and then by attribute name.
-
-
-
-
- To test whether the package builds, run the following command from the root of the nixpkgs source tree:
-
-$ nix-build -A libfoo
- where libfoo should be the variable name defined in the previous step. You may want to add the flag to keep the temporary build directory in case something fails. If the build succeeds, a symlink ./result to the package in the Nix store is created.
-
-
-
-
- If you want to install the package into your profile (optional), do
-
-$ nix-env -f . -iA libfoo
-
-
-
-
- Optionally commit the new package and open a pull request to nixpkgs, or use the Patches category on Discourse for sending a patch without a GitHub account.
-
-
-
-
-
diff --git a/doc/contributing/reviewing-contributions.chapter.md b/doc/contributing/reviewing-contributions.chapter.md
new file mode 100644
index 00000000000..0dfe22199c6
--- /dev/null
+++ b/doc/contributing/reviewing-contributions.chapter.md
@@ -0,0 +1,204 @@
+# Reviewing contributions {#chap-reviewing-contributions}
+
+::: warning
+The following section is a draft, and the policy for reviewing is still being discussed in issues such as [#11166](https://github.com/NixOS/nixpkgs/issues/11166) and [#20836](https://github.com/NixOS/nixpkgs/issues/20836).
+:::
+
+The Nixpkgs project receives a fairly high number of contributions via GitHub pull requests. Reviewing and approving these is an important task and a way to contribute to the project.
+
+The high change rate of Nixpkgs makes any pull request that remains open for too long subject to conflicts that will require extra work from the submitter or the merger. Reviewing pull requests in a timely manner and being responsive to the comments is the key to avoid this issue. GitHub provides sort filters that can be used to see the [most recently](https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc) and the [least recently](https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-asc) updated pull requests. We highly encourage looking at [this list of ready to merge, unreviewed pull requests](https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+is%3Aopen+review%3Anone+status%3Asuccess+-label%3A%222.status%3A+work-in-progress%22+no%3Aproject+no%3Aassignee+no%3Amilestone).
+
+When reviewing a pull request, please always be nice and polite. Controversial changes can lead to controversial opinions, but it is important to respect every community member and their work.
+
+GitHub provides reactions as a simple and quick way to provide feedback to pull requests or any comments. The thumb-down reaction should be used with care and if possible accompanied with some explanation so the submitter has directions to improve their contribution.
+
+pull request reviews should include a list of what has been reviewed in a comment, so other reviewers and mergers can know the state of the review.
+
+All the review template samples provided in this section are generic and meant as examples. Their usage is optional and the reviewer is free to adapt them to their liking.
+
+## Package updates {#reviewing-contributions-package-updates}
+
+A package update is the most trivial and common type of pull request. These pull requests mainly consist of updating the version part of the package name and the source hash.
+
+It can happen that non-trivial updates include patches or more complex changes.
+
+Reviewing process:
+
+- Ensure that the package versioning fits the guidelines.
+- Ensure that the commit text fits the guidelines.
+- Ensure that the package maintainers are notified.
+ - [CODEOWNERS](https://help.github.com/articles/about-codeowners) will make GitHub notify users based on the submitted changes, but it can happen that it misses some of the package maintainers.
+- Ensure that the meta field information is correct.
+ - License can change with version updates, so it should be checked to match the upstream license.
+ - If the package has no maintainer, a maintainer must be set. This can be the update submitter or a community member that accepts to take maintainership of the package.
+- Ensure that the code contains no typos.
+- Building the package locally.
+ - pull requests are often targeted to the master or staging branch, and building the pull request locally when it is submitted can trigger many source builds.
+ - It is possible to rebase the changes on nixos-unstable or nixpkgs-unstable for easier review by running the following commands from a nixpkgs clone.
+ ```ShellSession
+ $ git fetch origin nixos-unstable
+ $ git fetch origin pull/PRNUMBER/head
+ $ git rebase --onto nixos-unstable BASEBRANCH FETCH_HEAD
+ ```
+ - The first command fetches the nixos-unstable branch.
+ - The second command fetches the pull request changes, `PRNUMBER` is the number at the end of the pull request title and `BASEBRANCH` the base branch of the pull request.
+ - The third command rebases the pull request changes to the nixos-unstable branch.
+ - The [nixpkgs-review](https://github.com/Mic92/nixpkgs-review) tool can be used to review a pull request content in a single command. `PRNUMBER` should be replaced by the number at the end of the pull request title. You can also provide the full github pull request url.
+ ```ShellSession
+ $ nix-shell -p nixpkgs-review --run "nixpkgs-review pr PRNUMBER"
+ ```
+- Running every binary.
+
+Sample template for a package update review is provided below.
+
+```markdown
+##### Reviewed points
+
+- [ ] package name fits guidelines
+- [ ] package version fits guidelines
+- [ ] package build on ARCHITECTURE
+- [ ] executables tested on ARCHITECTURE
+- [ ] all depending packages build
+
+##### Possible improvements
+
+##### Comments
+```
+
+## New packages {#reviewing-contributions-new-packages}
+
+New packages are a common type of pull requests. These pull requests consists in adding a new nix-expression for a package.
+
+Review process:
+
+- Ensure that the package versioning fits the guidelines.
+- Ensure that the commit name fits the guidelines.
+- Ensure that the meta fields contain correct information.
+ - License must match the upstream license.
+ - Platforms should be set (or the package will not get binary substitutes).
+ - Maintainers must be set. This can be the package submitter or a community member that accepts taking up maintainership of the package.
+- Report detected typos.
+- Ensure the package source:
+ - Uses mirror URLs when available.
+ - Uses the most appropriate functions (e.g. packages from GitHub should use `fetchFromGitHub`).
+- Building the package locally.
+- Running every binary.
+
+Sample template for a new package review is provided below.
+
+```markdown
+##### Reviewed points
+
+- [ ] package path fits guidelines
+- [ ] package name fits guidelines
+- [ ] package version fits guidelines
+- [ ] package build on ARCHITECTURE
+- [ ] executables tested on ARCHITECTURE
+- [ ] `meta.description` is set and fits guidelines
+- [ ] `meta.license` fits upstream license
+- [ ] `meta.platforms` is set
+- [ ] `meta.maintainers` is set
+- [ ] build time only dependencies are declared in `nativeBuildInputs`
+- [ ] source is fetched using the appropriate function
+- [ ] phases are respected
+- [ ] patches that are remotely available are fetched with `fetchpatch`
+
+##### Possible improvements
+
+##### Comments
+```
+
+## Module updates {#reviewing-contributions-module-updates}
+
+Module updates are submissions changing modules in some ways. These often contains changes to the options or introduce new options.
+
+Reviewing process:
+
+- Ensure that the module maintainers are notified.
+ - [CODEOWNERS](https://help.github.com/articles/about-codeowners/) will make GitHub notify users based on the submitted changes, but it can happen that it misses some of the package maintainers.
+- Ensure that the module tests, if any, are succeeding.
+- Ensure that the introduced options are correct.
+ - Type should be appropriate (string related types differs in their merging capabilities, `optionSet` and `string` types are deprecated).
+ - Description, default and example should be provided.
+- Ensure that option changes are backward compatible.
+ - `mkRenamedOptionModule` and `mkAliasOptionModule` functions provide way to make option changes backward compatible.
+- Ensure that removed options are declared with `mkRemovedOptionModule`
+- Ensure that changes that are not backward compatible are mentioned in release notes.
+- Ensure that documentations affected by the change is updated.
+
+Sample template for a module update review is provided below.
+
+```markdown
+##### Reviewed points
+
+- [ ] changes are backward compatible
+- [ ] removed options are declared with `mkRemovedOptionModule`
+- [ ] changes that are not backward compatible are documented in release notes
+- [ ] module tests succeed on ARCHITECTURE
+- [ ] options types are appropriate
+- [ ] options description is set
+- [ ] options example is provided
+- [ ] documentation affected by the changes is updated
+
+##### Possible improvements
+
+##### Comments
+```
+
+## New modules {#reviewing-contributions-new-modules}
+
+New modules submissions introduce a new module to NixOS.
+
+Reviewing process:
+
+- Ensure that the module tests, if any, are succeeding.
+- Ensure that the introduced options are correct.
+ - Type should be appropriate (string related types differs in their merging capabilities, `optionSet` and `string` types are deprecated).
+ - Description, default and example should be provided.
+- Ensure that module `meta` field is present
+ - Maintainers should be declared in `meta.maintainers`.
+ - Module documentation should be declared with `meta.doc`.
+- Ensure that the module respect other modules functionality.
+ - For example, enabling a module should not open firewall ports by default.
+
+Sample template for a new module review is provided below.
+
+```markdown
+##### Reviewed points
+
+- [ ] module path fits the guidelines
+- [ ] module tests succeed on ARCHITECTURE
+- [ ] options have appropriate types
+- [ ] options have default
+- [ ] options have example
+- [ ] options have descriptions
+- [ ] No unneeded package is added to environment.systemPackages
+- [ ] meta.maintainers is set
+- [ ] module documentation is declared in meta.doc
+
+##### Possible improvements
+
+##### Comments
+```
+
+## Other submissions {#reviewing-contributions-other-submissions}
+
+Other type of submissions requires different reviewing steps.
+
+If you consider having enough knowledge and experience in a topic and would like to be a long-term reviewer for related submissions, please contact the current reviewers for that topic. They will give you information about the reviewing process. The main reviewers for a topic can be hard to find as there is no list, but checking past pull requests to see who reviewed or git-blaming the code to see who committed to that topic can give some hints.
+
+Container system, boot system and library changes are some examples of the pull requests fitting this category.
+
+## Merging pull requests {#reviewing-contributions--merging-pull-requests}
+
+It is possible for community members that have enough knowledge and experience on a special topic to contribute by merging pull requests.
+
+
+
+Please see the discussion in [GitHub nixpkgs issue #50105](https://github.com/NixOS/nixpkgs/issues/50105) for information on how to proceed to be granted this level of access.
+
+In a case a contributor definitively leaves the Nix community, they should create an issue or post on [Discourse](https://discourse.nixos.org) with references of packages and modules they maintain so the maintainership can be taken over by other contributors.
diff --git a/doc/contributing/reviewing-contributions.xml b/doc/contributing/reviewing-contributions.xml
deleted file mode 100644
index 991db77bc58..00000000000
--- a/doc/contributing/reviewing-contributions.xml
+++ /dev/null
@@ -1,488 +0,0 @@
-
- Reviewing contributions
-
-
- The following section is a draft, and the policy for reviewing is still being discussed in issues such as #11166 and #20836 .
-
-
-
- The Nixpkgs project receives a fairly high number of contributions via GitHub pull requests. Reviewing and approving these is an important task and a way to contribute to the project.
-
-
- The high change rate of Nixpkgs makes any pull request that remains open for too long subject to conflicts that will require extra work from the submitter or the merger. Reviewing pull requests in a timely manner and being responsive to the comments is the key to avoid this issue. GitHub provides sort filters that can be used to see the most recently and the least recently updated pull requests. We highly encourage looking at this list of ready to merge, unreviewed pull requests.
-
-
- When reviewing a pull request, please always be nice and polite. Controversial changes can lead to controversial opinions, but it is important to respect every community member and their work.
-
-
- GitHub provides reactions as a simple and quick way to provide feedback to pull requests or any comments. The thumb-down reaction should be used with care and if possible accompanied with some explanation so the submitter has directions to improve their contribution.
-
-
- pull request reviews should include a list of what has been reviewed in a comment, so other reviewers and mergers can know the state of the review.
-
-
- All the review template samples provided in this section are generic and meant as examples. Their usage is optional and the reviewer is free to adapt them to their liking.
-
-
- Package updates
-
-
- A package update is the most trivial and common type of pull request. These pull requests mainly consist of updating the version part of the package name and the source hash.
-
-
-
- It can happen that non-trivial updates include patches or more complex changes.
-
-
-
- Reviewing process:
-
-
-
-
-
- Ensure that the package versioning fits the guidelines.
-
-
-
-
- Ensure that the commit text fits the guidelines.
-
-
-
-
- Ensure that the package maintainers are notified.
-
-
-
-
- CODEOWNERS will make GitHub notify users based on the submitted changes, but it can happen that it misses some of the package maintainers.
-
-
-
-
-
-
- Ensure that the meta field information is correct.
-
-
-
-
- License can change with version updates, so it should be checked to match the upstream license.
-
-
-
-
- If the package has no maintainer, a maintainer must be set. This can be the update submitter or a community member that accepts to take maintainership of the package.
-
-
-
-
-
-
- Ensure that the code contains no typos.
-
-
-
-
- Building the package locally.
-
-
-
-
- pull requests are often targeted to the master or staging branch, and building the pull request locally when it is submitted can trigger many source builds.
-
-
- It is possible to rebase the changes on nixos-unstable or nixpkgs-unstable for easier review by running the following commands from a nixpkgs clone.
-
-$ git fetch origin nixos-unstable
-$ git fetch origin pull/PRNUMBER/head
-$ git rebase --onto nixos-unstable BASEBRANCH FETCH_HEAD
-
-
-
-
- Fetching the nixos-unstable branch.
-
-
-
-
- Fetching the pull request changes, PRNUMBER is the number at the end of the pull request title and BASEBRANCH the base branch of the pull request.
-
-
-
-
- Rebasing the pull request changes to the nixos-unstable branch.
-
-
-
-
-
-
-
- The nixpkgs-review tool can be used to review a pull request content in a single command. PRNUMBER should be replaced by the number at the end of the pull request title. You can also provide the full github pull request url.
-
-
-$ nix-shell -p nixpkgs-review --run "nixpkgs-review pr PRNUMBER"
-
-
-
-
-
-
- Running every binary.
-
-
-
-
-
- Sample template for a package update review
-
-##### Reviewed points
-
-- [ ] package name fits guidelines
-- [ ] package version fits guidelines
-- [ ] package build on ARCHITECTURE
-- [ ] executables tested on ARCHITECTURE
-- [ ] all depending packages build
-
-##### Possible improvements
-
-##### Comments
-
-
-
-
-
- New packages
-
-
- New packages are a common type of pull requests. These pull requests consists in adding a new nix-expression for a package.
-
-
-
- Reviewing process:
-
-
-
-
-
- Ensure that the package versioning is fitting the guidelines.
-
-
-
-
- Ensure that the commit name is fitting the guidelines.
-
-
-
-
- Ensure that the meta field contains correct information.
-
-
-
-
- License must be checked to be fitting upstream license.
-
-
-
-
- Platforms should be set or the package will not get binary substitutes.
-
-
-
-
- A maintainer must be set. This can be the package submitter or a community member that accepts to take maintainership of the package.
-
-
-
-
-
-
- Ensure that the code contains no typos.
-
-
-
-
- Ensure the package source.
-
-
-
-
- Mirrors urls should be used when available.
-
-
-
-
- The most appropriate function should be used (e.g. packages from GitHub should use fetchFromGitHub).
-
-
-
-
-
-
- Building the package locally.
-
-
-
-
- Running every binary.
-
-
-
-
-
- Sample template for a new package review
-
-##### Reviewed points
-
-- [ ] package path fits guidelines
-- [ ] package name fits guidelines
-- [ ] package version fits guidelines
-- [ ] package build on ARCHITECTURE
-- [ ] executables tested on ARCHITECTURE
-- [ ] `meta.description` is set and fits guidelines
-- [ ] `meta.license` fits upstream license
-- [ ] `meta.platforms` is set
-- [ ] `meta.maintainers` is set
-- [ ] build time only dependencies are declared in `nativeBuildInputs`
-- [ ] source is fetched using the appropriate function
-- [ ] phases are respected
-- [ ] patches that are remotely available are fetched with `fetchpatch`
-
-##### Possible improvements
-
-##### Comments
-
-
-
-
-
- Module updates
-
-
- Module updates are submissions changing modules in some ways. These often contains changes to the options or introduce new options.
-
-
-
- Reviewing process
-
-
-
-
-
- Ensure that the module maintainers are notified.
-
-
-
-
- CODEOWNERS will make GitHub notify users based on the submitted changes, but it can happen that it misses some of the package maintainers.
-
-
-
-
-
-
- Ensure that the module tests, if any, are succeeding.
-
-
-
-
- Ensure that the introduced options are correct.
-
-
-
-
- Type should be appropriate (string related types differs in their merging capabilities, optionSet and string types are deprecated).
-
-
-
-
- Description, default and example should be provided.
-
-
-
-
-
-
- Ensure that option changes are backward compatible.
-
-
-
-
- mkRenamedOptionModule and mkAliasOptionModule functions provide way to make option changes backward compatible.
-
-
-
-
-
-
- Ensure that removed options are declared with mkRemovedOptionModule
-
-
-
-
- Ensure that changes that are not backward compatible are mentioned in release notes.
-
-
-
-
- Ensure that documentations affected by the change is updated.
-
-
-
-
-
- Sample template for a module update review
-
-##### Reviewed points
-
-- [ ] changes are backward compatible
-- [ ] removed options are declared with `mkRemovedOptionModule`
-- [ ] changes that are not backward compatible are documented in release notes
-- [ ] module tests succeed on ARCHITECTURE
-- [ ] options types are appropriate
-- [ ] options description is set
-- [ ] options example is provided
-- [ ] documentation affected by the changes is updated
-
-##### Possible improvements
-
-##### Comments
-
-
-
-
-
- New modules
-
-
- New modules submissions introduce a new module to NixOS.
-
-
-
-
-
- Ensure that the module tests, if any, are succeeding.
-
-
-
-
- Ensure that the introduced options are correct.
-
-
-
-
- Type should be appropriate (string related types differs in their merging capabilities, optionSet and string types are deprecated).
-
-
-
-
- Description, default and example should be provided.
-
-
-
-
-
-
- Ensure that module meta field is present
-
-
-
-
- Maintainers should be declared in meta.maintainers.
-
-
-
-
- Module documentation should be declared with meta.doc.
-
-
-
-
-
-
- Ensure that the module respect other modules functionality.
-
-
-
-
- For example, enabling a module should not open firewall ports by default.
-
-
-
-
-
-
-
- Sample template for a new module review
-
-##### Reviewed points
-
-- [ ] module path fits the guidelines
-- [ ] module tests succeed on ARCHITECTURE
-- [ ] options have appropriate types
-- [ ] options have default
-- [ ] options have example
-- [ ] options have descriptions
-- [ ] No unneeded package is added to environment.systemPackages
-- [ ] meta.maintainers is set
-- [ ] module documentation is declared in meta.doc
-
-##### Possible improvements
-
-##### Comments
-
-
-
-
-
- Other submissions
-
-
- Other type of submissions requires different reviewing steps.
-
-
-
- If you consider having enough knowledge and experience in a topic and would like to be a long-term reviewer for related submissions, please contact the current reviewers for that topic. They will give you information about the reviewing process. The main reviewers for a topic can be hard to find as there is no list, but checking past pull requests to see who reviewed or git-blaming the code to see who committed to that topic can give some hints.
-
-
-
- Container system, boot system and library changes are some examples of the pull requests fitting this category.
-
-
-
- Merging pull requests
-
-
- It is possible for community members that have enough knowledge and experience on a special topic to contribute by merging pull requests.
-
-
-
-
-
- Please see the discussion in GitHub nixpkgs issue #50105 for information on how to proceed to be granted this level of access.
-
-
-
- In a case a contributor definitively leaves the Nix community, they should create an issue or post on Discourse with references of packages and modules they maintain so the maintainership can be taken over by other contributors.
-
-
-
diff --git a/doc/contributing/submitting-changes.chapter.md b/doc/contributing/submitting-changes.chapter.md
index 13f15b929cf..8a981284153 100644
--- a/doc/contributing/submitting-changes.chapter.md
+++ b/doc/contributing/submitting-changes.chapter.md
@@ -83,6 +83,52 @@ If a security fix applies to both master and a stable release then, similar to r
Critical security fixes may by-pass the staging branches and be delivered directly to release branches such as `master` and `release-*`.
+## Deprecating/removing packages {#submitting-changes-deprecating-packages}
+
+There is currently no policy when to remove a package.
+
+Before removing a package, one should try to find a new maintainer or fix smaller issues first.
+
+### Steps to remove a package from Nixpkgs
+
+We use jbidwatcher as an example for a discontinued project here.
+
+1. Have Nixpkgs checked out locally and up to date.
+1. Create a new branch for your change, e.g. `git checkout -b jbidwatcher`
+1. Remove the actual package including its directory, e.g. `rm -rf pkgs/applications/misc/jbidwatcher`
+1. Remove the package from the list of all packages (`pkgs/top-level/all-packages.nix`).
+1. Add an alias for the package name in `pkgs/top-level/aliases.nix` (There is also `pkgs/misc/vim-plugins/aliases.nix`. Package sets typically do not have aliases, so we can't add them there.)
+
+ For example in this case:
+ ```
+ jbidwatcher = throw "jbidwatcher was discontinued in march 2021"; # added 2021-03-15
+ ```
+
+ The throw message should explain in short why the package was removed for users that still have it installed.
+
+1. Test if the changes introduced any issues by running `nix-env -qaP -f . --show-trace`. It should show the list of packages without errors.
+1. Commit the changes. Explain again why the package was removed. If it was declared discontinued upstream, add a link to the source.
+
+ ```ShellSession
+ $ git add pkgs/applications/misc/jbidwatcher/default.nix pkgs/top-level/all-packages.nix pkgs/top-level/aliases.nix
+ $ git commit
+ ```
+
+ Example commit message:
+
+ ```
+ jbidwatcher: remove
+
+ project was discontinued in march 2021. the program does not work anymore because ebay changed the login.
+
+ https://web.archive.org/web/20210315205723/http://www.jbidwatcher.com/
+ ```
+
+1. Push changes to your GitHub fork with `git push`
+1. Create a pull request against Nixpkgs. Mention the package maintainer.
+
+This is how the pull request looks like in this case: [https://github.com/NixOS/nixpkgs/pull/116470](https://github.com/NixOS/nixpkgs/pull/116470)
+
## Pull Request Template {#submitting-changes-pull-request-template}
The pull request template helps determine what steps have been made for a contribution so far, and will help guide maintainers on the status of a change. The motivation section of the PR should include any extra details the title does not address and link any existing issues related to the pull request.
diff --git a/doc/languages-frameworks/vim.section.md b/doc/languages-frameworks/vim.section.md
index 22b5e6f3013..5316db9a137 100644
--- a/doc/languages-frameworks/vim.section.md
+++ b/doc/languages-frameworks/vim.section.md
@@ -116,6 +116,44 @@ The resulting package can be added to `packageOverrides` in `~/.nixpkgs/config.n
After that you can install your special grafted `myVim` or `myNeovim` packages.
+### What if your favourite Vim plugin isn't already packaged?
+
+If one of your favourite plugins isn't packaged, you can package it yourself:
+
+```
+{ config, pkgs, ... }:
+
+let
+ easygrep = pkgs.vimUtils.buildVimPlugin {
+ name = "vim-easygrep";
+ src = pkgs.fetchFromGitHub {
+ owner = "dkprice";
+ repo = "vim-easygrep";
+ rev = "d0c36a77cc63c22648e792796b1815b44164653a";
+ sha256 = "0y2p5mz0d5fhg6n68lhfhl8p4mlwkb82q337c22djs4w5zyzggbc";
+ };
+ };
+in
+{
+ environment.systemPackages = [
+ (
+ pkgs.neovim.override {
+ configure = {
+ packages.myPlugins = with pkgs.vimPlugins; {
+ start = [
+ vim-go # already packaged plugin
+ easygrep # custom package
+ ];
+ opt = [];
+ };
+ # ...
+ };
+ }
+ )
+ ];
+}
+```
+
## Managing plugins with vim-plug
To use [vim-plug](https://github.com/junegunn/vim-plug) to manage your Vim
diff --git a/doc/manual.xml b/doc/manual.xml
index 1c5a7bbcaa9..6ea4addc361 100644
--- a/doc/manual.xml
+++ b/doc/manual.xml
@@ -32,11 +32,11 @@
Contributing to Nixpkgs
-
-
+
+
-
-
+
+
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index a4d4b146168..cdd854ddb33 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -374,6 +374,12 @@
githubId = 786394;
name = "Alexander Krupenkin ";
};
+ akshgpt7 = {
+ email = "akshgpt7@gmail.com";
+ github = "akshgpt7";
+ githubId = 20405311;
+ name = "Aksh Gupta";
+ };
albakham = {
email = "dev@geber.ga";
github = "albakham";
@@ -2195,6 +2201,16 @@
githubId = 4971975;
name = "Janne Heß";
};
+ dasisdormax = {
+ email = "dasisdormax@mailbox.org";
+ github = "dasisdormax";
+ githubId = 3714905;
+ keys = [{
+ longkeyid = "rsa4096/0x02BA0D4480CA6C44";
+ fingerprint = "E59B A198 61B0 A9ED C1FA 3FB2 02BA 0D44 80CA 6C44";
+ }];
+ name = "Maximilian Wende";
+ };
dasj19 = {
email = "daniel@serbanescu.dk";
github = "dasj19";
@@ -4403,6 +4419,12 @@
githubId = 2588851;
name = "Jan Solanti";
};
+ jappie = {
+ email = "jappieklooster@hotmail.com";
+ github = "jappeace";
+ githubId = 3874017;
+ name = "Jappie Klooster";
+ };
javaguirre = {
email = "contacto@javaguirre.net";
github = "javaguirre";
@@ -5534,6 +5556,12 @@
githubId = 4158274;
name = "Michiel Leenaars";
};
+ legendofmiracles = {
+ email = "legendofmiracles@protonmail.com";
+ github = "legendofmiracles";
+ githubId = 30902201;
+ name = "legendofmiracles";
+ };
lejonet = {
email = "daniel@kuehn.se";
github = "lejonet";
@@ -5984,6 +6012,12 @@
githubId = 115218;
name = "Felix Richter";
};
+ malo = {
+ email = "mbourgon@gmail.com";
+ github = "malob";
+ githubId = 2914269;
+ name = "Malo Bourgon";
+ };
malyn = {
email = "malyn@strangeGizmo.com";
github = "malyn";
@@ -7235,6 +7269,16 @@
github = "obsidian-systems-maintenance";
githubId = 80847921;
};
+ obfusk = {
+ email = "flx@obfusk.net";
+ github = "obfusk";
+ githubId = 1260687;
+ name = "Felix C. Stegerman";
+ keys = [{
+ longkeyid = "rsa4096/0x2F9607F09B360F2D";
+ fingerprint = "D5E4 A51D F8D2 55B9 FAC6 A9BB 2F96 07F0 9B36 0F2D";
+ }];
+ };
odi = {
email = "oliver.dunkl@gmail.com";
github = "odi";
@@ -7911,6 +7955,12 @@
githubId = 18549627;
name = "Proglodyte";
};
+ progval = {
+ email = "progval+nix@progval.net";
+ github = "ProgVal";
+ githubId = 406946;
+ name = "Valentin Lorentz";
+ };
protoben = {
email = "protob3n@gmail.com";
github = "protoben";
@@ -8723,6 +8773,12 @@
githubId = 8534888;
name = "Savanni D'Gerinel";
};
+ sayanarijit = {
+ email = "sayanarijit@gmail.com";
+ github = "sayanarijit";
+ githubId = 11632726;
+ name = "Arijit Basu";
+ };
sb0 = {
email = "sb@m-labs.hk";
github = "sbourdeauducq";
@@ -9191,6 +9247,12 @@
fingerprint = "0EC3 FA89 EFBA B421 F82E 40B0 2567 6BCB FFAD 76B1";
}];
};
+ sophrosyne = {
+ email = "joshuaortiz@tutanota.com";
+ github = "sophrosyne97";
+ githubId = 53029739;
+ name = "Joshua Ortiz";
+ };
sorki = {
email = "srk@48.io";
github = "sorki";
@@ -9429,6 +9491,12 @@
githubId = 187109;
name = "Bjarki Ágúst Guðmundsson";
};
+ suryasr007 = {
+ email = "94suryateja@gmail.com";
+ github = "suryasr007";
+ githubId = 10533926;
+ name = "Surya Teja V";
+ };
suvash = {
email = "suvash+nixpkgs@gmail.com";
github = "suvash";
@@ -9625,12 +9693,6 @@
githubId = 102685;
name = "Thomas Friese";
};
- tavyc = {
- email = "octavian.cerna@gmail.com";
- github = "tavyc";
- githubId = 3650609;
- name = "Octavian Cerna";
- };
tazjin = {
email = "mail@tazj.in";
github = "tazjin";
@@ -11260,6 +11322,16 @@
github = "pulsation";
githubId = 1838397;
};
+ zane = {
+ name = "Zane van Iperen";
+ email = "zane@zanevaniperen.com";
+ github = "vs49688";
+ githubId = 4423262;
+ keys = [{
+ longkeyid = "rsa4096/0x68616B2D8AC4DCC5";
+ fingerprint = "61AE D40F 368B 6F26 9DAE 3892 6861 6B2D 8AC4 DCC5";
+ }];
+ };
zseri = {
name = "zseri";
email = "zseri.devel@ytrizja.de";
diff --git a/maintainers/scripts/luarocks-packages.csv b/maintainers/scripts/luarocks-packages.csv
index ac9f22d23fb..a387430245a 100644
--- a/maintainers/scripts/luarocks-packages.csv
+++ b/maintainers/scripts/luarocks-packages.csv
@@ -38,6 +38,7 @@ lua-messagepack,,,,,
lua-resty-http,,,,,
lua-resty-jwt,,,,,
lua-resty-openidc,,,,,
+lua-resty-openssl,,,,,
lua-resty-session,,,,,
lua-term,,,,,
lua-toml,,,,,
diff --git a/maintainers/scripts/nix-generate-from-cpan.nix b/maintainers/scripts/nix-generate-from-cpan.nix
index 411e0d77feb..fecca7f0c73 100644
--- a/maintainers/scripts/nix-generate-from-cpan.nix
+++ b/maintainers/scripts/nix-generate-from-cpan.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
'';
meta = {
- maintainers = with lib.maintainers; [ eelco rycee ];
+ maintainers = with lib.maintainers; [ eelco ];
description = "Utility to generate a Nix expression for a Perl package from CPAN";
platforms = lib.platforms.unix;
};
diff --git a/maintainers/scripts/pluginupdate.py b/maintainers/scripts/pluginupdate.py
index 00a205313be..e7a183952b0 100644
--- a/maintainers/scripts/pluginupdate.py
+++ b/maintainers/scripts/pluginupdate.py
@@ -460,6 +460,10 @@ def parse_args(editor: Editor):
default=30,
help="Number of concurrent processes to spawn.",
)
+ parser.add_argument(
+ "--no-commit", "-n", action="store_true", default=False,
+ help="Whether to autocommit changes"
+ )
return parser.parse_args()
@@ -504,24 +508,30 @@ def update_plugins(editor: Editor):
redirects = update()
rewrite_input(args.input_file, editor.deprecated, redirects)
- commit(nixpkgs_repo, f"{editor.name}Plugins: update", [args.outfile])
+
+ autocommit = not args.no_commit
+
+ if autocommit:
+ commit(nixpkgs_repo, f"{editor.name}Plugins: update", [args.outfile])
if redirects:
update()
- commit(
- nixpkgs_repo,
- f"{editor.name}Plugins: resolve github repository redirects",
- [args.outfile, args.input_file, editor.deprecated],
- )
+ if autocommit:
+ commit(
+ nixpkgs_repo,
+ f"{editor.name}Plugins: resolve github repository redirects",
+ [args.outfile, args.input_file, editor.deprecated],
+ )
for plugin_line in args.add_plugins:
rewrite_input(args.input_file, editor.deprecated, append=(plugin_line + "\n",))
update()
plugin = fetch_plugin_from_pluginline(plugin_line)
- commit(
- nixpkgs_repo,
- "{editor}Plugins.{name}: init at {version}".format(
- editor=editor.name, name=plugin.normalized_name, version=plugin.version
- ),
- [args.outfile, args.input_file],
- )
+ if autocommit:
+ commit(
+ nixpkgs_repo,
+ "{editor}Plugins.{name}: init at {version}".format(
+ editor=editor.name, name=plugin.normalized_name, version=plugin.version
+ ),
+ [args.outfile, args.input_file],
+ )
diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix
index 39c9b767187..cb30b2e0138 100644
--- a/maintainers/team-list.nix
+++ b/maintainers/team-list.nix
@@ -56,6 +56,15 @@ with lib.maintainers; {
scope = "Group registration for D. E. Shaw employees who collectively maintain packages.";
};
+ determinatesystems = {
+ # Verify additions to this team with at least one already existing member of the team.
+ members = [
+ cole-h
+ grahamc
+ ];
+ scope = "Group registration for packages maintained by Determinate Systems.";
+ };
+
freedesktop = {
members = [ jtojnar worldofpeace ];
scope = "Maintain Freedesktop.org packages for graphical desktop.";
diff --git a/nixos/doc/manual/release-notes/rl-2105.xml b/nixos/doc/manual/release-notes/rl-2105.xml
index ce3cfc573dc..e0552c25a85 100644
--- a/nixos/doc/manual/release-notes/rl-2105.xml
+++ b/nixos/doc/manual/release-notes/rl-2105.xml
@@ -675,6 +675,11 @@ environment.systemPackages = [
Currently, the service doesn't enforce nor checks the correct number of paths to correspond to minio requirements.
+
+
+ All CUDA toolkit versions prior to CUDA 10 have been removed.
+
+
@@ -955,6 +960,11 @@ environment.systemPackages = [
boot.extraSystemdUnitPaths list.
+
+
+ PostgreSQL 9.5 is scheduled EOL during the 21.05 life cycle and has been removed.
+
+
diff --git a/nixos/maintainers/scripts/cloudstack/cloudstack-image.nix b/nixos/maintainers/scripts/cloudstack/cloudstack-image.nix
index 37b46db059c..005f75476e9 100644
--- a/nixos/maintainers/scripts/cloudstack/cloudstack-image.nix
+++ b/nixos/maintainers/scripts/cloudstack/cloudstack-image.nix
@@ -10,7 +10,6 @@ with lib;
system.build.cloudstackImage = import ../../../lib/make-disk-image.nix {
inherit lib config pkgs;
- diskSize = 8192;
format = "qcow2";
configFile = pkgs.writeText "configuration.nix"
''
diff --git a/nixos/maintainers/scripts/ec2/amazon-image.nix b/nixos/maintainers/scripts/ec2/amazon-image.nix
index 0ecf07669a1..653744986d1 100644
--- a/nixos/maintainers/scripts/ec2/amazon-image.nix
+++ b/nixos/maintainers/scripts/ec2/amazon-image.nix
@@ -40,8 +40,9 @@ in {
};
sizeMB = mkOption {
- type = types.int;
- default = if config.ec2.hvm then 2048 else 8192;
+ type = with types; either (enum [ "auto" ]) int;
+ default = "auto";
+ example = 8192;
description = "The size in MB of the image";
};
diff --git a/nixos/maintainers/scripts/openstack/openstack-image.nix b/nixos/maintainers/scripts/openstack/openstack-image.nix
index 4c464f43f61..3255e7f3d44 100644
--- a/nixos/maintainers/scripts/openstack/openstack-image.nix
+++ b/nixos/maintainers/scripts/openstack/openstack-image.nix
@@ -12,8 +12,8 @@ with lib;
system.build.openstackImage = import ../../../lib/make-disk-image.nix {
inherit lib config;
+ additionalSpace = "1024M";
pkgs = import ../../../.. { inherit (pkgs) system; }; # ensure we use the regular qemu-kvm package
- diskSize = 8192;
format = "qcow2";
configFile = pkgs.writeText "configuration.nix"
''
diff --git a/nixos/modules/config/iproute2.nix b/nixos/modules/config/iproute2.nix
index a1d9ebcec66..5f41f3d21e4 100644
--- a/nixos/modules/config/iproute2.nix
+++ b/nixos/modules/config/iproute2.nix
@@ -18,15 +18,15 @@ in
};
config = mkIf cfg.enable {
- environment.etc."iproute2/bpf_pinning" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/bpf_pinning"; };
- environment.etc."iproute2/ematch_map" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/ematch_map"; };
- environment.etc."iproute2/group" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/group"; };
- environment.etc."iproute2/nl_protos" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/nl_protos"; };
- environment.etc."iproute2/rt_dsfield" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/rt_dsfield"; };
- environment.etc."iproute2/rt_protos" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/rt_protos"; };
- environment.etc."iproute2/rt_realms" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/rt_realms"; };
- environment.etc."iproute2/rt_scopes" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/rt_scopes"; };
- environment.etc."iproute2/rt_tables" = { mode = "0644"; text = (fileContents "${pkgs.iproute}/etc/iproute2/rt_tables")
+ environment.etc."iproute2/bpf_pinning" = { mode = "0644"; text = fileContents "${pkgs.iproute2}/etc/iproute2/bpf_pinning"; };
+ environment.etc."iproute2/ematch_map" = { mode = "0644"; text = fileContents "${pkgs.iproute2}/etc/iproute2/ematch_map"; };
+ environment.etc."iproute2/group" = { mode = "0644"; text = fileContents "${pkgs.iproute2}/etc/iproute2/group"; };
+ environment.etc."iproute2/nl_protos" = { mode = "0644"; text = fileContents "${pkgs.iproute2}/etc/iproute2/nl_protos"; };
+ environment.etc."iproute2/rt_dsfield" = { mode = "0644"; text = fileContents "${pkgs.iproute2}/etc/iproute2/rt_dsfield"; };
+ environment.etc."iproute2/rt_protos" = { mode = "0644"; text = fileContents "${pkgs.iproute2}/etc/iproute2/rt_protos"; };
+ environment.etc."iproute2/rt_realms" = { mode = "0644"; text = fileContents "${pkgs.iproute2}/etc/iproute2/rt_realms"; };
+ environment.etc."iproute2/rt_scopes" = { mode = "0644"; text = fileContents "${pkgs.iproute2}/etc/iproute2/rt_scopes"; };
+ environment.etc."iproute2/rt_tables" = { mode = "0644"; text = (fileContents "${pkgs.iproute2}/etc/iproute2/rt_tables")
+ (optionalString (cfg.rttablesExtraConfig != "") "\n\n${cfg.rttablesExtraConfig}"); };
};
}
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index 2b6a61e9a80..567a8b6f3b9 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -6,6 +6,12 @@ let
ids = config.ids;
cfg = config.users;
+ isPasswdCompatible = str: !(hasInfix ":" str || hasInfix "\n" str);
+ passwdEntry = type: lib.types.addCheck type isPasswdCompatible // {
+ name = "passwdEntry ${type.name}";
+ description = "${type.description}, not containing newlines or colons";
+ };
+
# Check whether a password hash will allow login.
allowsLogin = hash:
hash == "" # login without password
@@ -54,7 +60,7 @@ let
options = {
name = mkOption {
- type = types.str;
+ type = passwdEntry types.str;
apply = x: assert (builtins.stringLength x < 32 || abort "Username '${x}' is longer than 31 characters which is not allowed!"); x;
description = ''
The name of the user account. If undefined, the name of the
@@ -63,7 +69,7 @@ let
};
description = mkOption {
- type = types.str;
+ type = passwdEntry types.str;
default = "";
example = "Alice Q. User";
description = ''
@@ -128,7 +134,7 @@ let
};
home = mkOption {
- type = types.path;
+ type = passwdEntry types.path;
default = "/var/empty";
description = "The user's home directory.";
};
@@ -157,7 +163,7 @@ let
};
shell = mkOption {
- type = types.nullOr (types.either types.shellPackage types.path);
+ type = types.nullOr (types.either types.shellPackage (passwdEntry types.path));
default = pkgs.shadow;
defaultText = "pkgs.shadow";
example = literalExample "pkgs.bashInteractive";
@@ -217,7 +223,7 @@ let
};
hashedPassword = mkOption {
- type = with types; nullOr str;
+ type = with types; nullOr (passwdEntry str);
default = null;
description = ''
Specifies the hashed password for the user.
@@ -251,7 +257,7 @@ let
};
initialHashedPassword = mkOption {
- type = with types; nullOr str;
+ type = with types; nullOr (passwdEntry str);
default = null;
description = ''
Specifies the initial hashed password for the user, i.e. the
@@ -323,7 +329,7 @@ let
options = {
name = mkOption {
- type = types.str;
+ type = passwdEntry types.str;
description = ''
The name of the group. If undefined, the name of the attribute set
will be used.
@@ -340,7 +346,7 @@ let
};
members = mkOption {
- type = with types; listOf str;
+ type = with types; listOf (passwdEntry str);
default = [];
description = ''
The user names of the group members, added to the
diff --git a/nixos/modules/hardware/keyboard/teck.nix b/nixos/modules/hardware/keyboard/teck.nix
new file mode 100644
index 00000000000..091ddb81962
--- /dev/null
+++ b/nixos/modules/hardware/keyboard/teck.nix
@@ -0,0 +1,16 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+let
+ cfg = config.hardware.keyboard.teck;
+in
+{
+ options.hardware.keyboard.teck = {
+ enable = mkEnableOption "non-root access to the firmware of TECK keyboards";
+ };
+
+ config = mkIf cfg.enable {
+ services.udev.packages = [ pkgs.teck-udev-rules ];
+ };
+}
+
diff --git a/nixos/modules/i18n/input-method/default.nix b/nixos/modules/i18n/input-method/default.nix
index 4649f9b862a..bbc5783565a 100644
--- a/nixos/modules/i18n/input-method/default.nix
+++ b/nixos/modules/i18n/input-method/default.nix
@@ -29,7 +29,7 @@ in
options.i18n = {
inputMethod = {
enabled = mkOption {
- type = types.nullOr (types.enum [ "ibus" "fcitx" "fcitx5" "nabi" "uim" "hime" ]);
+ type = types.nullOr (types.enum [ "ibus" "fcitx" "fcitx5" "nabi" "uim" "hime" "kime" ]);
default = null;
example = "fcitx";
description = ''
@@ -46,6 +46,7 @@ in
nabi: A Korean input method based on XIM. Nabi doesn't support Qt 5.
uim: The universal input method, is a library with a XIM bridge. uim mainly support Chinese, Japanese and Korean.
hime: An extremely easy-to-use input method framework.
+ kime: Koream IME.
'';
};
diff --git a/nixos/modules/i18n/input-method/default.xml b/nixos/modules/i18n/input-method/default.xml
index 73911059f8a..dd66316c730 100644
--- a/nixos/modules/i18n/input-method/default.xml
+++ b/nixos/modules/i18n/input-method/default.xml
@@ -40,6 +40,11 @@
Hime: An extremely easy-to-use input method framework.
+
+
+ Kime: Korean IME
+
+
IBus
@@ -264,6 +269,23 @@ i18n.inputMethod = {
i18n.inputMethod = {
enabled = "hime";
};
+
+
+
+ Kime
+
+
+ Kime is Korean IME. it's built with Rust language and let you get simple, safe, fast Korean typing
+
+
+
+ The following snippet can be used to configure Kime:
+
+
+
+i18n.inputMethod = {
+ enabled = "kime";
+};
diff --git a/nixos/modules/i18n/input-method/kime.nix b/nixos/modules/i18n/input-method/kime.nix
new file mode 100644
index 00000000000..2a73cb3f460
--- /dev/null
+++ b/nixos/modules/i18n/input-method/kime.nix
@@ -0,0 +1,49 @@
+{ config, pkgs, lib, generators, ... }:
+with lib;
+let
+ cfg = config.i18n.inputMethod.kime;
+ yamlFormat = pkgs.formats.yaml { };
+in
+{
+ options = {
+ i18n.inputMethod.kime = {
+ config = mkOption {
+ type = yamlFormat.type;
+ default = { };
+ example = literalExample ''
+ {
+ daemon = {
+ modules = ["Xim" "Indicator"];
+ };
+
+ indicator = {
+ icon_color = "White";
+ };
+
+ engine = {
+ hangul = {
+ layout = "dubeolsik";
+ };
+ };
+ }
+ '';
+ description = ''
+ kime configuration. Refer to for details on supported values.
+ '';
+ };
+ };
+ };
+
+ config = mkIf (config.i18n.inputMethod.enabled == "kime") {
+ i18n.inputMethod.package = pkgs.kime;
+
+ environment.variables = {
+ GTK_IM_MODULE = "kime";
+ QT_IM_MODULE = "kime";
+ XMODIFIERS = "@im=kime";
+ };
+
+ environment.etc."xdg/kime/config.yaml".text = replaceStrings [ "\\\\" ] [ "\\" ] (builtins.toJSON cfg.config);
+ };
+}
+
diff --git a/nixos/modules/installer/tools/tools.nix b/nixos/modules/installer/tools/tools.nix
index 77c974fc22c..cb2dbf6c859 100644
--- a/nixos/modules/installer/tools/tools.nix
+++ b/nixos/modules/installer/tools/tools.nix
@@ -163,7 +163,8 @@ in
# List packages installed in system profile. To search, run:
# \$ nix search wget
# environment.systemPackages = with pkgs; [
- # wget vim
+ # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
+ # wget
# firefox
# ];
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 5271cbebc26..11c18a9df4b 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -49,6 +49,7 @@
./hardware/i2c.nix
./hardware/sensor/hddtemp.nix
./hardware/sensor/iio.nix
+ ./hardware/keyboard/teck.nix
./hardware/keyboard/zsa.nix
./hardware/ksm.nix
./hardware/ledger.nix
@@ -92,6 +93,7 @@
./i18n/input-method/ibus.nix
./i18n/input-method/nabi.nix
./i18n/input-method/uim.nix
+ ./i18n/input-method/kime.nix
./installer/tools/tools.nix
./misc/assertions.nix
./misc/crashdump.nix
@@ -366,6 +368,7 @@
./services/games/minecraft-server.nix
./services/games/minetest-server.nix
./services/games/openarena.nix
+ ./services/games/quake3-server.nix
./services/games/teeworlds.nix
./services/games/terraria.nix
./services/hardware/acpid.nix
@@ -728,6 +731,7 @@
./services/networking/nar-serve.nix
./services/networking/nat.nix
./services/networking/ndppd.nix
+ ./services/networking/nebula.nix
./services/networking/networkmanager.nix
./services/networking/nextdns.nix
./services/networking/nftables.nix
@@ -763,7 +767,6 @@
./services/networking/prayer.nix
./services/networking/privoxy.nix
./services/networking/prosody.nix
- ./services/networking/quagga.nix
./services/networking/quassel.nix
./services/networking/quorum.nix
./services/networking/quicktun.nix
diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix
index 9f1efc46279..233e3ee848b 100644
--- a/nixos/modules/rename.nix
+++ b/nixos/modules/rename.nix
@@ -18,6 +18,7 @@ with lib;
# Completely removed modules
(mkRemovedOptionModule [ "fonts" "fontconfig" "penultimate" ] "The corresponding package has removed from nixpkgs.")
+ (mkRemovedOptionModule [ "services" "quagga" ] "the corresponding package has been removed from nixpkgs")
(mkRemovedOptionModule [ "services" "chronos" ] "The corresponding package was removed from nixpkgs.")
(mkRemovedOptionModule [ "services" "deepin" ] "The corresponding packages were removed from nixpkgs.")
(mkRemovedOptionModule [ "services" "firefox" "syncserver" "user" ] "")
diff --git a/nixos/modules/services/databases/postgresql.nix b/nixos/modules/services/databases/postgresql.nix
index ee8cdf2d285..fdc05312ece 100644
--- a/nixos/modules/services/databases/postgresql.nix
+++ b/nixos/modules/services/databases/postgresql.nix
@@ -295,8 +295,7 @@ in
# systems!
mkDefault (if versionAtLeast config.system.stateVersion "20.03" then pkgs.postgresql_11
else if versionAtLeast config.system.stateVersion "17.09" then pkgs.postgresql_9_6
- else if versionAtLeast config.system.stateVersion "16.03" then pkgs.postgresql_9_5
- else throw "postgresql_9_4 was removed, please upgrade your postgresql version.");
+ else throw "postgresql_9_5 was removed, please upgrade your postgresql version.");
services.postgresql.dataDir = mkDefault "/var/lib/postgresql/${cfg.package.psqlSchema}";
diff --git a/nixos/modules/services/databases/redis.nix b/nixos/modules/services/databases/redis.nix
index 3ddc7aad81e..7ec10c0eb5a 100644
--- a/nixos/modules/services/databases/redis.nix
+++ b/nixos/modules/services/databases/redis.nix
@@ -5,6 +5,8 @@ with lib;
let
cfg = config.services.redis;
+ ulimitNofile = cfg.maxclients + 32;
+
mkValueString = value:
if value == true then "yes"
else if value == false then "no"
@@ -14,8 +16,8 @@ let
listsAsDuplicateKeys = true;
mkKeyValue = generators.mkKeyValueDefault { inherit mkValueString; } " ";
} cfg.settings);
-in
-{
+
+in {
imports = [
(mkRemovedOptionModule [ "services" "redis" "user" ] "The redis module now is hardcoded to the redis user.")
(mkRemovedOptionModule [ "services" "redis" "dbpath" ] "The redis module now uses /var/lib/redis as data directory.")
@@ -121,6 +123,12 @@ in
description = "Set the number of databases.";
};
+ maxclients = mkOption {
+ type = types.int;
+ default = 10000;
+ description = "Set the max number of connected clients at the same time.";
+ };
+
save = mkOption {
type = with types; listOf (listOf int);
default = [ [900 1] [300 10] [60 10000] ];
@@ -253,6 +261,7 @@ in
logfile = cfg.logfile;
syslog-enabled = cfg.syslog;
databases = cfg.databases;
+ maxclients = cfg.maxclients;
save = map (d: "${toString (builtins.elemAt d 0)} ${toString (builtins.elemAt d 1)}") cfg.save;
dbfilename = "dump.rdb";
dir = "/var/lib/redis";
@@ -295,6 +304,34 @@ in
StateDirectoryMode = "0700";
# Access write directories
UMask = "0077";
+ # Capabilities
+ CapabilityBoundingSet = "";
+ # Security
+ NoNewPrivileges = true;
+ # Process Properties
+ LimitNOFILE = "${toString ulimitNofile}";
+ # Sandboxing
+ ProtectSystem = "strict";
+ ProtectHome = true;
+ PrivateTmp = true;
+ PrivateDevices = true;
+ PrivateUsers = true;
+ ProtectClock = true;
+ ProtectHostname = true;
+ ProtectKernelLogs = true;
+ ProtectKernelModules = true;
+ ProtectKernelTunables = true;
+ ProtectControlGroups = true;
+ RestrictAddressFamilies = [ "AF_UNIX" "AF_INET" "AF_INET6" ];
+ RestrictNamespaces = true;
+ LockPersonality = true;
+ MemoryDenyWriteExecute = true;
+ RestrictRealtime = true;
+ RestrictSUIDSGID = true;
+ PrivateMounts = true;
+ # System Call Filtering
+ SystemCallArchitectures = "native";
+ SystemCallFilter = "~@clock @cpu-emulation @debug @keyring @memlock @module @mount @obsolete @privileged @raw-io @reboot @resources @setuid @swap";
};
};
};
diff --git a/nixos/modules/services/games/quake3-server.nix b/nixos/modules/services/games/quake3-server.nix
new file mode 100644
index 00000000000..1dc01260e8f
--- /dev/null
+++ b/nixos/modules/services/games/quake3-server.nix
@@ -0,0 +1,111 @@
+{ config, pkgs, lib, ... }:
+with lib;
+
+let
+ cfg = config.services.quake3-server;
+ configFile = pkgs.writeText "q3ds-extra.cfg" ''
+ set net_port ${builtins.toString cfg.port}
+
+ ${cfg.extraConfig}
+ '';
+ defaultBaseq3 = pkgs.requireFile rec {
+ name = "baseq3";
+ hashMode = "recursive";
+ sha256 = "5dd8ee09eabd45e80450f31d7a8b69b846f59738726929298d8a813ce5725ed3";
+ message = ''
+ Unfortunately, we cannot download ${name} automatically.
+ Please purchase a legitimate copy of Quake 3 and change into the installation directory.
+
+ You can either add all relevant files to the nix-store like this:
+ mkdir /tmp/baseq3
+ cp baseq3/pak*.pk3 /tmp/baseq3
+ nix-store --add-fixed sha256 --recursive /tmp/baseq3
+
+ Alternatively you can set services.quake3-server.baseq3 to a path and copy the baseq3 directory into
+ $services.quake3-server.baseq3/.q3a/
+ '';
+ };
+ home = pkgs.runCommand "quake3-home" {} ''
+ mkdir -p $out/.q3a/baseq3
+
+ for file in ${cfg.baseq3}/*; do
+ ln -s $file $out/.q3a/baseq3/$(basename $file)
+ done
+
+ ln -s ${configFile} $out/.q3a/baseq3/nix.cfg
+ '';
+in {
+ options = {
+ services.quake3-server = {
+ enable = mkEnableOption "Quake 3 dedicated server";
+
+ port = mkOption {
+ type = types.port;
+ default = 27960;
+ description = ''
+ UDP Port the server should listen on.
+ '';
+ };
+
+ openFirewall = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Open the firewall.
+ '';
+ };
+
+ extraConfig = mkOption {
+ type = types.lines;
+ default = "";
+ example = ''
+ seta rconPassword "superSecret" // sets RCON password for remote console
+ seta sv_hostname "My Quake 3 server" // name that appears in server list
+ '';
+ description = ''
+ Extra configuration options. Note that options changed via RCON will not be persisted. To list all possible
+ options, use "cvarlist 1" via RCON.
+ '';
+ };
+
+ baseq3 = mkOption {
+ type = types.either types.package types.path;
+ default = defaultBaseq3;
+ example = "/var/lib/q3ds";
+ description = ''
+ Path to the baseq3 files (pak*.pk3). If this is on the nix store (type = package) all .pk3 files should be saved
+ in the top-level directory. If this is on another filesystem (e.g /var/lib/baseq3) the .pk3 files are searched in
+ $baseq3/.q3a/baseq3/
+ '';
+ };
+ };
+ };
+
+ config = let
+ baseq3InStore = builtins.typeOf cfg.baseq3 == "set";
+ in mkIf cfg.enable {
+ networking.firewall.allowedUDPPorts = mkIf cfg.openFirewall [ cfg.port ];
+
+ systemd.services.q3ds = {
+ description = "Quake 3 dedicated server";
+ wantedBy = [ "multi-user.target" ];
+ after = [ "networking.target" ];
+
+ environment.HOME = if baseq3InStore then home else cfg.baseq3;
+
+ serviceConfig = with lib; {
+ Restart = "always";
+ DynamicUser = true;
+ WorkingDirectory = home;
+
+ # It is possible to alter configuration files via RCON. To ensure reproducibility we have to prevent this
+ ReadOnlyPaths = if baseq3InStore then home else cfg.baseq3;
+ ExecStartPre = optionalString (!baseq3InStore) "+${pkgs.coreutils}/bin/cp ${configFile} ${cfg.baseq3}/.q3a/baseq3/nix.cfg";
+
+ ExecStart = "${pkgs.ioquake3}/ioq3ded.x86_64 +exec nix.cfg";
+ };
+ };
+ };
+
+ meta.maintainers = with maintainers; [ f4814n ];
+}
diff --git a/nixos/modules/services/mail/mailman.nix b/nixos/modules/services/mail/mailman.nix
index 84b0fbc5f6e..f75d6183c3e 100644
--- a/nixos/modules/services/mail/mailman.nix
+++ b/nixos/modules/services/mail/mailman.nix
@@ -454,7 +454,7 @@ in {
};
meta = {
- maintainers = with lib.maintainers; [ lheckemann ];
+ maintainers = with lib.maintainers; [ lheckemann qyliss ];
doc = ./mailman.xml;
};
diff --git a/nixos/modules/services/mail/nullmailer.nix b/nixos/modules/services/mail/nullmailer.nix
index fe3f8ef9b39..09874ca0ed7 100644
--- a/nixos/modules/services/mail/nullmailer.nix
+++ b/nixos/modules/services/mail/nullmailer.nix
@@ -204,6 +204,7 @@ with lib;
users.${cfg.user} = {
description = "Nullmailer relay-only mta user";
group = cfg.group;
+ isSystemUser = true;
};
groups.${cfg.group} = { };
diff --git a/nixos/modules/services/misc/home-assistant.nix b/nixos/modules/services/misc/home-assistant.nix
index 2787c975b35..0590f54ae60 100644
--- a/nixos/modules/services/misc/home-assistant.nix
+++ b/nixos/modules/services/misc/home-assistant.nix
@@ -50,15 +50,10 @@ let
# List of components used in config
extraComponents = filter useComponent availableComponents;
- testedPackage = if (cfg.autoExtraComponents && cfg.config != null)
+ package = if (cfg.autoExtraComponents && cfg.config != null)
then (cfg.package.override { inherit extraComponents; })
else cfg.package;
- # overridePythonAttrs has to be applied after override
- package = testedPackage.overridePythonAttrs (oldAttrs: {
- doCheck = false;
- });
-
# If you are changing this, please update the description in applyDefaultConfig
defaultConfig = {
homeassistant.time_zone = config.time.timeZone;
@@ -188,9 +183,13 @@ in {
};
package = mkOption {
- default = pkgs.home-assistant;
+ default = pkgs.home-assistant.overrideAttrs (oldAttrs: {
+ doInstallCheck = false;
+ });
defaultText = literalExample ''
- pkgs.home-assistant
+ pkgs.home-assistant.overrideAttrs (oldAttrs: {
+ doInstallCheck = false;
+ })
'';
type = types.package;
example = literalExample ''
@@ -199,12 +198,11 @@ in {
}
'';
description = ''
- Home Assistant package to use. Tests are automatically disabled, as they take a considerable amout of time to complete.
+ Home Assistant package to use. By default the tests are disabled, as they take a considerable amout of time to complete.
Override extraPackages or extraComponents in order to add additional dependencies.
If you specify and do not set
to false, overriding extraComponents will have no effect.
- Avoid home-assistant.overridePythonAttrs if you use
- autoExtraComponents.
+ Avoid home-assistant.overridePythonAttrs if you use autoExtraComponents.
'';
};
diff --git a/nixos/modules/services/misc/matrix-appservice-irc.nix b/nixos/modules/services/misc/matrix-appservice-irc.nix
index 63dc313ad10..a0a5973d30f 100644
--- a/nixos/modules/services/misc/matrix-appservice-irc.nix
+++ b/nixos/modules/services/misc/matrix-appservice-irc.nix
@@ -214,7 +214,8 @@ in {
PrivateMounts = true;
SystemCallFilter = "~@aio @clock @cpu-emulation @debug @keyring @memlock @module @mount @obsolete @raw-io @setuid @swap";
SystemCallArchitectures = "native";
- RestrictAddressFamilies = "AF_INET AF_INET6";
+ # AF_UNIX is required to connect to a postgres socket.
+ RestrictAddressFamilies = "AF_UNIX AF_INET AF_INET6";
};
};
diff --git a/nixos/modules/services/network-filesystems/ipfs.nix b/nixos/modules/services/network-filesystems/ipfs.nix
index 2082d513161..88d355ff32c 100644
--- a/nixos/modules/services/network-filesystems/ipfs.nix
+++ b/nixos/modules/services/network-filesystems/ipfs.nix
@@ -296,7 +296,7 @@ in {
systemd.sockets.ipfs-api = {
wantedBy = [ "sockets.target" ];
- # We also include "%t/ipfs.sock" because tere is no way to put the "%t"
+ # We also include "%t/ipfs.sock" because there is no way to put the "%t"
# in the multiaddr.
socketConfig.ListenStream = let
fromCfg = multiaddrToListenStream cfg.apiAddress;
diff --git a/nixos/modules/services/networking/dnsdist.nix b/nixos/modules/services/networking/dnsdist.nix
index 3584915d0aa..c7c6a79864c 100644
--- a/nixos/modules/services/networking/dnsdist.nix
+++ b/nixos/modules/services/networking/dnsdist.nix
@@ -4,7 +4,7 @@ with lib;
let
cfg = config.services.dnsdist;
- configFile = pkgs.writeText "dndist.conf" ''
+ configFile = pkgs.writeText "dnsdist.conf" ''
setLocal('${cfg.listenAddress}:${toString cfg.listenPort}')
${cfg.extraConfig}
'';
diff --git a/nixos/modules/services/networking/mxisd.nix b/nixos/modules/services/networking/mxisd.nix
index 482d6ff456b..f29d190c626 100644
--- a/nixos/modules/services/networking/mxisd.nix
+++ b/nixos/modules/services/networking/mxisd.nix
@@ -41,8 +41,8 @@ in {
package = mkOption {
type = types.package;
- default = pkgs.mxisd;
- defaultText = "pkgs.mxisd";
+ default = pkgs.ma1sd;
+ defaultText = "pkgs.ma1sd";
description = "The mxisd/ma1sd package to use";
};
diff --git a/nixos/modules/services/networking/nebula.nix b/nixos/modules/services/networking/nebula.nix
new file mode 100644
index 00000000000..e7ebfe1b4db
--- /dev/null
+++ b/nixos/modules/services/networking/nebula.nix
@@ -0,0 +1,219 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+ cfg = config.services.nebula;
+ enabledNetworks = filterAttrs (n: v: v.enable) cfg.networks;
+
+ format = pkgs.formats.yaml {};
+
+ nameToId = netName: "nebula-${netName}";
+in
+{
+ # Interface
+
+ options = {
+ services.nebula = {
+ networks = mkOption {
+ description = "Nebula network definitions.";
+ default = {};
+ type = types.attrsOf (types.submodule {
+ options = {
+ enable = mkOption {
+ type = types.bool;
+ default = true;
+ description = "Enable or disable this network.";
+ };
+
+ package = mkOption {
+ type = types.package;
+ default = pkgs.nebula;
+ defaultText = "pkgs.nebula";
+ description = "Nebula derivation to use.";
+ };
+
+ ca = mkOption {
+ type = types.path;
+ description = "Path to the certificate authority certificate.";
+ example = "/etc/nebula/ca.crt";
+ };
+
+ cert = mkOption {
+ type = types.path;
+ description = "Path to the host certificate.";
+ example = "/etc/nebula/host.crt";
+ };
+
+ key = mkOption {
+ type = types.path;
+ description = "Path to the host key.";
+ example = "/etc/nebula/host.key";
+ };
+
+ staticHostMap = mkOption {
+ type = types.attrsOf (types.listOf (types.str));
+ default = {};
+ description = ''
+ The static host map defines a set of hosts with fixed IP addresses on the internet (or any network).
+ A host can have multiple fixed IP addresses defined here, and nebula will try each when establishing a tunnel.
+ '';
+ example = literalExample ''
+ { "192.168.100.1" = [ "100.64.22.11:4242" ]; }
+ '';
+ };
+
+ isLighthouse = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Whether this node is a lighthouse.";
+ };
+
+ lighthouses = mkOption {
+ type = types.listOf types.str;
+ default = [];
+ description = ''
+ List of IPs of lighthouse hosts this node should report to and query from. This should be empty on lighthouse
+ nodes. The IPs should be the lighthouse's Nebula IPs, not their external IPs.
+ '';
+ example = ''[ "192.168.100.1" ]'';
+ };
+
+ listen.host = mkOption {
+ type = types.str;
+ default = "0.0.0.0";
+ description = "IP address to listen on.";
+ };
+
+ listen.port = mkOption {
+ type = types.port;
+ default = 4242;
+ description = "Port number to listen on.";
+ };
+
+ tun.disable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ When tun is disabled, a lighthouse can be started without a local tun interface (and therefore without root).
+ '';
+ };
+
+ tun.device = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = "Name of the tun device. Defaults to nebula.\${networkName}.";
+ };
+
+ firewall.outbound = mkOption {
+ type = types.listOf types.attrs;
+ default = [];
+ description = "Firewall rules for outbound traffic.";
+ example = ''[ { port = "any"; proto = "any"; host = "any"; } ]'';
+ };
+
+ firewall.inbound = mkOption {
+ type = types.listOf types.attrs;
+ default = [];
+ description = "Firewall rules for inbound traffic.";
+ example = ''[ { port = "any"; proto = "any"; host = "any"; } ]'';
+ };
+
+ settings = mkOption {
+ type = format.type;
+ default = {};
+ description = ''
+ Nebula configuration. Refer to
+
+ for details on supported values.
+ '';
+ example = literalExample ''
+ {
+ lighthouse.dns = {
+ host = "0.0.0.0";
+ port = 53;
+ };
+ }
+ '';
+ };
+ };
+ });
+ };
+ };
+ };
+
+ # Implementation
+ config = mkIf (enabledNetworks != {}) {
+ systemd.services = mkMerge (mapAttrsToList (netName: netCfg:
+ let
+ networkId = nameToId netName;
+ settings = recursiveUpdate {
+ pki = {
+ ca = netCfg.ca;
+ cert = netCfg.cert;
+ key = netCfg.key;
+ };
+ static_host_map = netCfg.staticHostMap;
+ lighthouse = {
+ am_lighthouse = netCfg.isLighthouse;
+ hosts = netCfg.lighthouses;
+ };
+ listen = {
+ host = netCfg.listen.host;
+ port = netCfg.listen.port;
+ };
+ tun = {
+ disabled = netCfg.tun.disable;
+ dev = if (netCfg.tun.device != null) then netCfg.tun.device else "nebula.${netName}";
+ };
+ firewall = {
+ inbound = netCfg.firewall.inbound;
+ outbound = netCfg.firewall.outbound;
+ };
+ } netCfg.settings;
+ configFile = format.generate "nebula-config-${netName}.yml" settings;
+ in
+ {
+ # Create systemd service for Nebula.
+ "nebula@${netName}" = {
+ description = "Nebula VPN service for ${netName}";
+ wants = [ "basic.target" ];
+ after = [ "basic.target" "network.target" ];
+ before = [ "sshd.service" ];
+ wantedBy = [ "multi-user.target" ];
+ serviceConfig = mkMerge [
+ {
+ Type = "simple";
+ Restart = "always";
+ ExecStart = "${netCfg.package}/bin/nebula -config ${configFile}";
+ }
+ # The service needs to launch as root to access the tun device, if it's enabled.
+ (mkIf netCfg.tun.disable {
+ User = networkId;
+ Group = networkId;
+ })
+ ];
+ };
+ }) enabledNetworks);
+
+ # Open the chosen ports for UDP.
+ networking.firewall.allowedUDPPorts =
+ unique (mapAttrsToList (netName: netCfg: netCfg.listen.port) enabledNetworks);
+
+ # Create the service users and groups.
+ users.users = mkMerge (mapAttrsToList (netName: netCfg:
+ mkIf netCfg.tun.disable {
+ ${nameToId netName} = {
+ group = nameToId netName;
+ description = "Nebula service user for network ${netName}";
+ isSystemUser = true;
+ };
+ }) enabledNetworks);
+
+ users.groups = mkMerge (mapAttrsToList (netName: netCfg:
+ mkIf netCfg.tun.disable {
+ ${nameToId netName} = {};
+ }) enabledNetworks);
+ };
+}
diff --git a/nixos/modules/services/networking/quagga.nix b/nixos/modules/services/networking/quagga.nix
deleted file mode 100644
index 7c169fe62d8..00000000000
--- a/nixos/modules/services/networking/quagga.nix
+++ /dev/null
@@ -1,185 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-let
-
- cfg = config.services.quagga;
-
- services = [ "babel" "bgp" "isis" "ospf6" "ospf" "pim" "rip" "ripng" ];
- allServices = services ++ [ "zebra" ];
-
- isEnabled = service: cfg.${service}.enable;
-
- daemonName = service: if service == "zebra" then service else "${service}d";
-
- configFile = service:
- let
- scfg = cfg.${service};
- in
- if scfg.configFile != null then scfg.configFile
- else pkgs.writeText "${daemonName service}.conf"
- ''
- ! Quagga ${daemonName service} configuration
- !
- hostname ${config.networking.hostName}
- log syslog
- service password-encryption
- !
- ${scfg.config}
- !
- end
- '';
-
- serviceOptions = service:
- {
- enable = mkEnableOption "the Quagga ${toUpper service} routing protocol";
-
- configFile = mkOption {
- type = types.nullOr types.path;
- default = null;
- example = "/etc/quagga/${daemonName service}.conf";
- description = ''
- Configuration file to use for Quagga ${daemonName service}.
- By default the NixOS generated files are used.
- '';
- };
-
- config = mkOption {
- type = types.lines;
- default = "";
- example =
- let
- examples = {
- rip = ''
- router rip
- network 10.0.0.0/8
- '';
-
- ospf = ''
- router ospf
- network 10.0.0.0/8 area 0
- '';
-
- bgp = ''
- router bgp 65001
- neighbor 10.0.0.1 remote-as 65001
- '';
- };
- in
- examples.${service} or "";
- description = ''
- ${daemonName service} configuration statements.
- '';
- };
-
- vtyListenAddress = mkOption {
- type = types.str;
- default = "127.0.0.1";
- description = ''
- Address to bind to for the VTY interface.
- '';
- };
-
- vtyListenPort = mkOption {
- type = types.nullOr types.int;
- default = null;
- description = ''
- TCP Port to bind to for the VTY interface.
- '';
- };
- };
-
-in
-
-{
-
- ###### interface
- imports = [
- {
- options.services.quagga = {
- zebra = (serviceOptions "zebra") // {
- enable = mkOption {
- type = types.bool;
- default = any isEnabled services;
- description = ''
- Whether to enable the Zebra routing manager.
-
- The Zebra routing manager is automatically enabled
- if any routing protocols are configured.
- '';
- };
- };
- };
- }
- { options.services.quagga = (genAttrs services serviceOptions); }
- ];
-
- ###### implementation
-
- config = mkIf (any isEnabled allServices) {
-
- environment.systemPackages = [
- pkgs.quagga # for the vtysh tool
- ];
-
- users.users.quagga = {
- description = "Quagga daemon user";
- isSystemUser = true;
- group = "quagga";
- };
-
- users.groups = {
- quagga = {};
- # Members of the quaggavty group can use vtysh to inspect the Quagga daemons
- quaggavty = { members = [ "quagga" ]; };
- };
-
- systemd.services =
- let
- quaggaService = service:
- let
- scfg = cfg.${service};
- daemon = daemonName service;
- in
- nameValuePair daemon ({
- wantedBy = [ "multi-user.target" ];
- restartTriggers = [ (configFile service) ];
-
- serviceConfig = {
- Type = "forking";
- PIDFile = "/run/quagga/${daemon}.pid";
- ExecStart = "@${pkgs.quagga}/libexec/quagga/${daemon} ${daemon} -d -f ${configFile service}"
- + optionalString (scfg.vtyListenAddress != "") " -A ${scfg.vtyListenAddress}"
- + optionalString (scfg.vtyListenPort != null) " -P ${toString scfg.vtyListenPort}";
- ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
- Restart = "on-abort";
- };
- } // (
- if service == "zebra" then
- {
- description = "Quagga Zebra routing manager";
- unitConfig.Documentation = "man:zebra(8)";
- after = [ "network.target" ];
- preStart = ''
- install -m 0755 -o quagga -g quagga -d /run/quagga
-
- ${pkgs.iproute2}/bin/ip route flush proto zebra
- '';
- }
- else
- {
- description = "Quagga ${toUpper service} routing daemon";
- unitConfig.Documentation = "man:${daemon}(8) man:zebra(8)";
- bindsTo = [ "zebra.service" ];
- after = [ "network.target" "zebra.service" ];
- }
- ));
- in
- listToAttrs (map quaggaService (filter isEnabled allServices));
-
- };
-
- meta.maintainers = with lib.maintainers; [ tavyc ];
-
-}
diff --git a/nixos/modules/services/security/oauth2_proxy.nix b/nixos/modules/services/security/oauth2_proxy.nix
index 77c579279ab..e85fd4b75df 100644
--- a/nixos/modules/services/security/oauth2_proxy.nix
+++ b/nixos/modules/services/security/oauth2_proxy.nix
@@ -90,10 +90,10 @@ in
package = mkOption {
type = types.package;
- default = pkgs.oauth2_proxy;
- defaultText = "pkgs.oauth2_proxy";
+ default = pkgs.oauth2-proxy;
+ defaultText = "pkgs.oauth2-proxy";
description = ''
- The package that provides oauth2_proxy.
+ The package that provides oauth2-proxy.
'';
};
diff --git a/nixos/modules/services/web-servers/nginx/default.nix b/nixos/modules/services/web-servers/nginx/default.nix
index 7591ad0c3d2..51c2f3febdc 100644
--- a/nixos/modules/services/web-servers/nginx/default.nix
+++ b/nixos/modules/services/web-servers/nginx/default.nix
@@ -249,7 +249,15 @@ let
+ optionalString (ssl && vhost.http2) "http2 "
+ optionalString vhost.default "default_server "
+ optionalString (extraParameters != []) (concatStringsSep " " extraParameters)
- + ";";
+ + ";"
+ + (if ssl && vhost.http3 then ''
+ # UDP listener for **QUIC+HTTP/3
+ listen ${addr}:${toString port} http3 reuseport;
+ # Advertise that HTTP/3 is available
+ add_header Alt-Svc 'h3=":443"';
+ # Sent when QUIC was used
+ add_header QUIC-Status $quic;
+ '' else "");
redirectListen = filter (x: !x.ssl) defaultListen;
@@ -676,6 +684,7 @@ in
Defines the address and other parameters of the upstream servers.
'';
default = {};
+ example = { "127.0.0.1:8000" = {}; };
};
extraConfig = mkOption {
type = types.lines;
@@ -690,6 +699,14 @@ in
Defines a group of servers to use as proxy target.
'';
default = {};
+ example = literalExample ''
+ "backend_server" = {
+ servers = { "127.0.0.1:8000" = {}; };
+ extraConfig = ''''
+ keepalive 16;
+ '''';
+ };
+ '';
};
virtualHosts = mkOption {
diff --git a/nixos/modules/services/web-servers/nginx/vhost-options.nix b/nixos/modules/services/web-servers/nginx/vhost-options.nix
index cf211ea9a71..1f5fe6a368c 100644
--- a/nixos/modules/services/web-servers/nginx/vhost-options.nix
+++ b/nixos/modules/services/web-servers/nginx/vhost-options.nix
@@ -151,6 +151,19 @@ with lib;
'';
};
+ http3 = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to enable HTTP 3.
+ This requires using pkgs.nginxQuic package
+ which can be achived by setting services.nginx.package = pkgs.nginxQuic;.
+ Note that HTTP 3 support is experimental and
+ *not* yet recommended for production.
+ Read more at https://quic.nginx.org/
+ '';
+ };
+
root = mkOption {
type = types.nullOr types.path;
default = null;
diff --git a/nixos/modules/tasks/cpu-freq.nix b/nixos/modules/tasks/cpu-freq.nix
index 513382936e4..f1219c07c50 100644
--- a/nixos/modules/tasks/cpu-freq.nix
+++ b/nixos/modules/tasks/cpu-freq.nix
@@ -19,7 +19,7 @@ in
default = null;
example = "ondemand";
description = ''
- Configure the governor used to regulate the frequence of the
+ Configure the governor used to regulate the frequency of the
available CPUs. By default, the kernel configures the
performance governor, although this may be overwritten in your
hardware-configuration.nix file.
diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix
index 97fab6f11ea..21c30305188 100644
--- a/nixos/modules/tasks/filesystems/zfs.nix
+++ b/nixos/modules/tasks/filesystems/zfs.nix
@@ -446,7 +446,8 @@ in
'') rootPools));
};
- boot.loader.grub = mkIf inInitrd {
+ # TODO FIXME See https://github.com/NixOS/nixpkgs/pull/99386#issuecomment-798813567. To not break people's bootloader and as probably not everybody would read release notes that thoroughly add inSystem.
+ boot.loader.grub = mkIf (inInitrd || inSystem) {
zfsSupport = true;
};
diff --git a/nixos/modules/virtualisation/azure-image.nix b/nixos/modules/virtualisation/azure-image.nix
index 60fed3222ef..03dd3c05130 100644
--- a/nixos/modules/virtualisation/azure-image.nix
+++ b/nixos/modules/virtualisation/azure-image.nix
@@ -9,8 +9,9 @@ in
options = {
virtualisation.azureImage.diskSize = mkOption {
- type = with types; int;
- default = 2048;
+ type = with types; either (enum [ "auto" ]) int;
+ default = "auto";
+ example = 2048;
description = ''
Size of disk image. Unit is MB.
'';
diff --git a/nixos/modules/virtualisation/digital-ocean-image.nix b/nixos/modules/virtualisation/digital-ocean-image.nix
index b582e235d43..0ff2ee591f2 100644
--- a/nixos/modules/virtualisation/digital-ocean-image.nix
+++ b/nixos/modules/virtualisation/digital-ocean-image.nix
@@ -10,8 +10,9 @@ in
options = {
virtualisation.digitalOceanImage.diskSize = mkOption {
- type = with types; int;
- default = 4096;
+ type = with types; either (enum [ "auto" ]) int;
+ default = "auto";
+ example = 4096;
description = ''
Size of disk image. Unit is MB.
'';
diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix
index e2332df611a..79c3921669e 100644
--- a/nixos/modules/virtualisation/google-compute-image.nix
+++ b/nixos/modules/virtualisation/google-compute-image.nix
@@ -18,8 +18,9 @@ in
options = {
virtualisation.googleComputeImage.diskSize = mkOption {
- type = with types; int;
- default = 1536;
+ type = with types; either (enum [ "auto" ]) int;
+ default = "auto";
+ example = 1536;
description = ''
Size of disk image. Unit is MB.
'';
diff --git a/nixos/modules/virtualisation/hyperv-image.nix b/nixos/modules/virtualisation/hyperv-image.nix
index fabc9113dfc..6845d675009 100644
--- a/nixos/modules/virtualisation/hyperv-image.nix
+++ b/nixos/modules/virtualisation/hyperv-image.nix
@@ -9,8 +9,9 @@ in {
options = {
hyperv = {
baseImageSize = mkOption {
- type = types.int;
- default = 2048;
+ type = with types; either (enum [ "auto" ]) int;
+ default = "auto";
+ example = 2048;
description = ''
The size of the hyper-v base image in MiB.
'';
diff --git a/nixos/modules/virtualisation/oci-containers.nix b/nixos/modules/virtualisation/oci-containers.nix
index 2dd15e3aba4..ad436ed3014 100644
--- a/nixos/modules/virtualisation/oci-containers.nix
+++ b/nixos/modules/virtualisation/oci-containers.nix
@@ -59,6 +59,18 @@ let
'';
};
+ environmentFiles = mkOption {
+ type = with types; listOf path;
+ default = [];
+ description = "Environment files for this container.";
+ example = literalExample ''
+ [
+ /path/to/.env
+ /path/to/.env.secret
+ ]
+ '';
+ };
+
log-driver = mkOption {
type = types.str;
default = "journald";
@@ -236,6 +248,7 @@ let
] ++ optional (container.entrypoint != null)
"--entrypoint=${escapeShellArg container.entrypoint}"
++ (mapAttrsToList (k: v: "-e ${escapeShellArg k}=${escapeShellArg v}") container.environment)
+ ++ map (f: "--env-file ${escapeShellArg f}") container.environmentFiles
++ map (p: "-p ${escapeShellArg p}") container.ports
++ optional (container.user != null) "-u ${escapeShellArg container.user}"
++ map (v: "-v ${escapeShellArg v}") container.volumes
diff --git a/nixos/modules/virtualisation/virtualbox-image.nix b/nixos/modules/virtualisation/virtualbox-image.nix
index fa580e8b42d..071edda8269 100644
--- a/nixos/modules/virtualisation/virtualbox-image.nix
+++ b/nixos/modules/virtualisation/virtualbox-image.nix
@@ -11,8 +11,9 @@ in {
options = {
virtualbox = {
baseImageSize = mkOption {
- type = types.int;
- default = 50 * 1024;
+ type = with types; either (enum [ "auto" ]) int;
+ default = "auto";
+ example = 50 * 1024;
description = ''
The size of the VirtualBox base image in MiB.
'';
diff --git a/nixos/modules/virtualisation/vmware-image.nix b/nixos/modules/virtualisation/vmware-image.nix
index 9da9e145f7a..f6cd12e2bb7 100644
--- a/nixos/modules/virtualisation/vmware-image.nix
+++ b/nixos/modules/virtualisation/vmware-image.nix
@@ -18,8 +18,9 @@ in {
options = {
vmware = {
baseImageSize = mkOption {
- type = types.int;
- default = 2048;
+ type = with types; either (enum [ "auto" ]) int;
+ default = "auto";
+ example = 2048;
description = ''
The size of the VMWare base image in MiB.
'';
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 47384cf5a8a..a6a1c5619b0 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -262,6 +262,7 @@ in
nat.standalone = handleTest ./nat.nix { withFirewall = false; };
ncdns = handleTest ./ncdns.nix {};
ndppd = handleTest ./ndppd.nix {};
+ nebula = handleTest ./nebula.nix {};
neo4j = handleTest ./neo4j.nix {};
netdata = handleTest ./netdata.nix {};
networking.networkd = handleTest ./networking.nix { networkd = true; };
@@ -341,7 +342,6 @@ in
proxy = handleTest ./proxy.nix {};
pt2-clone = handleTest ./pt2-clone.nix {};
qboot = handleTestOn ["x86_64-linux" "i686-linux"] ./qboot.nix {};
- quagga = handleTest ./quagga.nix {};
quorum = handleTest ./quorum.nix {};
rabbitmq = handleTest ./rabbitmq.nix {};
radarr = handleTest ./radarr.nix {};
diff --git a/nixos/tests/mxisd.nix b/nixos/tests/mxisd.nix
index 22755ea353b..354612a8a53 100644
--- a/nixos/tests/mxisd.nix
+++ b/nixos/tests/mxisd.nix
@@ -6,25 +6,16 @@ import ./make-test-python.nix ({ pkgs, ... } : {
};
nodes = {
- server_mxisd = args : {
+ server = args : {
services.mxisd.enable = true;
services.mxisd.matrix.domain = "example.org";
};
-
- server_ma1sd = args : {
- services.mxisd.enable = true;
- services.mxisd.matrix.domain = "example.org";
- services.mxisd.package = pkgs.ma1sd;
- };
};
testScript = ''
start_all()
- server_mxisd.wait_for_unit("mxisd.service")
- server_mxisd.wait_for_open_port(8090)
- server_mxisd.succeed("curl -Ssf 'http://127.0.0.1:8090/_matrix/identity/api/v1'")
- server_ma1sd.wait_for_unit("mxisd.service")
- server_ma1sd.wait_for_open_port(8090)
- server_ma1sd.succeed("curl -Ssf 'http://127.0.0.1:8090/_matrix/identity/api/v1'")
+ server.wait_for_unit("mxisd.service")
+ server.wait_for_open_port(8090)
+ server.succeed("curl -Ssf 'http://127.0.0.1:8090/_matrix/identity/api/v1'")
'';
})
diff --git a/nixos/tests/nebula.nix b/nixos/tests/nebula.nix
new file mode 100644
index 00000000000..372cfebdf80
--- /dev/null
+++ b/nixos/tests/nebula.nix
@@ -0,0 +1,223 @@
+import ./make-test-python.nix ({ pkgs, lib, ... }: let
+
+ # We'll need to be able to trade cert files between nodes via scp.
+ inherit (import ./ssh-keys.nix pkgs)
+ snakeOilPrivateKey snakeOilPublicKey;
+
+ makeNebulaNode = { config, ... }: name: extraConfig: lib.mkMerge [
+ {
+ # Expose nebula for doing cert signing.
+ environment.systemPackages = [ pkgs.nebula ];
+ users.users.root.openssh.authorizedKeys.keys = [ snakeOilPublicKey ];
+ services.openssh.enable = true;
+
+ services.nebula.networks.smoke = {
+ # Note that these paths won't exist when the machine is first booted.
+ ca = "/etc/nebula/ca.crt";
+ cert = "/etc/nebula/${name}.crt";
+ key = "/etc/nebula/${name}.key";
+ listen = { host = "0.0.0.0"; port = 4242; };
+ };
+ }
+ extraConfig
+ ];
+
+in
+{
+ name = "nebula";
+
+ nodes = {
+
+ lighthouse = { ... } @ args:
+ makeNebulaNode args "lighthouse" {
+ networking.interfaces.eth1.ipv4.addresses = [{
+ address = "192.168.1.1";
+ prefixLength = 24;
+ }];
+
+ services.nebula.networks.smoke = {
+ isLighthouse = true;
+ firewall = {
+ outbound = [ { port = "any"; proto = "any"; host = "any"; } ];
+ inbound = [ { port = "any"; proto = "any"; host = "any"; } ];
+ };
+ };
+ };
+
+ node2 = { ... } @ args:
+ makeNebulaNode args "node2" {
+ networking.interfaces.eth1.ipv4.addresses = [{
+ address = "192.168.1.2";
+ prefixLength = 24;
+ }];
+
+ services.nebula.networks.smoke = {
+ staticHostMap = { "10.0.100.1" = [ "192.168.1.1:4242" ]; };
+ isLighthouse = false;
+ lighthouses = [ "10.0.100.1" ];
+ firewall = {
+ outbound = [ { port = "any"; proto = "any"; host = "any"; } ];
+ inbound = [ { port = "any"; proto = "any"; host = "any"; } ];
+ };
+ };
+ };
+
+ node3 = { ... } @ args:
+ makeNebulaNode args "node3" {
+ networking.interfaces.eth1.ipv4.addresses = [{
+ address = "192.168.1.3";
+ prefixLength = 24;
+ }];
+
+ services.nebula.networks.smoke = {
+ staticHostMap = { "10.0.100.1" = [ "192.168.1.1:4242" ]; };
+ isLighthouse = false;
+ lighthouses = [ "10.0.100.1" ];
+ firewall = {
+ outbound = [ { port = "any"; proto = "any"; host = "any"; } ];
+ inbound = [ { port = "any"; proto = "any"; host = "lighthouse"; } ];
+ };
+ };
+ };
+
+ node4 = { ... } @ args:
+ makeNebulaNode args "node4" {
+ networking.interfaces.eth1.ipv4.addresses = [{
+ address = "192.168.1.4";
+ prefixLength = 24;
+ }];
+
+ services.nebula.networks.smoke = {
+ enable = true;
+ staticHostMap = { "10.0.100.1" = [ "192.168.1.1:4242" ]; };
+ isLighthouse = false;
+ lighthouses = [ "10.0.100.1" ];
+ firewall = {
+ outbound = [ { port = "any"; proto = "any"; host = "lighthouse"; } ];
+ inbound = [ { port = "any"; proto = "any"; host = "any"; } ];
+ };
+ };
+ };
+
+ node5 = { ... } @ args:
+ makeNebulaNode args "node5" {
+ networking.interfaces.eth1.ipv4.addresses = [{
+ address = "192.168.1.5";
+ prefixLength = 24;
+ }];
+
+ services.nebula.networks.smoke = {
+ enable = false;
+ staticHostMap = { "10.0.100.1" = [ "192.168.1.1:4242" ]; };
+ isLighthouse = false;
+ lighthouses = [ "10.0.100.1" ];
+ firewall = {
+ outbound = [ { port = "any"; proto = "any"; host = "lighthouse"; } ];
+ inbound = [ { port = "any"; proto = "any"; host = "any"; } ];
+ };
+ };
+ };
+
+ };
+
+ testScript = let
+
+ setUpPrivateKey = name: ''
+ ${name}.succeed(
+ "mkdir -p /root/.ssh",
+ "chown 700 /root/.ssh",
+ "cat '${snakeOilPrivateKey}' > /root/.ssh/id_snakeoil",
+ "chown 600 /root/.ssh/id_snakeoil",
+ )
+ '';
+
+ # From what I can tell, StrictHostKeyChecking=no is necessary for ssh to work between machines.
+ sshOpts = "-oStrictHostKeyChecking=no -oUserKnownHostsFile=/dev/null -oIdentityFile=/root/.ssh/id_snakeoil";
+
+ restartAndCheckNebula = name: ip: ''
+ ${name}.systemctl("restart nebula@smoke.service")
+ ${name}.succeed("ping -c5 ${ip}")
+ '';
+
+ # Create a keypair on the client node, then use the public key to sign a cert on the lighthouse.
+ signKeysFor = name: ip: ''
+ lighthouse.wait_for_unit("sshd.service")
+ ${name}.wait_for_unit("sshd.service")
+ ${name}.succeed(
+ "mkdir -p /etc/nebula",
+ "nebula-cert keygen -out-key /etc/nebula/${name}.key -out-pub /etc/nebula/${name}.pub",
+ "scp ${sshOpts} /etc/nebula/${name}.pub 192.168.1.1:/tmp/${name}.pub",
+ )
+ lighthouse.succeed(
+ 'nebula-cert sign -ca-crt /etc/nebula/ca.crt -ca-key /etc/nebula/ca.key -name "${name}" -groups "${name}" -ip "${ip}" -in-pub /tmp/${name}.pub -out-crt /tmp/${name}.crt',
+ )
+ ${name}.succeed(
+ "scp ${sshOpts} 192.168.1.1:/tmp/${name}.crt /etc/nebula/${name}.crt",
+ "scp ${sshOpts} 192.168.1.1:/etc/nebula/ca.crt /etc/nebula/ca.crt",
+ )
+ '';
+
+ in ''
+ start_all()
+
+ # Create the certificate and sign the lighthouse's keys.
+ ${setUpPrivateKey "lighthouse"}
+ lighthouse.succeed(
+ "mkdir -p /etc/nebula",
+ 'nebula-cert ca -name "Smoke Test" -out-crt /etc/nebula/ca.crt -out-key /etc/nebula/ca.key',
+ 'nebula-cert sign -ca-crt /etc/nebula/ca.crt -ca-key /etc/nebula/ca.key -name "lighthouse" -groups "lighthouse" -ip "10.0.100.1/24" -out-crt /etc/nebula/lighthouse.crt -out-key /etc/nebula/lighthouse.key',
+ )
+
+ # Reboot the lighthouse and verify that the nebula service comes up on boot.
+ # Since rebooting takes a while, we'll just restart the service on the other nodes.
+ lighthouse.shutdown()
+ lighthouse.start()
+ lighthouse.wait_for_unit("nebula@smoke.service")
+ lighthouse.succeed("ping -c5 10.0.100.1")
+
+ # Create keys for node2's nebula service and test that it comes up.
+ ${setUpPrivateKey "node2"}
+ ${signKeysFor "node2" "10.0.100.2/24"}
+ ${restartAndCheckNebula "node2" "10.0.100.2"}
+
+ # Create keys for node3's nebula service and test that it comes up.
+ ${setUpPrivateKey "node3"}
+ ${signKeysFor "node3" "10.0.100.3/24"}
+ ${restartAndCheckNebula "node3" "10.0.100.3"}
+
+ # Create keys for node4's nebula service and test that it comes up.
+ ${setUpPrivateKey "node4"}
+ ${signKeysFor "node4" "10.0.100.4/24"}
+ ${restartAndCheckNebula "node4" "10.0.100.4"}
+
+ # Create keys for node4's nebula service and test that it does not come up.
+ ${setUpPrivateKey "node5"}
+ ${signKeysFor "node5" "10.0.100.5/24"}
+ node5.fail("systemctl status nebula@smoke.service")
+ node5.fail("ping -c5 10.0.100.5")
+
+ # The lighthouse can ping node2 and node3 but not node5
+ lighthouse.succeed("ping -c3 10.0.100.2")
+ lighthouse.succeed("ping -c3 10.0.100.3")
+ lighthouse.fail("ping -c3 10.0.100.5")
+
+ # node2 can ping the lighthouse, but not node3 because of its inbound firewall
+ node2.succeed("ping -c3 10.0.100.1")
+ node2.fail("ping -c3 10.0.100.3")
+
+ # node3 can ping the lighthouse and node2
+ node3.succeed("ping -c3 10.0.100.1")
+ node3.succeed("ping -c3 10.0.100.2")
+
+ # node4 can ping the lighthouse but not node2 or node3
+ node4.succeed("ping -c3 10.0.100.1")
+ node4.fail("ping -c3 10.0.100.2")
+ node4.fail("ping -c3 10.0.100.3")
+
+ # node2 can ping node3 now that node3 pinged it first
+ node2.succeed("ping -c3 10.0.100.3")
+ # node4 can ping node2 if node2 pings it first
+ node2.succeed("ping -c3 10.0.100.4")
+ node4.succeed("ping -c3 10.0.100.2")
+ '';
+})
diff --git a/nixos/tests/packagekit.nix b/nixos/tests/packagekit.nix
index 28d1374bf92..020a4e65e6d 100644
--- a/nixos/tests/packagekit.nix
+++ b/nixos/tests/packagekit.nix
@@ -8,7 +8,6 @@ import ./make-test-python.nix ({ pkgs, ... }: {
environment.systemPackages = with pkgs; [ dbus ];
services.packagekit = {
enable = true;
- backend = "test_nop";
};
};
diff --git a/nixos/tests/quagga.nix b/nixos/tests/quagga.nix
deleted file mode 100644
index 9aed49bf452..00000000000
--- a/nixos/tests/quagga.nix
+++ /dev/null
@@ -1,96 +0,0 @@
-# This test runs Quagga and checks if OSPF routing works.
-#
-# Network topology:
-# [ client ]--net1--[ router1 ]--net2--[ router2 ]--net3--[ server ]
-#
-# All interfaces are in OSPF Area 0.
-
-import ./make-test-python.nix ({ pkgs, ... }:
- let
-
- ifAddr = node: iface: (pkgs.lib.head node.config.networking.interfaces.${iface}.ipv4.addresses).address;
-
- ospfConf = ''
- interface eth2
- ip ospf hello-interval 1
- ip ospf dead-interval 5
- !
- router ospf
- network 192.168.0.0/16 area 0
- '';
-
- in
- {
- name = "quagga";
-
- meta = with pkgs.lib.maintainers; {
- maintainers = [ tavyc ];
- };
-
- nodes = {
-
- client =
- { nodes, ... }:
- {
- virtualisation.vlans = [ 1 ];
- networking.defaultGateway = ifAddr nodes.router1 "eth1";
- };
-
- router1 =
- { ... }:
- {
- virtualisation.vlans = [ 1 2 ];
- boot.kernel.sysctl."net.ipv4.ip_forward" = "1";
- networking.firewall.extraCommands = "iptables -A nixos-fw -i eth2 -p ospf -j ACCEPT";
- services.quagga.ospf = {
- enable = true;
- config = ospfConf;
- };
- };
-
- router2 =
- { ... }:
- {
- virtualisation.vlans = [ 3 2 ];
- boot.kernel.sysctl."net.ipv4.ip_forward" = "1";
- networking.firewall.extraCommands = "iptables -A nixos-fw -i eth2 -p ospf -j ACCEPT";
- services.quagga.ospf = {
- enable = true;
- config = ospfConf;
- };
- };
-
- server =
- { nodes, ... }:
- {
- virtualisation.vlans = [ 3 ];
- networking.defaultGateway = ifAddr nodes.router2 "eth1";
- networking.firewall.allowedTCPPorts = [ 80 ];
- services.httpd.enable = true;
- services.httpd.adminAddr = "foo@example.com";
- };
- };
-
- testScript =
- { ... }:
- ''
- start_all()
-
- # Wait for the networking to start on all machines
- for machine in client, router1, router2, server:
- machine.wait_for_unit("network.target")
-
- with subtest("Wait for OSPF to form adjacencies"):
- for gw in router1, router2:
- gw.wait_for_unit("ospfd")
- gw.wait_until_succeeds("vtysh -c 'show ip ospf neighbor' | grep Full")
- gw.wait_until_succeeds("vtysh -c 'show ip route' | grep '^O>'")
-
- with subtest("Test ICMP"):
- client.wait_until_succeeds("ping -c 3 server >&2")
-
- with subtest("Test whether HTTP works"):
- server.wait_for_unit("httpd")
- client.succeed("curl --fail http://server/ >&2")
- '';
- })
diff --git a/nixos/tests/searx.nix b/nixos/tests/searx.nix
index 7c28eea30d2..2f808cb6526 100644
--- a/nixos/tests/searx.nix
+++ b/nixos/tests/searx.nix
@@ -108,7 +108,7 @@ import ./make-test-python.nix ({ pkgs, ...} :
"${pkgs.curl}/bin/curl --fail http://localhost/searx >&2"
)
fancy.succeed(
- "${pkgs.curl}/bin/curl --fail http://localhost/searx/static/js/bootstrap.min.js >&2"
+ "${pkgs.curl}/bin/curl --fail http://localhost/searx/static/themes/oscar/js/bootstrap.min.js >&2"
)
'';
})
diff --git a/pkgs/applications/audio/apple-music-electron/default.nix b/pkgs/applications/audio/apple-music-electron/default.nix
index e4d43d7f01f..850f644afc3 100644
--- a/pkgs/applications/audio/apple-music-electron/default.nix
+++ b/pkgs/applications/audio/apple-music-electron/default.nix
@@ -18,7 +18,7 @@ in appimageTools.wrapType2 {
install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications
substituteInPlace $out/share/applications/${pname}.desktop \
- --replace "Exec=AppRun" "Exec=$out/bin/apple-music-electron"
+ --replace 'Exec=AppRun' 'Exec=${pname}'
cp -r ${appimageContents}/usr/share/icons $out/share
'';
diff --git a/pkgs/applications/audio/cd-discid/default.nix b/pkgs/applications/audio/cd-discid/default.nix
index 109ce1295b4..16c574e8d03 100644
--- a/pkgs/applications/audio/cd-discid/default.nix
+++ b/pkgs/applications/audio/cd-discid/default.nix
@@ -18,7 +18,6 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "http://linukz.org/cd-discid.shtml";
license = licenses.gpl2Plus;
- maintainers = [ maintainers.rycee ];
platforms = platforms.unix;
description = "Command-line utility to get CDDB discid information from a CD-ROM disc";
diff --git a/pkgs/applications/audio/hydrogen/default.nix b/pkgs/applications/audio/hydrogen/default.nix
index e794726e050..490591ec9e6 100644
--- a/pkgs/applications/audio/hydrogen/default.nix
+++ b/pkgs/applications/audio/hydrogen/default.nix
@@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "hydrogen";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchFromGitHub {
owner = "hydrogen-music";
repo = pname;
rev = version;
- sha256 = "0snljpvbcgikhz610c325dgvayi0k512p3bglck9vvi90wsqx7l1";
+ sha256 = "sha256-t3f+T1QTNbuJnWmD+q0yPgQxXPXvl91lZN17pKUVFlo=";
};
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Advanced drum machine";
homepage = "http://www.hydrogen-music.org";
- license = licenses.gpl2;
+ license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ goibhniu orivej ];
};
diff --git a/pkgs/applications/audio/mpg123/default.nix b/pkgs/applications/audio/mpg123/default.nix
index a3e5b3e50eb..153e8b9940b 100644
--- a/pkgs/applications/audio/mpg123/default.nix
+++ b/pkgs/applications/audio/mpg123/default.nix
@@ -1,9 +1,9 @@
{ lib, stdenv
, fetchurl
, makeWrapper
-
, alsaLib
, perl
+, withConplay ? !stdenv.targetPlatform.isWindows
}:
stdenv.mkDerivation rec {
@@ -14,35 +14,36 @@ stdenv.mkDerivation rec {
sha256 = "sha256-UCqX4Nk1vn432YczgCHY8wG641wohPKoPVnEtSRm7wY=";
};
- outputs = [ "out" "conplay" ];
+ outputs = [ "out" ] ++ lib.optionals withConplay [ "conplay" ];
- nativeBuildInputs = [ makeWrapper ];
+ nativeBuildInputs = lib.optionals withConplay [ makeWrapper ];
- buildInputs = [ perl ] ++ lib.optional (!stdenv.isDarwin) alsaLib;
+ buildInputs = lib.optionals withConplay [ perl ]
+ ++ lib.optionals (!stdenv.isDarwin && !stdenv.targetPlatform.isWindows) [ alsaLib ];
configureFlags = lib.optional
(stdenv.hostPlatform ? mpg123)
"--with-cpu=${stdenv.hostPlatform.mpg123.cpu}";
- postInstall = ''
+ postInstall = lib.optionalString withConplay ''
mkdir -p $conplay/bin
mv scripts/conplay $conplay/bin/
'';
- preFixup = ''
+ preFixup = lib.optionalString withConplay ''
patchShebangs $conplay/bin/conplay
'';
- postFixup = ''
+ postFixup = lib.optionalString withConplay ''
wrapProgram $conplay/bin/conplay \
--prefix PATH : $out/bin
'';
- meta = {
+ meta = with lib; {
description = "Fast console MPEG Audio Player and decoder library";
- homepage = "http://mpg123.org";
- license = lib.licenses.lgpl21;
- maintainers = [ lib.maintainers.ftrvxmtrx ];
- platforms = lib.platforms.unix;
+ homepage = "https://mpg123.org";
+ license = licenses.lgpl21;
+ maintainers = [ maintainers.ftrvxmtrx ];
+ platforms = platforms.all;
};
}
diff --git a/pkgs/applications/audio/mpg321/default.nix b/pkgs/applications/audio/mpg321/default.nix
index 0079947438c..37f647a4a47 100644
--- a/pkgs/applications/audio/mpg321/default.nix
+++ b/pkgs/applications/audio/mpg321/default.nix
@@ -37,7 +37,6 @@ stdenv.mkDerivation rec {
description = "Command-line MP3 player";
homepage = "http://mpg321.sourceforge.net/";
license = licenses.gpl2;
- maintainers = [ maintainers.rycee ];
platforms = platforms.gnu ++ platforms.linux;
};
}
diff --git a/pkgs/applications/audio/myxer/default.nix b/pkgs/applications/audio/myxer/default.nix
new file mode 100644
index 00000000000..0aa3727f797
--- /dev/null
+++ b/pkgs/applications/audio/myxer/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+, pkg-config
+, libpulseaudio
+, glib
+, pango
+, gtk3
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "myxer";
+ version = "1.2.1";
+
+ src = fetchFromGitHub {
+ owner = "Aurailus";
+ repo = pname;
+ rev = version;
+ sha256 = "0bnhpzmx4yyasv0j7bp31q6jm20p0qwcia5bzmpkz1jhnc27ngix";
+ };
+
+ cargoSha256 = "1cyh0nk627sgyr78rcnhj7af5jcahvjkiv5sz7xwqfdhvx5kqsk5";
+
+ nativeBuildInputs = [ pkg-config ];
+
+ buildInputs = [ libpulseaudio glib pango gtk3 ];
+
+ # Currently no tests are implemented, so we avoid building the package twice
+ doCheck = false;
+
+ meta = with lib; {
+ description = "A modern Volume Mixer for PulseAudio";
+ homepage = "https://github.com/Aurailus/Myxer";
+ license = licenses.gpl3Only;
+ maintainers = with maintainers; [ erin ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/audio/nuclear/default.nix b/pkgs/applications/audio/nuclear/default.nix
index 6b2a5b67122..e107f44cf6f 100644
--- a/pkgs/applications/audio/nuclear/default.nix
+++ b/pkgs/applications/audio/nuclear/default.nix
@@ -18,7 +18,7 @@ in appimageTools.wrapType2 {
install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications
substituteInPlace $out/share/applications/${pname}.desktop \
- --replace 'Exec=AppRun' 'Exec=$out/bin/nuclear'
+ --replace 'Exec=AppRun' 'Exec=${pname}'
cp -r ${appimageContents}/usr/share/icons $out/share
'';
diff --git a/pkgs/applications/audio/plexamp/default.nix b/pkgs/applications/audio/plexamp/default.nix
index cb682f91b6d..47b74cc865b 100644
--- a/pkgs/applications/audio/plexamp/default.nix
+++ b/pkgs/applications/audio/plexamp/default.nix
@@ -25,7 +25,7 @@ in appimageTools.wrapType2 {
install -m 444 -D ${appimageContents}/plexamp.desktop $out/share/applications/plexamp.desktop
install -m 444 -D ${appimageContents}/plexamp.png \
$out/share/icons/hicolor/512x512/apps/plexamp.png
- substituteInPlace $out/share/applications/plexamp.desktop \
+ substituteInPlace $out/share/applications/${pname}.desktop \
--replace 'Exec=AppRun' 'Exec=${pname}'
'';
diff --git a/pkgs/applications/audio/ptcollab/default.nix b/pkgs/applications/audio/ptcollab/default.nix
index 36495986201..f5752dd96f4 100644
--- a/pkgs/applications/audio/ptcollab/default.nix
+++ b/pkgs/applications/audio/ptcollab/default.nix
@@ -1,26 +1,40 @@
{ mkDerivation
-, lib, stdenv
+, lib
+, stdenv
, fetchFromGitHub
+, nix-update-script
, qmake
, qtbase
, qtmultimedia
, libvorbis
+, rtmidi
}:
mkDerivation rec {
pname = "ptcollab";
- version = "0.3.5.1";
+ version = "0.4.0";
src = fetchFromGitHub {
owner = "yuxshao";
repo = "ptcollab";
rev = "v${version}";
- sha256 = "1ahfxjm1chz8k65rs7rgn4s2bgippq58fjcxl8fr21pzn718wqf1";
+ sha256 = "1yfnf47saxxj17x0vyxihr343kp7gz3fashzky79j80sqlm6ng85";
};
+ postPatch = ''
+ substituteInPlace src/editor.pro \
+ --replace '/usr/include/rtmidi' '${rtmidi}/include/rtmidi'
+ '';
+
nativeBuildInputs = [ qmake ];
- buildInputs = [ qtbase qtmultimedia libvorbis ];
+ buildInputs = [ qtbase qtmultimedia libvorbis rtmidi ];
+
+ passthru = {
+ updateScript = nix-update-script {
+ attrPath = pname;
+ };
+ };
meta = with lib; {
description = "Experimental pxtone editor where you can collaborate with friends";
diff --git a/pkgs/applications/audio/sublime-music/default.nix b/pkgs/applications/audio/sublime-music/default.nix
index f584b13a292..15963faf06b 100644
--- a/pkgs/applications/audio/sublime-music/default.nix
+++ b/pkgs/applications/audio/sublime-music/default.nix
@@ -1,4 +1,12 @@
-{ fetchFromGitLab, lib, python3Packages, gobject-introspection, gtk3, pango, wrapGAppsHook
+{ fetchFromGitLab
+, fetchpatch
+, lib
+, python3Packages
+, gobject-introspection
+, gtk3
+, pango
+, wrapGAppsHook
+, xvfb_run
, chromecastSupport ? false
, serverSupport ? false
, keyringSupport ? true
@@ -8,18 +16,29 @@
python3Packages.buildPythonApplication rec {
pname = "sublime-music";
- version = "0.11.10";
+ version = "0.11.11";
+ format = "pyproject";
src = fetchFromGitLab {
owner = "sublime-music";
repo = pname;
rev = "v${version}";
- sha256 = "1g78gmiywg07kaywfc9q0yab2bzxs936vb3157ni1z0flbmcwrry";
+ sha256 = "sha256-r4Tn/7CGDny8Aa4kF4PM5ZKMYthMJ7801X3zPdvXh4Q=";
};
+ patches = [
+ # Switch to poetry-core:
+ # https://gitlab.com/sublime-music/sublime-music/-/merge_requests/60
+ (fetchpatch {
+ name = "use-poetry-core.patch";
+ url = "https://gitlab.com/sublime-music/sublime-music/-/commit/9b0af19dbdfdcc5a0fa23e73bb34c7135a8c2855.patch";
+ sha256 = "sha256-cXG0RvrnBpme6yKWM0nfqMqoK0qPT6spflJ9AaaslVg=";
+ })
+ ];
+
nativeBuildInputs = [
gobject-introspection
- python3Packages.setuptools
+ python3Packages.poetry-core
wrapGAppsHook
];
@@ -53,8 +72,14 @@ python3Packages.buildPythonApplication rec {
# https://github.com/NixOS/nixpkgs/issues/56943
strictDeps = false;
- # no tests
- doCheck = false;
+ # Use the test suite provided by the upstream project.
+ checkInputs = with python3Packages; [
+ pytest
+ pytest-cov
+ ];
+ checkPhase = "${xvfb_run}/bin/xvfb-run pytest";
+
+ # Also run the python import check for sanity
pythonImportsCheck = [ "sublime_music" ];
postInstall = ''
diff --git a/pkgs/applications/audio/whipper/default.nix b/pkgs/applications/audio/whipper/default.nix
index 97d42eb9c69..3405cf99ddd 100644
--- a/pkgs/applications/audio/whipper/default.nix
+++ b/pkgs/applications/audio/whipper/default.nix
@@ -55,7 +55,7 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; {
homepage = "https://github.com/whipper-team/whipper";
description = "A CD ripper aiming for accuracy over speed";
- maintainers = with maintainers; [ rycee emily ];
+ maintainers = with maintainers; [ emily ];
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
diff --git a/pkgs/applications/blockchains/crypto-org-wallet.nix b/pkgs/applications/blockchains/crypto-org-wallet.nix
index be45967018d..7b0a895f4a1 100644
--- a/pkgs/applications/blockchains/crypto-org-wallet.nix
+++ b/pkgs/applications/blockchains/crypto-org-wallet.nix
@@ -20,7 +20,7 @@ in appimageTools.wrapType2 rec {
${imagemagick}/bin/convert ${appimageContents}/${pname}.png -resize 512x512 ${pname}_512.png
install -m 444 -D ${pname}_512.png $out/share/icons/hicolor/512x512/apps/${pname}.png
substituteInPlace $out/share/applications/${pname}.desktop \
- --replace 'Exec=AppRun --no-sandbox %U' "Exec=$out/bin/${pname}"
+ --replace 'Exec=AppRun --no-sandbox %U' 'Exec=${pname} %U'
'';
meta = with lib; {
diff --git a/pkgs/applications/blockchains/openethereum/default.nix b/pkgs/applications/blockchains/openethereum/default.nix
index 5b51d162d0f..82b6f2c1adb 100644
--- a/pkgs/applications/blockchains/openethereum/default.nix
+++ b/pkgs/applications/blockchains/openethereum/default.nix
@@ -12,16 +12,16 @@
rustPlatform.buildRustPackage rec {
pname = "openethereum";
- version = "3.2.3";
+ version = "3.2.4";
src = fetchFromGitHub {
owner = "openethereum";
repo = "openethereum";
rev = "v${version}";
- sha256 = "1j7wfgpnvf9pcprd53sbd3pa7yz9588z81i1bx12wmj1fja3xa0j";
+ sha256 = "143w0b0ff1s73qzr844l25w90d2y2z0b3w2fr5kkbc1wsnpcq7jp";
};
- cargoSha256 = "0ha18caw8mxzrh984y2z148cmdijrjxf0rc8j4ccwvmrbdsaz1xn";
+ cargoSha256 = "1gm02pcfll362add8a0dcb0sk0mag8z0q23b87yb6fs870bqvhib";
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
nativeBuildInputs = [
diff --git a/pkgs/applications/blockchains/trezor-suite/default.nix b/pkgs/applications/blockchains/trezor-suite/default.nix
index 098a948c845..68b83aff88d 100644
--- a/pkgs/applications/blockchains/trezor-suite/default.nix
+++ b/pkgs/applications/blockchains/trezor-suite/default.nix
@@ -35,7 +35,8 @@ appimageTools.wrapType2 rec {
install -m 444 -D ${appimageContents}/${pname}.desktop $out/share/applications/${pname}.desktop
install -m 444 -D ${appimageContents}/${pname}.png $out/share/icons/hicolor/512x512/apps/${pname}.png
install -m 444 -D ${appimageContents}/resources/images/icons/512x512.png $out/share/icons/hicolor/512x512/apps/${pname}.png
- substituteInPlace $out/share/applications/trezor-suite.desktop --replace 'Exec=AppRun' 'Exec=${pname}'
+ substituteInPlace $out/share/applications/${pname}.desktop \
+ --replace 'Exec=AppRun' 'Exec=${pname}'
# symlink system binaries instead bundled ones
mkdir -p $out/share/${pname}/resources/bin/{bridge,tor}
diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix
index 2f97e361322..dc86ebca214 100644
--- a/pkgs/applications/editors/eclipse/plugins.nix
+++ b/pkgs/applications/editors/eclipse/plugins.nix
@@ -110,7 +110,6 @@ rec {
description = "Provides fast jumps to text based on initial letter";
license = licenses.mit;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -133,7 +132,6 @@ rec {
description = "Adds support for ANSI escape sequences in the Eclipse console";
license = licenses.asl20;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -156,7 +154,6 @@ rec {
homepage = "https://www.antlr.org/";
license = licenses.bsd3;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -179,7 +176,6 @@ rec {
homepage = "https://www.antlr.org/";
license = licenses.bsd3;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -202,7 +198,6 @@ rec {
description = "Adds new tools to the context menu of text-based editors";
license = licenses.epl10;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -225,7 +220,6 @@ rec {
description = "Show file encoding and line ending for the active editor in the eclipse status bar";
license = licenses.epl10;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -248,7 +242,6 @@ rec {
description = "Shows disassembled bytecode of current java editor or class file";
license = licenses.bsd2;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -287,7 +280,6 @@ rec {
description = "Checkstyle integration into the Eclipse IDE";
license = licenses.lgpl21;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -311,7 +303,6 @@ rec {
description = "Plugin to switch color themes conveniently and without side effects";
license = licenses.epl10;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -386,7 +377,6 @@ rec {
description = "EclEmma is a free Java code coverage tool for Eclipse";
license = licenses.epl10;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -409,7 +399,6 @@ rec {
description = "Plugin that uses static analysis to look for bugs in Java code";
license = licenses.epl10;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -482,7 +471,6 @@ rec {
homepage = "https://github.com/boothen/Json-Eclipse-Plugin";
license = licenses.epl10;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -501,7 +489,6 @@ rec {
description = "Eclipse Java development tools";
license = licenses.epl10;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -524,7 +511,6 @@ rec {
description = "Provides JDT Java CodeMining";
license = licenses.epl10;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -567,7 +553,6 @@ rec {
description = "The Scala IDE for Eclipse";
license = licenses.bsd3;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -586,7 +571,6 @@ rec {
description = "Plugin that uses static analysis to look for bugs in Java code";
license = licenses.lgpl21;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -609,7 +593,6 @@ rec {
description = "Eclipse plugin for the TestNG testing framework";
license = licenses.asl20;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
@@ -654,7 +637,6 @@ rec {
description = "A YAML editor plugin for Eclipse";
license = licenses.epl10;
platforms = platforms.all;
- maintainers = [ maintainers.rycee ];
};
};
diff --git a/pkgs/applications/editors/featherpad/default.nix b/pkgs/applications/editors/featherpad/default.nix
index c73238ce366..42c8e77ac68 100644
--- a/pkgs/applications/editors/featherpad/default.nix
+++ b/pkgs/applications/editors/featherpad/default.nix
@@ -1,23 +1,25 @@
-{ lib, mkDerivation, pkg-config, qmake, qttools, qtbase, qtsvg, qtx11extras, fetchFromGitHub }:
+{ lib, mkDerivation, cmake, hunspell, pkg-config, qttools, qtbase, qtsvg, qtx11extras
+, fetchFromGitHub }:
+
mkDerivation rec {
pname = "featherpad";
- version = "0.10.0";
+ version = "0.18.0";
src = fetchFromGitHub {
owner = "tsujan";
repo = "FeatherPad";
rev = "V${version}";
- sha256 = "1wrbs6kni9s3x39cckm9kzpglryxn5vyarilvh9pafbzpc6rc57p";
+ sha256 = "0av96yx9ir1ap5adn2cvr6n5y7qjrspk73and21m65dmpwlfdiqb";
};
- nativeBuildInputs = [ qmake pkg-config qttools ];
- buildInputs = [ qtbase qtsvg qtx11extras ];
+ nativeBuildInputs = [ cmake pkg-config qttools ];
+ buildInputs = [ hunspell qtbase qtsvg qtx11extras ];
meta = with lib; {
description = "Lightweight Qt5 Plain-Text Editor for Linux";
homepage = "https://github.com/tsujan/FeatherPad";
platforms = platforms.linux;
maintainers = [ maintainers.flosse ];
- license = licenses.gpl3;
+ license = licenses.gpl3Plus;
};
}
diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix
index fff9c8a2de6..1da4a24b3ea 100644
--- a/pkgs/applications/editors/jetbrains/default.nix
+++ b/pkgs/applications/editors/jetbrains/default.nix
@@ -1,6 +1,9 @@
{ lib, stdenv, callPackage, fetchurl
, jdk, cmake, libxml2, zlib, python3, ncurses5
, dotnet-sdk_3
+, autoPatchelfHook
+, glib
+, libdbusmenu
, vmopts ? null
}:
@@ -25,6 +28,15 @@ let
platforms = platforms.linux;
};
}).overrideAttrs (attrs: {
+ nativeBuildInputs = (attrs.nativeBuildInputs or []) ++ optionals (stdenv.isLinux) [
+ autoPatchelfHook
+ ];
+ buildInputs = (attrs.buildInputs or []) ++ optionals (stdenv.isLinux) [
+ python3
+ stdenv.cc.cc
+ libdbusmenu
+ ];
+ dontAutoPatchelf = true;
postFixup = (attrs.postFixup or "") + optionalString (stdenv.isLinux) ''
(
cd $out/clion-${version}
@@ -32,45 +44,7 @@ let
rm -rf bin/cmake/linux
ln -s ${cmake} bin/cmake/linux
- lldbLibPath=$out/clion-${version}/bin/lldb/linux/lib
- interp="$(cat $NIX_CC/nix-support/dynamic-linker)"
- ln -s ${ncurses5.out}/lib/libtinfo.so.5 $lldbLibPath/libtinfo.so.5
-
- patchelf --set-interpreter $interp \
- --set-rpath "${lib.makeLibraryPath [ libxml2 zlib stdenv.cc.cc.lib ]}:$lldbLibPath" \
- bin/lldb/linux/bin/lldb-server
-
- for i in LLDBFrontend lldb lldb-argdumper; do
- patchelf --set-interpreter $interp \
- --set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib ]}:$lldbLibPath" \
- "bin/lldb/linux/bin/$i"
- done
-
- patchelf \
- --set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib ]}:$lldbLibPath" \
- bin/lldb/linux/lib/python3.*/lib-dynload/zlib.cpython-*-x86_64-linux-gnu.so
-
- patchelf \
- --set-rpath "${lib.makeLibraryPath [ libxml2 zlib stdenv.cc.cc.lib python3 ]}:$lldbLibPath" \
- bin/lldb/linux/lib/liblldb.so
-
- gdbLibPath=$out/clion-${version}/bin/gdb/linux/lib
- patchelf \
- --set-rpath "$gdbLibPath" \
- bin/gdb/linux/lib/python3.*/lib-dynload/zlib.cpython-*-x86_64-linux-gnu.so
- patchelf --set-interpreter $interp \
- --set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib zlib ]}:$gdbLibPath" \
- bin/gdb/linux/bin/gdb
- patchelf --set-interpreter $interp \
- --set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib ]}:$gdbLibPath" \
- bin/gdb/linux/bin/gdbserver
-
- patchelf --set-interpreter $interp \
- --set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib zlib ]}" \
- bin/clang/linux/clangd
- patchelf --set-interpreter $interp \
- --set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib zlib ]}" \
- bin/clang/linux/clang-tidy
+ autoPatchelf $PWD/bin
wrapProgram $out/bin/clion \
--set CL_JDK "${jdk}"
diff --git a/pkgs/applications/editors/kakoune/plugins/generated.nix b/pkgs/applications/editors/kakoune/plugins/generated.nix
index 4fada31a0f5..953c95c4724 100644
--- a/pkgs/applications/editors/kakoune/plugins/generated.nix
+++ b/pkgs/applications/editors/kakoune/plugins/generated.nix
@@ -17,12 +17,12 @@ let
auto-pairs-kak = buildKakounePluginFrom2Nix {
pname = "auto-pairs-kak";
- version = "2020-10-04";
+ version = "2021-03-28";
src = fetchFromGitHub {
owner = "alexherbo2";
repo = "auto-pairs.kak";
- rev = "fd735ec149ef0d9ca5f628a95b1e52858b5afbdc";
- sha256 = "07795kv9njlnp6mckwv141ny2ns6wyf5r0dfjaxh9ngd105zgif1";
+ rev = "526779a26a5cf5f48e7c4f5c5fecca274968a737";
+ sha256 = "0gkhvwxyh8pdfydrj7zkfidk0drrbhvdi1fq3pkzllna3vz8q181";
};
meta.homepage = "https://github.com/alexherbo2/auto-pairs.kak/";
};
@@ -41,16 +41,28 @@ let
fzf-kak = buildKakounePluginFrom2Nix {
pname = "fzf-kak";
- version = "2021-03-15";
+ version = "2021-04-03";
src = fetchFromGitHub {
owner = "andreyorst";
repo = "fzf.kak";
- rev = "4e6c9a857511fccdbbc835a1c9acb205b6486a4c";
- sha256 = "0syhhdlsm7vg6hcd2n2acag9g562z49rbb5smh5p2gnplhmp93i0";
+ rev = "1b3a3beebbe7134e671fde2ef2f4242b34ae2c60";
+ sha256 = "0rsd65zcizbq3isy8576gqw7mcml5ixw84padaz6ndwfif5fv701";
};
meta.homepage = "https://github.com/andreyorst/fzf.kak/";
};
+ kakboard = buildKakounePluginFrom2Nix {
+ pname = "kakboard";
+ version = "2020-05-09";
+ src = fetchFromGitHub {
+ owner = "lePerdu";
+ repo = "kakboard";
+ rev = "2f13f5cd99591b76ad5cba230815b80138825120";
+ sha256 = "1kvnbsv20y09rlnyar87qr0h26i16qsq801krswvxcwhid7ijlvd";
+ };
+ meta.homepage = "https://github.com/lePerdu/kakboard/";
+ };
+
kakoune-buffer-switcher = buildKakounePluginFrom2Nix {
pname = "kakoune-buffer-switcher";
version = "2020-12-27";
@@ -65,12 +77,12 @@ let
kakoune-buffers = buildKakounePluginFrom2Nix {
pname = "kakoune-buffers";
- version = "2020-06-11";
+ version = "2021-04-02";
src = fetchFromGitHub {
owner = "Delapouite";
repo = "kakoune-buffers";
- rev = "67959fbad727ba8470fe8cd6361169560f4fb532";
- sha256 = "09prhzz4yzf6ryw0npd1gpcfp77681vgawpp1ilfvbf25xgbbz33";
+ rev = "7832ea7a4528363482f5684f16cbcebcbec0adfd";
+ sha256 = "196d36jww6asf5zr03l1rwg49kkv16s2d4zyryb2m3zvy7prf2bb";
};
meta.homepage = "https://github.com/Delapouite/kakoune-buffers/";
};
@@ -147,14 +159,26 @@ let
meta.homepage = "https://github.com/mayjs/openscad.kak/";
};
+ pandoc-kak = buildKakounePluginFrom2Nix {
+ pname = "pandoc-kak";
+ version = "2020-11-30";
+ src = fetchFromGitHub {
+ owner = "basbebe";
+ repo = "pandoc.kak";
+ rev = "63979f7e08b86d80436bbe2d9dba173a56057b97";
+ sha256 = "16pmmnpyxf8r7gpj8g1lwa960nscjmcl52n1a7s6xcqkp9856wxs";
+ };
+ meta.homepage = "https://github.com/basbebe/pandoc.kak/";
+ };
+
powerline-kak = buildKakounePluginFrom2Nix {
pname = "powerline-kak";
- version = "2021-02-25";
+ version = "2021-04-06";
src = fetchFromGitHub {
owner = "andreyorst";
repo = "powerline.kak";
- rev = "64ad98b6c85e63345563671b043960464d51c4b0";
- sha256 = "09w2sk19qi64hgsyg4gb407vyppnlgk272mqbinz2r3apy6szkl3";
+ rev = "6fa5ad383f2884f201d6e3ef07a4687c606df525";
+ sha256 = "1s7ggjby0bymq48njzhdvkkarmzl44803xv0dlnzrj7q9c3xv27a";
};
meta.homepage = "https://github.com/andreyorst/powerline.kak/";
};
@@ -197,12 +221,12 @@ let
tabs-kak = buildKakounePluginFrom2Nix {
pname = "tabs-kak";
- version = "2021-02-16";
+ version = "2021-04-14";
src = fetchFromGitHub {
owner = "enricozb";
repo = "tabs.kak";
- rev = "1aaa8cd89e404cbbd76d44ff8089de0951612fbf";
- sha256 = "0dfz6j6yxl65jbh4xvpiy2abr2sdjyalynzhl28y7l1gzqv4ni3j";
+ rev = "048f83455ea7c671ab06e9b9578ac25e5de1d6fb";
+ sha256 = "0xswpsdf1bj54inl6vf2lzbjkxfc6g0fyv5kd6y9ahlh5irij8z0";
};
meta.homepage = "https://github.com/enricozb/tabs.kak/";
};
diff --git a/pkgs/applications/editors/kakoune/plugins/kakoune-plugin-names b/pkgs/applications/editors/kakoune/plugins/kakoune-plugin-names
index b1874146089..6cf7d30f274 100644
--- a/pkgs/applications/editors/kakoune/plugins/kakoune-plugin-names
+++ b/pkgs/applications/editors/kakoune/plugins/kakoune-plugin-names
@@ -3,6 +3,7 @@ alexherbo2/replace-mode.kak
alexherbo2/sleuth.kak
andreyorst/fzf.kak
andreyorst/powerline.kak
+basbebe/pandoc.kak
danr/kakoune-easymotion
Delapouite/kakoune-buffers
Delapouite/kakoune-registers
@@ -11,6 +12,7 @@ greenfork/active-window.kak
kakoune-editor/kakoune-extra-filetypes
kakounedotcom/connect.kak
kakounedotcom/prelude.kak
+lePerdu/kakboard
listentolist/kakoune-rainbow
mayjs/openscad.kak
occivink/kakoune-buffer-switcher
diff --git a/pkgs/applications/editors/neovim/wrapper.nix b/pkgs/applications/editors/neovim/wrapper.nix
index 41ff62a619f..8b42191bde6 100644
--- a/pkgs/applications/editors/neovim/wrapper.nix
+++ b/pkgs/applications/editors/neovim/wrapper.nix
@@ -1,5 +1,4 @@
{ stdenv, symlinkJoin, lib, makeWrapper
-, vimUtils
, writeText
, bundlerEnv, ruby
, nodejs
diff --git a/pkgs/applications/editors/netbeans/default.nix b/pkgs/applications/editors/netbeans/default.nix
index 83c5bb6f930..8931ddc3799 100644
--- a/pkgs/applications/editors/netbeans/default.nix
+++ b/pkgs/applications/editors/netbeans/default.nix
@@ -36,7 +36,8 @@ stdenv.mkDerivation {
makeWrapper $out/netbeans/bin/netbeans $out/bin/netbeans \
--prefix PATH : ${lib.makeBinPath [ jdk which ]} \
--prefix JAVA_HOME : ${jdk.home} \
- --add-flags "--jdkhome ${jdk.home}"
+ --add-flags "--jdkhome ${jdk.home} \
+ -J-Dawt.useSystemAAFontSettings=on -J-Dswing.aatext=true"
# Extract pngs from the Apple icon image and create
# the missing ones from the 1024x1024 image.
diff --git a/pkgs/applications/editors/poke/default.nix b/pkgs/applications/editors/poke/default.nix
index 47b9677e314..a8435eb1e6b 100644
--- a/pkgs/applications/editors/poke/default.nix
+++ b/pkgs/applications/editors/poke/default.nix
@@ -19,11 +19,11 @@ let
isCross = stdenv.hostPlatform != stdenv.buildPlatform;
in stdenv.mkDerivation rec {
pname = "poke";
- version = "1.1";
+ version = "1.2";
src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
- hash = "sha256-zWjfY8dBtBYLEsvqAvJ8RxWCeUZuNEOTDSU1pFLAatY=";
+ hash = "sha256-9hz42ltkwBoTWTc3JarRyiV/NcHJJp5NUN0GZBg932I=";
};
postPatch = ''
diff --git a/pkgs/applications/editors/texmacs/default.nix b/pkgs/applications/editors/texmacs/default.nix
index dd5e5e61b29..d628eeadab6 100644
--- a/pkgs/applications/editors/texmacs/default.nix
+++ b/pkgs/applications/editors/texmacs/default.nix
@@ -16,7 +16,7 @@
let
pname = "TeXmacs";
- version = "1.99.18";
+ version = "1.99.19";
common = callPackage ./common.nix {
inherit tex extraFonts chineseFonts japaneseFonts koreanFonts;
};
@@ -26,7 +26,7 @@ mkDerivation {
src = fetchurl {
url = "https://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${version}-src.tar.gz";
- sha256 = "0il3fwgw20421aj90wg8kyhkwk6lbgb3bb2g5qamh5lk90yj725i";
+ sha256 = "1izwqb0z4gqiglv57mjswk6sjivny73kd2sxrf3nmj7wr12pn5m8";
};
nativeBuildInputs = [ cmake pkg-config ];
diff --git a/pkgs/applications/gis/qgis/unwrapped.nix b/pkgs/applications/gis/qgis/unwrapped.nix
index 49c442ee6d2..a8dd7787a52 100644
--- a/pkgs/applications/gis/qgis/unwrapped.nix
+++ b/pkgs/applications/gis/qgis/unwrapped.nix
@@ -24,7 +24,7 @@ let
six
];
in mkDerivation rec {
- version = "3.16.5";
+ version = "3.16.6";
pname = "qgis";
name = "${pname}-unwrapped-${version}";
@@ -32,7 +32,7 @@ in mkDerivation rec {
owner = "qgis";
repo = "QGIS";
rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}";
- sha256 = "1xkvgj1v2jgp107jyh9xmk1dzbbqxwkqy69z56vsaa8lf9gwgn5h";
+ sha256 = "1vnz5kiyjircmhn4vq3fa5j2kvkxpwcsry7jc6nxl0w0dqx1zay1";
};
passthru = {
diff --git a/pkgs/applications/graphics/foxotron/default.nix b/pkgs/applications/graphics/foxotron/default.nix
new file mode 100644
index 00000000000..71adfe0d2db
--- /dev/null
+++ b/pkgs/applications/graphics/foxotron/default.nix
@@ -0,0 +1,74 @@
+{ stdenv
+, lib
+, fetchFromGitHub
+, nix-update-script
+, cmake
+, pkg-config
+, makeWrapper
+, zlib
+, libX11
+, libXrandr
+, libXinerama
+, libXcursor
+, libXi
+, libXext
+, libGLU
+, alsaLib
+, fontconfig
+, AVFoundation
+, Carbon
+, Cocoa
+, CoreAudio
+, Kernel
+, OpenGL
+}:
+
+stdenv.mkDerivation rec {
+ pname = "foxotron";
+ version = "2021-03-12";
+
+ src = fetchFromGitHub {
+ owner = "Gargaj";
+ repo = "Foxotron";
+ rev = version;
+ fetchSubmodules = true;
+ sha256 = "1finvbs3pbfyvm525blwgwl5jci2zjxb1923i0cm8rmf7wasaapb";
+ };
+
+ nativeBuildInputs = [ cmake pkg-config makeWrapper ];
+
+ buildInputs = [ zlib ]
+ ++ lib.optionals stdenv.hostPlatform.isLinux [ libX11 libXrandr libXinerama libXcursor libXi libXext alsaLib fontconfig libGLU ]
+ ++ lib.optionals stdenv.hostPlatform.isDarwin [ AVFoundation Carbon Cocoa CoreAudio Kernel OpenGL ];
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/{bin,lib/foxotron}
+ cp -R ${lib.optionalString stdenv.hostPlatform.isDarwin "Foxotron.app/Contents/MacOS/"}Foxotron \
+ ../{config.json,Shaders,Skyboxes} $out/lib/foxotron/
+ wrapProgram $out/lib/foxotron/Foxotron \
+ --run "cd $out/lib/foxotron"
+ ln -s $out/{lib/foxotron,bin}/Foxotron
+
+ runHook postInstall
+ '';
+
+ passthru = {
+ updateScript = nix-update-script {
+ attrPath = pname;
+ };
+ };
+
+ meta = with lib; {
+ description = "General purpose model viewer";
+ longDescription = ''
+ ASSIMP based general purpose model viewer ("turntable") created for the
+ Revision 2021 3D Graphics Competition.
+ '';
+ homepage = "https://github.com/Gargaj/Foxotron";
+ license = licenses.publicDomain;
+ maintainers = with maintainers; [ OPNA2608 ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/graphics/runwayml/default.nix b/pkgs/applications/graphics/runwayml/default.nix
deleted file mode 100644
index 9366276ebf8..00000000000
--- a/pkgs/applications/graphics/runwayml/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ lib
-, fetchurl
-, appimageTools
-, symlinkJoin
-}:
-
-let
- pname = "runwayml";
- version = "0.14.3";
- name = "${pname}-${version}";
-
- src = fetchurl {
- url = "https://runway-releases.s3.amazonaws.com/Runway-${version}.AppImage";
- sha256 = "1bx8j39wd2z6f32hdvmk9z77bivnizzdhn296kin2nnqgq6v6y93";
- };
-
- binary = appimageTools.wrapType2 {
- name = pname;
- inherit src;
- };
- # we only use this to extract the icon and desktop file
- appimage-contents = appimageTools.extractType2 {
- inherit name src;
- };
-
-in
- symlinkJoin {
- inherit name;
- paths = [ binary ];
-
- postBuild = ''
- mkdir -p $out/share/pixmaps/ $out/share/applications
- cp ${appimage-contents}/usr/share/icons/hicolor/1024x1024/apps/runway.png $out/share/pixmaps/runway.png
- sed 's:Exec=AppRun:Exec=runwayml:' ${appimage-contents}/runway.desktop > $out/share/applications/runway.desktop
- '';
-
- meta = with lib; {
- description = "Machine learning for creators";
- homepage = "https://runwayml.com/";
- license = licenses.unfree;
- maintainers = with maintainers; [ prusnak ];
- platforms = [ "x86_64-linux" ];
- };
-}
diff --git a/pkgs/applications/graphics/sane/backends/brscan4/default.nix b/pkgs/applications/graphics/sane/backends/brscan4/default.nix
index 9713618d79a..6fcb5830556 100644
--- a/pkgs/applications/graphics/sane/backends/brscan4/default.nix
+++ b/pkgs/applications/graphics/sane/backends/brscan4/default.nix
@@ -11,16 +11,15 @@ let
in
stdenv.mkDerivation rec {
pname = "brscan4";
- version = "0.4.9-1";
+ version = "0.4.10-1";
src = {
"i686-linux" = fetchurl {
url = "http://download.brother.com/welcome/dlf006646/${pname}-${version}.i386.deb";
- sha256 = "0pkg9aqvnkpjnb9cgzf7lxw2g4jqrf2w98irkv22r0gfsfs3nwma";
+ sha256 = "sha256-ymIAg+rfSYP5uzsAM1hUYZacJ0PXmKEoljNtb0pgGMw=";
};
"x86_64-linux" = fetchurl {
-
url = "https://download.brother.com/welcome/dlf006645/${pname}-${version}.amd64.deb";
- sha256 = "0kakkl8rmsi2yr3f8vd1kk8vsl9g2ijhqil1cvvbwrhwgi0b7ai7";
+ sha256 = "sha256-Gpr5456MCNpyam3g2qPo7S3aEZFMaUGR8bu7YmRY8xk=";
};
}."${stdenv.hostPlatform.system}";
@@ -33,7 +32,7 @@ stdenv.mkDerivation rec {
buildInputs = [ libusb-compat-0_1 ];
dontBuild = true;
- patchPhase = ''
+ postPatch = ''
${myPatchElf "opt/brother/scanner/brscan4/brsaneconfig4"}
RPATH=${libusb-compat-0_1.out}/lib
@@ -45,6 +44,7 @@ stdenv.mkDerivation rec {
'';
installPhase = with lib; ''
+ runHook preInstall
PATH_TO_BRSCAN4="opt/brother/scanner/brscan4"
mkdir -p $out/$PATH_TO_BRSCAN4
cp -rp $PATH_TO_BRSCAN4/* $out/$PATH_TO_BRSCAN4
@@ -79,6 +79,7 @@ stdenv.mkDerivation rec {
mkdir -p $out/etc/udev/rules.d
cp -p ${udevRules}/etc/udev/rules.d/*.rules \
$out/etc/udev/rules.d
+ runHook postInstall
'';
dontStrip = true;
diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix
index f7e98462041..11667ea3950 100644
--- a/pkgs/applications/misc/calibre/default.nix
+++ b/pkgs/applications/misc/calibre/default.nix
@@ -26,11 +26,11 @@
mkDerivation rec {
pname = "calibre";
- version = "5.13.0";
+ version = "5.16.1";
src = fetchurl {
url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
- sha256 = "sha256-GDFAZxZmkio7e7kVjhYqhNdhXIlUPJF0iMWVl0uWVCM=";
+ hash = "sha256-lTXCW0MGNOezecaGO9c2JGU4ylwpPmBaMXTY3nLNcrE=";
};
patches = [
@@ -62,8 +62,6 @@ mkDerivation rec {
dontUseQmakeConfigure = true;
- enableParallelBuilding = true;
-
nativeBuildInputs = [ pkg-config qmake removeReferencesTo ];
buildInputs = [
diff --git a/pkgs/applications/misc/dasel/default.nix b/pkgs/applications/misc/dasel/default.nix
index d482e40328c..3f4e77bdd04 100644
--- a/pkgs/applications/misc/dasel/default.nix
+++ b/pkgs/applications/misc/dasel/default.nix
@@ -5,13 +5,13 @@
buildGoModule rec {
pname = "dasel";
- version = "1.14.0";
+ version = "1.14.1";
src = fetchFromGitHub {
owner = "TomWright";
repo = pname;
rev = "v${version}";
- sha256 = "1g4a001k86myfln0xlzy8w9krwamvfchnvywpr1p3x6iw95z46w8";
+ sha256 = "0nxdyd0zg4w1zr8p9z2x88h36vbn7ryk7160zszdiwh5qmdlv47v";
};
vendorSha256 = "sha256-BdX4DO77mIf/+aBdkNVFUzClsIml1UMcgvikDbbdgcY=";
diff --git a/pkgs/applications/misc/dbeaver/default.nix b/pkgs/applications/misc/dbeaver/default.nix
index ad53599855a..fa5240b5333 100644
--- a/pkgs/applications/misc/dbeaver/default.nix
+++ b/pkgs/applications/misc/dbeaver/default.nix
@@ -2,6 +2,7 @@
, stdenv
, copyDesktopItems
, fetchFromGitHub
+, fetchpatch
, makeDesktopItem
, makeWrapper
, fontconfig
@@ -18,18 +19,18 @@
stdenv.mkDerivation rec {
pname = "dbeaver-ce";
- version = "21.0.2"; # When updating also update fetchedMavenDeps.sha256
+ version = "21.0.3"; # When updating also update fetchedMavenDeps.sha256
src = fetchFromGitHub {
owner = "dbeaver";
repo = "dbeaver";
rev = version;
- sha256 = "sha256-3EMSiEq1wdg4dxBU90RVVv0Hrf5dXPc1MPI0+WMk48k=";
+ sha256 = "sha256-ItM8t+gqE0ccuuimfEMUddykl+xt2eZIBd3MbpreRwA=";
};
fetchedMavenDeps = stdenv.mkDerivation {
name = "dbeaver-${version}-maven-deps";
- inherit src;
+ inherit src patches;
buildInputs = [
maven
@@ -50,9 +51,18 @@ stdenv.mkDerivation rec {
dontFixup = true;
outputHashAlgo = "sha256";
outputHashMode = "recursive";
- outputHash = "sha256-xKlFFQXd2U513KZKQa7ttSFNX2gxVr9hNsvyaoN/rEE=";
+ outputHash = "sha256-rsK/B39ogNu5nC41OfyAsLiwBz4gWyH+8Fj7E6+rOng=";
};
+ patches = [
+ # Fix eclipse-color-theme URL (https://github.com/dbeaver/dbeaver/pull/12133)
+ # After April 15, 2021 eclipse-color-theme.github.com no longer redirects to eclipse-color-theme.github.io
+ (fetchpatch {
+ url = "https://github.com/dbeaver/dbeaver/commit/65d65e2c2c711cc87fddcec425a6915aa80f4ced.patch";
+ sha256 = "sha256-pxOcRYkV/5o+tHcRhHDZ1TmZSHMnKBmkNTVAlIf9nUE=";
+ })
+ ];
+
nativeBuildInputs = [
copyDesktopItems
makeWrapper
diff --git a/pkgs/applications/misc/dwmblocks/default.nix b/pkgs/applications/misc/dwmblocks/default.nix
new file mode 100644
index 00000000000..45757787c7c
--- /dev/null
+++ b/pkgs/applications/misc/dwmblocks/default.nix
@@ -0,0 +1,35 @@
+{ lib, stdenv, fetchFromGitHub, libX11, patches ? [ ], writeText, conf ? null }:
+
+stdenv.mkDerivation {
+ pname = "dwmblocks";
+ version = "unstable-2020-12-27";
+
+ src = fetchFromGitHub {
+ owner = "torrinfail";
+ repo = "dwmblocks";
+ rev = "96cbb453e5373c05372fd4bf3faacfa53e409067";
+ sha256 = "00lxfxsrvhm60zzqlcwdv7xkqzya69mgpi2mr3ivzbc8s9h8nwqx";
+ };
+
+ buildInputs = [ libX11 ];
+
+ inherit patches;
+
+ postPatch =
+ let
+ configFile =
+ if lib.isDerivation conf || builtins.isPath conf
+ then conf else writeText "blocks.def.h" conf;
+ in
+ lib.optionalString (conf != null) "cp ${configFile} blocks.def.h";
+
+ makeFlags = [ "PREFIX=$(out)" ];
+
+ meta = with lib; {
+ description = "Modular status bar for dwm written in c";
+ homepage = "https://github.com/torrinfail/dwmblocks";
+ license = licenses.isc;
+ maintainers = with maintainers; [ sophrosyne ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/misc/haunt/default.nix b/pkgs/applications/misc/haunt/default.nix
new file mode 100644
index 00000000000..124e441a5af
--- /dev/null
+++ b/pkgs/applications/misc/haunt/default.nix
@@ -0,0 +1,59 @@
+{ lib
+, stdenv
+, fetchurl
+, guile
+, guile-commonmark
+, guile-reader
+, makeWrapper
+, pkg-config
+}:
+
+stdenv.mkDerivation rec {
+ pname = "haunt";
+ version = "0.2.4";
+
+ src = fetchurl {
+ url = "https://files.dthompson.us/${pname}/${pname}-${version}.tar.gz";
+ hash = "sha256-zOkICg7KmJJhPWPtJRT3C9sYB1Oig1xLtgPNGe0n3xQ=";
+ };
+
+ nativeBuildInputs = [
+ makeWrapper
+ pkg-config
+ ];
+ buildInputs = [
+ guile
+ guile-commonmark
+ guile-reader
+ ];
+
+ postInstall = ''
+ wrapProgram $out/bin/haunt \
+ --prefix GUILE_LOAD_PATH : "$out/share/guile/site:${guile-commonmark}/share/guile/site:${guile-reader}/share/guile/site" \
+ --prefix GUILE_LOAD_COMPILED_PATH : "$out/share/guile/site:${guile-commonmark}/share/guile/site:${guile-reader}/share/guile/site"
+ '';
+
+ meta = with lib; {
+ homepage = "https://dthompson.us/projects/haunt.html";
+ description = "Guile-based static site generator";
+ longDescription = ''
+ Haunt is a simple, functional, hackable static site generator that gives
+ authors the ability to treat websites as Scheme programs.
+
+ By giving authors the full expressive power of Scheme, they are able to
+ control every aspect of the site generation process. Haunt provides a
+ simple, functional build system that can be easily extended for this
+ purpose.
+
+ Haunt has no opinion about what markup language authors should use to
+ write posts, though it comes with support for the popular Markdown
+ format. Likewise, Haunt has no opinion about how authors structure their
+ sites. Though it comes with support for building simple blogs or Atom
+ feeds, authors should feel empowered to tweak, replace, or create builders
+ to do things that aren't provided out-of-the-box.
+ '';
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ AndersonTorres ];
+ platforms = guile.meta.platforms;
+ };
+}
diff --git a/pkgs/applications/misc/hugo/default.nix b/pkgs/applications/misc/hugo/default.nix
index bb748a1074c..0f9ca5c4b84 100644
--- a/pkgs/applications/misc/hugo/default.nix
+++ b/pkgs/applications/misc/hugo/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "hugo";
- version = "0.82.0";
+ version = "0.82.1";
src = fetchFromGitHub {
owner = "gohugoio";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-D0bwy8LJihlfM+E3oys85yjadjZNfPv5xnq4ekaZPCU=";
+ sha256 = "sha256-6poWFcApwCos3XvS/Wq1VJyf5xTUWtqWNFXIhjNsXVs=";
};
vendorSha256 = "sha256-pJBm+yyy1DbH28oVBQA+PHSDtSg3RcgbRlurrwnnEls=";
diff --git a/pkgs/applications/misc/jiten/default.nix b/pkgs/applications/misc/jiten/default.nix
new file mode 100644
index 00000000000..5447a2b3050
--- /dev/null
+++ b/pkgs/applications/misc/jiten/default.nix
@@ -0,0 +1,91 @@
+{ lib
+, fetchFromGitHub
+, python3Packages
+, makeWrapper
+, pcre
+, sqlite
+, nodejs
+}:
+
+python3Packages.buildPythonApplication rec {
+ pname = "jiten";
+ version = "1.0.0";
+
+ src = fetchFromGitHub {
+ owner = "obfusk";
+ repo = "jiten";
+ rev = "v${version}";
+ sha256 = "1lg1n7f4383jdlkbma0q65yl6l159wgh886admcq7l7ap26zpqd2";
+ };
+
+ nativeBuildInputs = [ makeWrapper ];
+ buildInputs = [ pcre sqlite ];
+ propagatedBuildInputs = with python3Packages; [ click flask ];
+ checkInputs = [ nodejs ];
+
+ preBuild = ''
+ export JITEN_VERSION=${version} # override `git describe`
+ export JITEN_FINAL=yes # build & package *.sqlite3
+ '';
+
+ postPatch = ''
+ substituteInPlace Makefile --replace /bin/bash "$(command -v bash)"
+ substituteInPlace jiten/res/jmdict/Makefile --replace /bin/bash "$(command -v bash)"
+ '';
+
+ checkPhase = "make test";
+
+ postInstall = ''
+ # requires pywebview
+ rm $out/bin/jiten-gui
+ '';
+
+ meta = with lib; {
+ description = "Japanese android/cli/web dictionary based on jmdict/kanjidic";
+ longDescription = ''
+ Jiten is a Japanese dictionary based on JMDict/Kanjidic
+
+ Fine-grained search using regexes (regular expressions)
+ • simple searches don't require knowledge of regexes
+ • quick reference available in the web interface and android app
+
+ JMDict multilingual japanese dictionary
+ • kanji, readings (romaji optional), meanings & more
+ • meanings in english, dutch, german, french and/or spanish
+ • pitch accent (from Wadoku)
+ • browse by frequency/jlpt
+
+ Kanji dictionary
+ • readings (romaji optional), meanings (english), jmdict entries, radicals & more
+ • search using SKIP codes
+ • search by radical
+ • browse by frequency/level/jlpt
+
+ Example sentences (from Tatoeba)
+ • with english, dutch, german, french and/or spanish translation
+ • some with audio
+
+ Stroke order
+ • input a word or sentence and see how it's written
+
+ Web interface
+ • available online at https://jiten.obfusk.dev
+ • light/dark mode
+ • search history (stored locally)
+ • tooltips to quickly see meanings and readings for kanji and words
+ • use long press for tooltips on mobile
+ • converts romaji to hiragana and between hiragana and katakana
+ • can be run on your own computer
+
+ Command-line interface
+ '';
+ homepage = "https://github.com/obfusk/jiten";
+ license = with licenses; [
+ agpl3Plus # code
+ cc-by-sa-30 # jmdict/kanjidic
+ unfreeRedistributable # pitch data from wadoku is non-commercial :(
+ ];
+ maintainers = [ maintainers.obfusk ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/applications/misc/nnn/default.nix b/pkgs/applications/misc/nnn/default.nix
index 6fd68779f4f..3b482e95d9d 100644
--- a/pkgs/applications/misc/nnn/default.nix
+++ b/pkgs/applications/misc/nnn/default.nix
@@ -1,6 +1,18 @@
-{ lib, stdenv, fetchFromGitHub, pkg-config, makeWrapper, ncurses, readline
-, archivemount, atool, fzf, libarchive, rclone, sshfs, unzip, vlock
-, conf ? null, withIcons ? false, withNerdIcons ? false }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, installShellFiles
+, makeWrapper
+, pkg-config
+, file
+, ncurses
+, readline
+, which
+# options
+, conf ? null
+, withIcons ? false
+, withNerdIcons ? false
+}:
# Mutually exclusive options
assert withIcons -> withNerdIcons == false;
@@ -20,21 +32,21 @@ stdenv.mkDerivation rec {
configFile = lib.optionalString (conf != null) (builtins.toFile "nnn.h" conf);
preBuild = lib.optionalString (conf != null) "cp ${configFile} src/nnn.h";
- nativeBuildInputs = [ pkg-config makeWrapper ];
+ nativeBuildInputs = [ installShellFiles makeWrapper pkg-config ];
buildInputs = [ readline ncurses ];
- makeFlags = [ "PREFIX=$(out)" ]
+ makeFlags = [ "PREFIX=${placeholder "out"}" ]
++ lib.optional withIcons [ "O_ICONS=1" ]
++ lib.optional withNerdIcons [ "O_NERD=1" ];
- # shell completions
- postInstall = ''
- install -Dm555 misc/auto-completion/bash/nnn-completion.bash $out/share/bash-completion/completions/nnn.bash
- install -Dm555 misc/auto-completion/zsh/_nnn -t $out/share/zsh/site-functions
- install -Dm555 misc/auto-completion/fish/nnn.fish -t $out/share/fish/vendor_completions.d
+ binPath = lib.makeBinPath [ file which ];
- wrapProgram $out/bin/nnn \
- --prefix PATH : ${lib.makeBinPath [ archivemount atool fzf libarchive rclone sshfs unzip vlock ]}
+ postInstall = ''
+ installShellCompletion --bash --name nnn.bash misc/auto-completion/bash/nnn-completion.bash
+ installShellCompletion --fish misc/auto-completion/fish/nnn.fish
+ installShellCompletion --zsh misc/auto-completion/zsh/_nnn
+
+ wrapProgram $out/bin/nnn --prefix PATH : "$binPath"
'';
meta = with lib; {
diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix
index df0409c8be4..ae2151383bc 100644
--- a/pkgs/applications/misc/octoprint/plugins.nix
+++ b/pkgs/applications/misc/octoprint/plugins.nix
@@ -13,6 +13,25 @@ self: super: let
in {
inherit buildPlugin;
+ m86motorsoff = buildPlugin rec {
+ pname = "M84MotorsOff";
+ version = "0.1.0";
+
+ src = fetchFromGitHub {
+ owner = "ntoff";
+ repo = "Octoprint-M84MotOff";
+ rev = "v${version}";
+ sha256 = "1w6h4hia286lbz2gy33rslq02iypx067yqn413xcipb07ivhvdq7";
+ };
+
+ meta = with lib; {
+ description = "Changes the \"Motors off\" button in octoprint's control tab to issue an M84 command to allow compatibility with Repetier firmware Resources";
+ homepage = "https://github.com/ntoff/OctoPrint-M84MotOff";
+ license = licenses.agpl3Only;
+ maintainers = with maintainers; [ stunkymonkey ];
+ };
+ };
+
abl-expert = buildPlugin rec {
pname = "ABL_Expert";
version = "0.6";
@@ -52,6 +71,25 @@ in {
};
};
+ costestimation = buildPlugin rec {
+ pname = "CostEstimation";
+ version = "3.2.0";
+
+ src = fetchFromGitHub {
+ owner = "OllisGit";
+ repo = "OctoPrint-${pname}";
+ rev = version;
+ sha256 = "1j476jcw7gh8zqqdc5vddwv5wpjns7cd1hhpn7m9fxq3d5bi077w";
+ };
+
+ meta = with lib; {
+ description = "Plugin to display the estimated print cost for the loaded model.";
+ homepage = "https://github.com/malnvenshorn/OctoPrint-CostEstimation";
+ license = licenses.agpl3Only;
+ maintainers = with maintainers; [ stunkymonkey ];
+ };
+ };
+
curaenginelegacy = buildPlugin rec {
pname = "CuraEngineLegacy";
version = "1.1.1";
@@ -71,6 +109,25 @@ in {
};
};
+ displayprogress = buildPlugin rec {
+ pname = "DisplayProgress";
+ version = "0.1.3";
+
+ src = fetchFromGitHub {
+ owner = "OctoPrint";
+ repo = "OctoPrint-${pname}";
+ rev = version;
+ sha256 = "080prvfwggl4vkzyi369vxh1n8231hrl8a44f399laqah3dn5qw4";
+ };
+
+ meta = with lib; {
+ description = "Displays the job progress on the printer's display";
+ homepage = "https://github.com/OctoPrint/OctoPrint-DisplayProgress";
+ license = licenses.agpl3Only;
+ maintainers = with maintainers; [ stunkymonkey ];
+ };
+ };
+
displaylayerprogress = buildPlugin rec {
pname = "OctoPrint-DisplayLayerProgress";
version = "1.24.0";
@@ -240,6 +297,27 @@ in {
};
};
+ telegram = buildPlugin rec {
+ pname = "Telegram";
+ version = "1.6.4";
+
+ src = fetchFromGitHub {
+ owner = "fabianonline";
+ repo = "OctoPrint-${pname}";
+ rev = version;
+ sha256 = "14d9f9a5m1prcikd7y26qks6c2ls6qq4b97amn24q5a8k5hbgl94";
+ };
+
+ propagatedBuildInputs = with super; [ pillow ];
+
+ meta = with lib; {
+ description = "Plugin to send status messages and receive commands via Telegram messenger.";
+ homepage = "https://github.com/fabianonline/OctoPrint-Telegram";
+ license = licenses.agpl3Only;
+ maintainers = with maintainers; [ stunkymonkey ];
+ };
+ };
+
themeify = buildPlugin rec {
pname = "Themeify";
version = "1.2.2";
diff --git a/pkgs/applications/misc/polybar/default.nix b/pkgs/applications/misc/polybar/default.nix
index b01b5af7ded..962bd9f592b 100644
--- a/pkgs/applications/misc/polybar/default.nix
+++ b/pkgs/applications/misc/polybar/default.nix
@@ -7,6 +7,7 @@
, pcre
, pkg-config
, python3
+, python3Packages # sphinx-build
, lib
, stdenv
, xcbproto
@@ -18,41 +19,47 @@
, xcbutilxrm
, makeWrapper
, removeReferencesTo
+, alsaLib
+, curl
+, libmpdclient
+, libpulseaudio
+, wirelesstools
+, libnl
+, i3
+, i3-gaps
+, jsoncpp
-# optional packages-- override the variables ending in 'Support' to enable or
-# disable modules
-, alsaSupport ? true, alsaLib ? null
-, githubSupport ? false, curl ? null
-, mpdSupport ? false, libmpdclient ? null
-, pulseSupport ? false, libpulseaudio ? null
-, iwSupport ? false, wirelesstools ? null
-, nlSupport ? true, libnl ? null
-, i3Support ? false, i3GapsSupport ? false, i3 ? null, i3-gaps ? null, jsoncpp ? null
+# override the variables ending in 'Support' to enable or disable modules
+, alsaSupport ? true
+, githubSupport ? false
+, mpdSupport ? false
+, pulseSupport ? false
+, iwSupport ? false
+, nlSupport ? true
+, i3Support ? false
+, i3GapsSupport ? false
}:
-assert alsaSupport -> alsaLib != null;
-assert githubSupport -> curl != null;
-assert mpdSupport -> libmpdclient != null;
-assert pulseSupport -> libpulseaudio != null;
-
-assert iwSupport -> ! nlSupport && wirelesstools != null;
-assert nlSupport -> ! iwSupport && libnl != null;
-
-assert i3Support -> ! i3GapsSupport && jsoncpp != null && i3 != null;
-assert i3GapsSupport -> ! i3Support && jsoncpp != null && i3-gaps != null;
-
stdenv.mkDerivation rec {
pname = "polybar";
- version = "3.5.2";
+ version = "3.5.5";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
- sha256 = "1ir8fdnzrba9fkkjfvax5szx5h49lavwgl9pabjzrpbvif328g3x";
+ sha256 = "sha256-oRtTm5bXdL0C2WJsaK8H2Oc40DPWgAfjP7FgIHrpKGI=";
fetchSubmodules = true;
};
+ nativeBuildInputs = [
+ cmake
+ pkg-config
+ python3Packages.sphinx
+ removeReferencesTo
+ ]
+ ++ lib.optional (i3Support || i3GapsSupport) makeWrapper;
+
buildInputs = [
cairo
libXdmcp
@@ -67,21 +74,16 @@ stdenv.mkDerivation rec {
xcbutilrenderutil
xcbutilwm
xcbutilxrm
-
- (if alsaSupport then alsaLib else null)
- (if githubSupport then curl else null)
- (if mpdSupport then libmpdclient else null)
- (if pulseSupport then libpulseaudio else null)
-
- (if iwSupport then wirelesstools else null)
- (if nlSupport then libnl else null)
-
- (if i3Support || i3GapsSupport then jsoncpp else null)
- (if i3Support then i3 else null)
- (if i3GapsSupport then i3-gaps else null)
-
- (if i3Support || i3GapsSupport then makeWrapper else null)
- ];
+ ]
+ ++ lib.optional alsaSupport alsaLib
+ ++ lib.optional githubSupport curl
+ ++ lib.optional mpdSupport libmpdclient
+ ++ lib.optional pulseSupport libpulseaudio
+ ++ lib.optional iwSupport wirelesstools
+ ++ lib.optional nlSupport libnl
+ ++ lib.optional (i3Support || i3GapsSupport) jsoncpp
+ ++ lib.optional i3Support i3
+ ++ lib.optional i3GapsSupport i3-gaps;
postInstall = if i3Support
then ''wrapProgram $out/bin/polybar \
@@ -93,18 +95,13 @@ stdenv.mkDerivation rec {
''
else '''';
- nativeBuildInputs = [
- cmake
- pkg-config
- removeReferencesTo
- ];
-
postFixup = ''
remove-references-to -t ${stdenv.cc} $out/bin/polybar
'';
meta = with lib; {
homepage = "https://polybar.github.io/";
+ changelog = "https://github.com/polybar/polybar/releases/tag/${version}";
description = "A fast and easy-to-use tool for creating status bars";
longDescription = ''
Polybar aims to help users build beautiful and highly customizable
@@ -112,7 +109,7 @@ stdenv.mkDerivation rec {
having a black belt in shell scripting.
'';
license = licenses.mit;
- maintainers = with maintainers; [ afldcr Br1ght0ne ];
+ maintainers = with maintainers; [ afldcr Br1ght0ne fortuneteller2k ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/misc/prusa-slicer/default.nix b/pkgs/applications/misc/prusa-slicer/default.nix
index 4d2ef2254e1..a6e81375de5 100644
--- a/pkgs/applications/misc/prusa-slicer/default.nix
+++ b/pkgs/applications/misc/prusa-slicer/default.nix
@@ -4,7 +4,7 @@
}:
stdenv.mkDerivation rec {
pname = "prusa-slicer";
- version = "2.3.0";
+ version = "2.3.1";
nativeBuildInputs = [
cmake
@@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "prusa3d";
repo = "PrusaSlicer";
- sha256 = "08zyvik8cyj1n9knbg8saan7j8s60nzkyj4a77818zbi9lpi65i5";
+ sha256 = "1lyaxc9nha1cd8p35iam1k1pikp9kfx0fj1l6vb1xb8pgqp02jnn";
rev = "version_${version}";
};
diff --git a/pkgs/applications/misc/sc-im/default.nix b/pkgs/applications/misc/sc-im/default.nix
index 9a05ac22afb..cc7d4c3771b 100644
--- a/pkgs/applications/misc/sc-im/default.nix
+++ b/pkgs/applications/misc/sc-im/default.nix
@@ -1,12 +1,14 @@
{ lib
, stdenv
, fetchFromGitHub
+, fetchpatch
, makeWrapper
, pkg-config
, which
, bison
, gnuplot
, libxls
+, libxlsxwriter
, libxml2
, libzip
, ncurses
@@ -25,6 +27,18 @@ stdenv.mkDerivation rec {
sourceRoot = "${src.name}/src";
+ patches = [
+ # libxls and libxlsxwriter are not found without the patch
+ # https://github.com/andmarti1424/sc-im/pull/542
+ (fetchpatch {
+ name = "use-pkg-config-for-libxls-and-libxlsxwriter.patch";
+ url = "https://github.com/andmarti1424/sc-im/commit/b62dc25eb808e18a8ab7ee7d8eb290e34efeb075.patch";
+ sha256 = "1yn32ps74ngzg3rbkqf8dn0g19jv4xhxrfgx9agnywf0x8gbwjh3";
+ })
+ ];
+
+ patchFlags = [ "-p2" ];
+
nativeBuildInputs = [
makeWrapper
pkg-config
@@ -35,6 +49,7 @@ stdenv.mkDerivation rec {
buildInputs = [
gnuplot
libxls
+ libxlsxwriter
libxml2
libzip
ncurses
diff --git a/pkgs/applications/misc/shfm/default.nix b/pkgs/applications/misc/shfm/default.nix
new file mode 100644
index 00000000000..602151075fc
--- /dev/null
+++ b/pkgs/applications/misc/shfm/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+}:
+
+stdenv.mkDerivation rec {
+ pname = "shfm";
+ version = "0.4.2";
+
+ src = fetchFromGitHub {
+ owner = "dylanaraps";
+ repo = pname;
+ rev = version;
+ hash = "sha256-ilVrUFfyzOZgjbBTqlHA9hLaTHw1xHFo1Y/tjXygNEs=";
+ };
+
+ postPatch = ''
+ patchShebangs ./shfm
+ '';
+
+ dontConfigure = true;
+ dontBuild = true;
+
+ installPhase = ''
+ runHook preInstall
+ install -D shfm --target-directory $out/bin/
+ install -D README --target-directory $out/share/doc/${pname}/
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/dylanaraps/shfm";
+ description = "POSIX-shell based file manager";
+ license = licenses.mit;
+ maintainers = with maintainers; [ AndersonTorres ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/misc/stork/default.nix b/pkgs/applications/misc/stork/default.nix
index 16d56eeaa95..9d93c8ae435 100644
--- a/pkgs/applications/misc/stork/default.nix
+++ b/pkgs/applications/misc/stork/default.nix
@@ -1,20 +1,26 @@
{ lib
, rustPlatform
, fetchFromGitHub
+, openssl
+, pkg-config
}:
rustPlatform.buildRustPackage rec {
pname = "stork";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchFromGitHub {
owner = "jameslittle230";
repo = "stork";
rev = "v${version}";
- sha256 = "sha256-pBJ9n1pQafXagQt9bnj4N1jriczr47QLtKiv+UjWgTg=";
+ sha256 = "sha256-gPrXeS7XT38Dil/EBwmeKIJrmPlEK+hmiyHi4p28tl0=";
};
- cargoSha256 = "sha256-u8L4ZeST4ExYB2y8E+I49HCy41dOfhR1fgPpcVMVDuk=";
+ cargoSha256 = "sha256-9YKCtryb9mTPz9iWE7Iuk2SKgV0knWRbaouF+1DCjv8=";
+
+ nativeBuildInputs = [ pkg-config ];
+
+ buildInputs = [ openssl ];
meta = with lib; {
description = "Impossibly fast web search, made for static sites";
diff --git a/pkgs/applications/misc/stretchly/default.nix b/pkgs/applications/misc/stretchly/default.nix
index 6480fd6b267..52c5f542b27 100644
--- a/pkgs/applications/misc/stretchly/default.nix
+++ b/pkgs/applications/misc/stretchly/default.nix
@@ -5,18 +5,17 @@
, electron
, common-updater-scripts
, writeShellScript
-, jq
, makeDesktopItem
}:
stdenv.mkDerivation rec {
pname = "stretchly";
- version = "1.5.0";
+ version = "1.6.0";
src = fetchurl {
url = "https://github.com/hovancik/stretchly/releases/download/v${version}/stretchly-${version}.tar.xz";
- sha256 = "19czwmwqsn82zdzln9zqqyl9sb3dm95gp58dqn1459gyinkzpvda";
+ sha256 = "1q0ihp6cd65lnscbr7xj3yyb06qds77r4s6m1xbk5l9vs2rw923d";
};
icon = fetchurl {
diff --git a/pkgs/applications/misc/tdrop/default.nix b/pkgs/applications/misc/tdrop/default.nix
index e8c42ab48d7..66708aa8135 100644
--- a/pkgs/applications/misc/tdrop/default.nix
+++ b/pkgs/applications/misc/tdrop/default.nix
@@ -2,15 +2,15 @@
, xwininfo, xdotool, xprop, gawk, coreutils
, gnugrep, procps }:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "tdrop";
- version = "unstable-2020-05-14";
+ version = "0.4.0";
src = fetchFromGitHub {
owner = "noctuid";
repo = "tdrop";
- rev = "a9f2862515e5c190ac61d394e7fe7e1039871b89";
- sha256 = "1zxhihgba33k8byjsracsyhby9qpdngbly6c8hpz3pbsyag5liwc";
+ rev = version;
+ sha256 = "sha256-1umHwzpv4J8rZ0c0q+2dPsEk4vhFB4UerwI8ctIJUZg=";
};
dontBuild = true;
diff --git a/pkgs/applications/misc/veracrypt/default.nix b/pkgs/applications/misc/veracrypt/default.nix
index 15bda9d5f97..5e5fda23d44 100644
--- a/pkgs/applications/misc/veracrypt/default.nix
+++ b/pkgs/applications/misc/veracrypt/default.nix
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Free Open-Source filesystem on-the-fly encryption";
homepage = "https://www.veracrypt.fr/";
- license = [ licenses.asl20 /* or */ "TrueCrypt License version 3.0" ];
+ license = with licenses; [ asl20 /* and */ unfree /* TrueCrypt License version 3.0 */ ];
maintainers = with maintainers; [ dsferruzza ];
platforms = platforms.linux;
};
diff --git a/pkgs/applications/misc/with-shell/default.nix b/pkgs/applications/misc/with-shell/default.nix
index daf697c1661..cf52d194f61 100644
--- a/pkgs/applications/misc/with-shell/default.nix
+++ b/pkgs/applications/misc/with-shell/default.nix
@@ -1,20 +1,76 @@
-{ lib, stdenv, fetchFromGitHub }:
-stdenv.mkDerivation {
- name = "with-2016-08-20";
+{ lib
+, stdenv
+, fetchFromGitHub
+, installShellFiles
+}:
+
+stdenv.mkDerivation rec {
+ pname = "with";
+ version = "unstable-2018-03-20";
+
src = fetchFromGitHub {
owner = "mchav";
repo = "With";
- rev = "cc2828bddd92297147d4365765f4ef36385f050a";
- sha256 = "10m2xv6icrdp6lfprw3a9hsrzb3bip19ipkbmscap0niddqgcl9b";
+ rev = "28eb40bbc08d171daabf0210f420477ad75e16d6";
+ hash = "sha256-mKHsLHs9/I+NUdb1t9wZWkPxXcsBlVWSj8fgZckXFXk=";
};
+
+ nativeBuildInputs = [ installShellFiles ];
+
installPhase = ''
- mkdir -p $out/bin
- cp with $out/bin/with
+ runHook preInstall
+ install -D with $out/bin/with
+ installShellCompletion --bash --name with.bash with.bash-completion
+ runHook postInstall
'';
- meta = {
+
+ meta = with lib; {
homepage = "https://github.com/mchav/With";
description = "Command prefixing for continuous workflow using a single tool";
- license = lib.licenses.asl20;
- platforms = lib.platforms.unix;
+ longDescription = ''
+ with is a Bash script that starts an interactive shell with where every
+ command is prefixed using .
+
+ For example:
+
+ $ with git
+ git> add .
+ git> commit -a -m "Commited"
+ git> push
+
+ Can also be used for compound commands.
+
+ $ with java Primes
+ java Primes> 1
+ 2
+ java Primes> 4
+ 7
+
+ And to repeat commands:
+
+ $ with gcc -o output input.c
+ gcc -o -output input.c>
+
+ Compiling...
+ gcc -o -output input.c>
+
+ To execute a shell command proper prefix line with :.
+
+ git> :ls
+
+ You can also drop, add, and replace different commands.
+
+ git> +add
+ git add>
+ git add> !commit
+ git commit>
+ git commit> -
+ git>
+
+ To exit use either :q or :exit.
+ '';
+ license = licenses.asl20;
+ maintainers = with maintainers; [ AndersonTorres ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/applications/misc/xplr/default.nix b/pkgs/applications/misc/xplr/default.nix
new file mode 100644
index 00000000000..ddbd837a6df
--- /dev/null
+++ b/pkgs/applications/misc/xplr/default.nix
@@ -0,0 +1,22 @@
+{ lib, rustPlatform, fetchFromGitHub }:
+
+rustPlatform.buildRustPackage rec {
+ name = "xplr";
+ version = "0.5.6";
+
+ src = fetchFromGitHub {
+ owner = "sayanarijit";
+ repo = name;
+ rev = "v${version}";
+ sha256 = "070jyii2p7qk6gij47n5i9a8bal5iijgn8cv79mrija3pgddniaz";
+ };
+
+ cargoSha256 = "113f0hbgy8c9gxl70b6frr0klfc8rm5klgwls7fgbb643rdh03b9";
+
+ meta = with lib; {
+ description = "A hackable, minimal, fast TUI file explorer";
+ homepage = "https://github.com/sayanarijit/xplr";
+ license = licenses.mit;
+ maintainers = with maintainers; [ sayanarijit suryasr007 ];
+ };
+}
diff --git a/pkgs/applications/misc/yubioath-desktop/0001-replace-git-with-normal-python-package.patch b/pkgs/applications/misc/yubioath-desktop/0001-replace-git-with-normal-python-package.patch
deleted file mode 100644
index d56a6cfab07..00000000000
--- a/pkgs/applications/misc/yubioath-desktop/0001-replace-git-with-normal-python-package.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 5eb4d6a384753896d495b09d8651c48672ef234d Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?J=C3=B6rg=20Thalheim?=
-Date: Wed, 25 Nov 2020 11:26:49 +0100
-Subject: [PATCH] replace git with normal python package
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Jörg Thalheim
----
- requirements.txt | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/requirements.txt b/requirements.txt
-index ef25aad..b4246a4 100644
---- a/requirements.txt
-+++ b/requirements.txt
-@@ -1,2 +1,2 @@
--git+https://github.com/Yubico/yubikey-manager.git
-+yubikey-manager
- ./py/qr
---
-2.29.2
-
diff --git a/pkgs/applications/misc/yubioath-desktop/default.nix b/pkgs/applications/misc/yubioath-desktop/default.nix
index dbd33db16f9..9cfd7650c49 100644
--- a/pkgs/applications/misc/yubioath-desktop/default.nix
+++ b/pkgs/applications/misc/yubioath-desktop/default.nix
@@ -6,11 +6,11 @@
mkDerivation rec {
pname = "yubioath-desktop";
- version = "5.0.4";
+ version = "5.0.5";
src = fetchurl {
url = "https://developers.yubico.com/yubioath-desktop/Releases/yubioath-desktop-${version}.tar.gz";
- sha256 = "1aw88xvg6gjsfwmmlcrdcgyycn2cp7b8vxjzj14h7igcj02xh84h";
+ sha256 = "05xs6xh9pi50h0668arirj0gnz11adpixgsdkds072077gasdm0g";
};
doCheck = false;
@@ -19,10 +19,6 @@ mkDerivation rec {
nativeBuildInputs = [ qmake makeWrapper python3.pkgs.wrapPython ];
- patches = [
- ./0001-replace-git-with-normal-python-package.patch
- ];
-
postPatch = ''
substituteInPlace deployment.pri \
--replace '/usr/bin' "$out/bin"
@@ -48,7 +44,7 @@ mkDerivation rec {
cp resources/icons/*.{icns,ico,png,svg} $out/share/yubioath/icons
substituteInPlace $out/share/applications/com.yubico.yubioath.desktop \
--replace 'Exec=yubioath-desktop' "Exec=$out/bin/yubioath-desktop" \
- --replace 'Icon=yubioath' "Icon=$out/share/yubioath/icons/com.yubico.yubioath.png"
+ --replace 'Icon=com.yubico.yubioath' "Icon=$out/share/yubioath/icons/com.yubico.yubioath.png"
'';
meta = with lib; {
diff --git a/pkgs/applications/misc/zettlr/default.nix b/pkgs/applications/misc/zettlr/default.nix
index eb8c81dae7e..3d7f5629123 100644
--- a/pkgs/applications/misc/zettlr/default.nix
+++ b/pkgs/applications/misc/zettlr/default.nix
@@ -33,7 +33,8 @@ appimageTools.wrapType2 rec {
mv $out/bin/{${name},${pname}}
install -m 444 -D ${appimageContents}/Zettlr.desktop $out/share/applications/zettlr.desktop
install -m 444 -D ${appimageContents}/Zettlr.png $out/share/icons/hicolor/512x512/apps/zettlr.png
- substituteInPlace $out/share/applications/zettlr.desktop --replace 'Exec=AppRun' 'Exec=${pname}'
+ substituteInPlace $out/share/applications/zettlr.desktop \
+ --replace 'Exec=AppRun' 'Exec=${pname}'
'';
meta = with lib; {
diff --git a/pkgs/applications/networking/browsers/brave/default.nix b/pkgs/applications/networking/browsers/brave/default.nix
index f544660913f..1138c1e292e 100644
--- a/pkgs/applications/networking/browsers/brave/default.nix
+++ b/pkgs/applications/networking/browsers/brave/default.nix
@@ -90,11 +90,11 @@ in
stdenv.mkDerivation rec {
pname = "brave";
- version = "1.21.77";
+ version = "1.23.71";
src = fetchurl {
url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb";
- sha256 = "Q7paeGAvdmc4+FP28ASLlJhN1ui7M5fDpxnrh+gbEm4=";
+ sha256 = "17ajn1vx5xwlp2yvjf1hr8vw3b7hiribv5gaipyb37zrhkff241h";
};
dontConfigure = true;
diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix
index 1c3da1c8607..4695667ee6c 100644
--- a/pkgs/applications/networking/browsers/chromium/common.nix
+++ b/pkgs/applications/networking/browsers/chromium/common.nix
@@ -163,14 +163,12 @@ let
./patches/fix-missing-atspi2-dependency.patch
++ optionals (chromiumVersionAtLeast "91") [
./patches/closure_compiler-Use-the-Java-binary-from-the-system.patch
- (githubPatch
- # Revert "Reland #7 of "Force Python 3 to be used in build.""
- "38b6a9a8e5901766613879b6976f207aa163588a"
- "1lvxbd7rl6hz5j6kh6q83yb6vd9g7anlqbai8g1w1bp6wdpgwvp9"
- )
];
- postPatch = ''
+ postPatch = lib.optionalString (chromiumVersionAtLeast "91") ''
+ # Required for patchShebangs (unsupported):
+ chmod -x third_party/webgpu-cts/src/tools/deno
+ '' + ''
# remove unused third-party
for lib in ${toString gnSystemLibraries}; do
if [ -d "third_party/$lib" ]; then
diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json
index dd22d989963..65bddbda87d 100644
--- a/pkgs/applications/networking/browsers/chromium/upstream-info.json
+++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json
@@ -1,8 +1,8 @@
{
"stable": {
- "version": "90.0.4430.72",
- "sha256": "0hw916j55lm3qnidfp92i8w6zywdd47rhihn9pn23b7ziz58ik55",
- "sha256bin64": "0k1m786b94kh7r2c58qj8b9a39yr4m30kkrxk5d9q7dn1abl3wa3",
+ "version": "90.0.4430.85",
+ "sha256": "08j9shrc6p0vpa3x7av7fj8wapnkr7h6m8ag1gh6gaky9d6mki81",
+ "sha256bin64": "0li9w6zfsmx5r90jm5v5gfv3l2a76jndg6z5jvb9yx9xvrp9gpir",
"deps": {
"gn": {
"version": "2021-02-09",
@@ -18,22 +18,22 @@
}
},
"beta": {
- "version": "90.0.4430.72",
- "sha256": "0hw916j55lm3qnidfp92i8w6zywdd47rhihn9pn23b7ziz58ik55",
- "sha256bin64": "1ddj2pk4m26dpl1ja0r56fvm67c1z1hq5rq5an8px6ixy78s2760",
+ "version": "91.0.4472.19",
+ "sha256": "0p51cxz0dm9ss9k7b91c0nd560mgi2x4qdcpg12vdf8x24agai5x",
+ "sha256bin64": "0pf0sw8sskv4x057w7l6jh86q5mdvm800iikzy6fvambhh7bvd1i",
"deps": {
"gn": {
- "version": "2021-02-09",
+ "version": "2021-04-06",
"url": "https://gn.googlesource.com/gn",
- "rev": "dfcbc6fed0a8352696f92d67ccad54048ad182b3",
- "sha256": "1941bzg37c4dpsk3sh6ga3696gpq6vjzpcw9rsnf6kdr9mcgdxvn"
+ "rev": "dba01723a441c358d843a575cb7720d54ddcdf92",
+ "sha256": "199xkks67qrn0xa5fhp24waq2vk8qb78a96cb3kdd8v1hgacgb8x"
}
}
},
"dev": {
- "version": "91.0.4472.10",
- "sha256": "168121aznynks5waj3mm2m036mbrlmqmp2kmnn9r4ibq2x01dpxm",
- "sha256bin64": "05bk6gmmfsh50jjlb6lmwqhhbs0v0hlijsmxpk9crdx2gw071rlr",
+ "version": "92.0.4484.7",
+ "sha256": "1111b1vj4zqcz57c65pjbxjilvv2ps8cjz2smxxz0vjd432q2fdf",
+ "sha256bin64": "0qb5bngp3vwn7py38bn80k43safm395qda760nd5kzfal6c98fi1",
"deps": {
"gn": {
"version": "2021-04-06",
diff --git a/pkgs/applications/networking/browsers/ephemeral/default.nix b/pkgs/applications/networking/browsers/ephemeral/default.nix
index 338ceaa4344..64e26142575 100644
--- a/pkgs/applications/networking/browsers/ephemeral/default.nix
+++ b/pkgs/applications/networking/browsers/ephemeral/default.nix
@@ -20,13 +20,13 @@
stdenv.mkDerivation rec {
pname = "ephemeral";
- version = "7.0.5";
+ version = "7.1.0";
src = fetchFromGitHub {
owner = "cassidyjames";
repo = "ephemeral";
rev = version;
- sha256 = "sha256-dets4YoTUgFCDOrvzNuAwJb3/MsnjOSBx9PBZuT0ruk=";
+ sha256 = "sha256-07HO8nC2Pwz2EAea4ZzmqyMfQdgX8FVqDepdA6j/NT8=";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
index 0971dd3b63f..6b8079d5245 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
@@ -1,975 +1,975 @@
{
- version = "87.0";
+ version = "88.0";
sources = [
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ach/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ach/firefox-88.0.tar.bz2";
locale = "ach";
arch = "linux-x86_64";
- sha256 = "656c92c9a588aed2059f4f68968735f884db6ee94b0619d983bd4affd2100174";
+ sha256 = "12d09c3e723cf3853792d11bfa3344a3cf63cbfea150de441c46e552248d1532";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/af/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/af/firefox-88.0.tar.bz2";
locale = "af";
arch = "linux-x86_64";
- sha256 = "0f8fe2b470177df3525fbf533934c66a5e4abdaa3dfb7848962ac148b224592d";
+ sha256 = "60a0fee46e702ae161639eb3d06e893f157516667606fda241b997ffd356e768";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/an/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/an/firefox-88.0.tar.bz2";
locale = "an";
arch = "linux-x86_64";
- sha256 = "a96ae593965364871d35ba0fd6dcd1029254110ee59f4a7abe27cf6d273c7be6";
+ sha256 = "6b0583486643dc144c42b369cb54cac5ec28ac997e58ca3c29c0dc12701702cd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ar/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ar/firefox-88.0.tar.bz2";
locale = "ar";
arch = "linux-x86_64";
- sha256 = "58eaefaba44b4b0592442e709604b597c74fd81390f8fcc410a8e605956a0bdd";
+ sha256 = "149f7789dc5b356c336ef48788cff922bc69e9daa3bd4c32550cda0683695108";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ast/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ast/firefox-88.0.tar.bz2";
locale = "ast";
arch = "linux-x86_64";
- sha256 = "ca33473b77b8a57c305fe89cdd66b95810441aa54295ed687736a24c9160e45f";
+ sha256 = "55259f1a56bfb5867a17751d8ed8bfd673aaf26c4c97a70dcf99c88e427605d2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/az/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/az/firefox-88.0.tar.bz2";
locale = "az";
arch = "linux-x86_64";
- sha256 = "6965f0b68279228a575dfb503eabae8d75f32e0fa8de119f4d48f0e9ec36d61c";
+ sha256 = "36cc39d24f416717c1b07ab3aec2803c2811603a394c5e7cc3d6545655a883bd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/be/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/be/firefox-88.0.tar.bz2";
locale = "be";
arch = "linux-x86_64";
- sha256 = "a19d6d94cc15d269dbddccae06b4c92a3436e57d45dbebe8c6a2ff23df66fd28";
+ sha256 = "06cc01d0f235d423301dd220941d8f67745a1208015f5d2ba0dfceabc5252dad";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/bg/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/bg/firefox-88.0.tar.bz2";
locale = "bg";
arch = "linux-x86_64";
- sha256 = "885a44cf0acedc5ffbfcc73cce41f6eb2dcab13d070eeb156e64277b346a4fb1";
+ sha256 = "a8753152946e55be48d55858a4aab8052f94fc9a6fa9192fc59a7664677fb85a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/bn/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/bn/firefox-88.0.tar.bz2";
locale = "bn";
arch = "linux-x86_64";
- sha256 = "09773257768f061819fa92ec229c1f94b217c04e78781d8e59a8dc1225f92be7";
+ sha256 = "12daf255bb459ea1e576aef02f008dbceb752700eb91f569761e5d3b10e17891";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/br/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/br/firefox-88.0.tar.bz2";
locale = "br";
arch = "linux-x86_64";
- sha256 = "23ec95e130593c51384a64165c33f02c4c5af753313fbaf8fa0f94bca1184506";
+ sha256 = "8811d1da23da1286a4e2aca81e898a0466665386de80ff1217cac0f399396eaa";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/bs/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/bs/firefox-88.0.tar.bz2";
locale = "bs";
arch = "linux-x86_64";
- sha256 = "30455df45e86894fd5a75ef6b9989b64f49da8ac8bee9656ea2724cfca59555c";
+ sha256 = "1386daaf4d583a980a57a0d8c3a631ed28b46f3988a0184ed0c5c8a03e44e7d6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ca-valencia/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ca-valencia/firefox-88.0.tar.bz2";
locale = "ca-valencia";
arch = "linux-x86_64";
- sha256 = "8ca8a4ee40ac57140560c3aeb664d60be5ecd8842f328544924a97d910c02303";
+ sha256 = "15fbee8c563462b43c128c2c0d7c74d9453db32f078e6d49ff0600e73eefe4d1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ca/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ca/firefox-88.0.tar.bz2";
locale = "ca";
arch = "linux-x86_64";
- sha256 = "3cc1cd1c7657a704d3c6c1a42934eac75439c05af5617d2d24991d62d412237e";
+ sha256 = "0120c9adddfe03e4ed476ca290a0f59cc8fef4064984cde4016bbf12bcbb4730";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/cak/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/cak/firefox-88.0.tar.bz2";
locale = "cak";
arch = "linux-x86_64";
- sha256 = "160c598f55c012fc92c0882f7062a82b8057177398edfcdeb41c60aa83570f1f";
+ sha256 = "7c0d355eb7ab709df66f5b77ede2824e3fdda646b61fd50df7762027c55dc971";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/cs/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/cs/firefox-88.0.tar.bz2";
locale = "cs";
arch = "linux-x86_64";
- sha256 = "1209d5401b55441126bcc64faa9d7692c92d2c009a40587923c048bec0cf2508";
+ sha256 = "4b39fd4bc0c214f3409a446abe13d749a6c25908811f788513d850ebef648b41";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/cy/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/cy/firefox-88.0.tar.bz2";
locale = "cy";
arch = "linux-x86_64";
- sha256 = "d177530e3e31900a38e9127b5d60bcc3b937c76e8b12b13c289a29e2afd06c40";
+ sha256 = "40ca21bb7c715c4adfaee536a42929b10af1faefb73f8103e927b7e8cc1367fd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/da/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/da/firefox-88.0.tar.bz2";
locale = "da";
arch = "linux-x86_64";
- sha256 = "2e623b11e18d38dee391863115af75fae4119894a89606aa6f4194d04a1773c2";
+ sha256 = "b311e549c38b5a49cef0c9a597e208d8d929cc828617e662b289f0d455f4bf46";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/de/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/de/firefox-88.0.tar.bz2";
locale = "de";
arch = "linux-x86_64";
- sha256 = "a29837d6c062ded4aed732cee06fe23773a57d62aecbca1e1a56c9d7a37423df";
+ sha256 = "8916772413c5a615ae4b8ddc2721d5af5ff64cc4c5799fe00873f0a29854f64a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/dsb/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/dsb/firefox-88.0.tar.bz2";
locale = "dsb";
arch = "linux-x86_64";
- sha256 = "cf584f97b136444861845bf1db0fe9d65d809f4a167a0f8bed780f94048fbb12";
+ sha256 = "c0b1c757f55dfb6657fd4090b5e3084af3cca1c2526f9a90efcab844fa5ea974";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/el/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/el/firefox-88.0.tar.bz2";
locale = "el";
arch = "linux-x86_64";
- sha256 = "73d03707575ef3270f7419d031fc85babdc498b1576d316abac273cd88dde30b";
+ sha256 = "04251f33971a40988df8cbdb2875bf2f24e8c878a11661568a45ed7d4b040de2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/en-CA/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/en-CA/firefox-88.0.tar.bz2";
locale = "en-CA";
arch = "linux-x86_64";
- sha256 = "1d11c8a1f23df4e88668beecee244f2d0743b006e46d96e4a6a35bffc341569d";
+ sha256 = "5505a96cfe87f15df89b908f6a769766767d86f98ec878324e5eb26963666ffe";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/en-GB/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/en-GB/firefox-88.0.tar.bz2";
locale = "en-GB";
arch = "linux-x86_64";
- sha256 = "d885931198cf3958fca683ee4c301f25610f6b4d5777068fd812bd53048aecb6";
+ sha256 = "e3a8649ef6107c61c6638317f367db5157acc8ce8989730d2fab7a3bd8c38d95";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/en-US/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/en-US/firefox-88.0.tar.bz2";
locale = "en-US";
arch = "linux-x86_64";
- sha256 = "3c9207bee0a998634c4fd12293acfae207d16508749ad405bf1e8717d06acf02";
+ sha256 = "043e9ded27d8f86ff881c1f95a2626b5bbd7361990d7977320f8e9beaea63c93";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/eo/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/eo/firefox-88.0.tar.bz2";
locale = "eo";
arch = "linux-x86_64";
- sha256 = "3d57787fc840f80271f4d26810f347929a96479ca58bd416bf1f94e3499a07b9";
+ sha256 = "0deeafcdd14dddc9c31e8f68c819bdebd54e8fe6a480c6dfd723ee90da409fb4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/es-AR/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/es-AR/firefox-88.0.tar.bz2";
locale = "es-AR";
arch = "linux-x86_64";
- sha256 = "294c83cce5bbead7c263e950ed8bb2787d4735f4086521726400ef97c5d26b35";
+ sha256 = "b7dd60ba63a4408d94b015ee1529cc5f0c0ee4dfcfe515ed1f8eb7e183973022";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/es-CL/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/es-CL/firefox-88.0.tar.bz2";
locale = "es-CL";
arch = "linux-x86_64";
- sha256 = "4e57c8a517084eee27edb6ad706a250ebb323419407f1ef9c9f9ae4f0dc8d8b9";
+ sha256 = "35fd7dc8d273c73c7fd334ec726da2415140497e81004a453fe144aabb8c9317";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/es-ES/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/es-ES/firefox-88.0.tar.bz2";
locale = "es-ES";
arch = "linux-x86_64";
- sha256 = "9cdea632b1c1365d3c6ec08e9acd154819d081f025473b027da8d5e873da66bb";
+ sha256 = "c7f801a3d4cfe52b3a9c29c9f2d633d078e13b85fde25fe837e887865040f52d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/es-MX/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/es-MX/firefox-88.0.tar.bz2";
locale = "es-MX";
arch = "linux-x86_64";
- sha256 = "3698541ca4e9eb7f5c422082cbacd407870ffb170c9f9d0fe5f0c55dfe2b5449";
+ sha256 = "9e295a332dc7e043dce50f3a7092c89b1fd2ffbcfe99d25f9df34eed33b7b34e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/et/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/et/firefox-88.0.tar.bz2";
locale = "et";
arch = "linux-x86_64";
- sha256 = "86a1986a7c63f63c559d36d3d42e95def0eb8a89075879c3253156e80ed161c1";
+ sha256 = "c023f6c1a279c3e3d0043b535d3e1666f44a7b079905f0c0ebc4dec3edeee8fa";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/eu/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/eu/firefox-88.0.tar.bz2";
locale = "eu";
arch = "linux-x86_64";
- sha256 = "5db12874991a1583ec09c934e18c93225b9831acc857d8c1b633f48c65e7a415";
+ sha256 = "ee39a51081690cc9d13dc68d9cec458ad1c7055ae765ebb26299ae5267c8c8aa";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/fa/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/fa/firefox-88.0.tar.bz2";
locale = "fa";
arch = "linux-x86_64";
- sha256 = "5066d7b66933924442d683aaa19aec9385b66eaf49a55b155653ffba57c287d0";
+ sha256 = "c61aff504e777a48272d61fe0648584f57b509a21f0f2f1269918ed5450e1131";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ff/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ff/firefox-88.0.tar.bz2";
locale = "ff";
arch = "linux-x86_64";
- sha256 = "35c8271fa506fcb43c20ccafb928b109125f3a17f80870a82365bc36f787b5ba";
+ sha256 = "39e47a89cb93b9cfa11030cb227cd9bfaf20434c7a70b91e5aa1ef4afbdf89cc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/fi/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/fi/firefox-88.0.tar.bz2";
locale = "fi";
arch = "linux-x86_64";
- sha256 = "a3a0dc8cee1db20eb795aea5e94efafc96fc624e50159d8be7f449a093ffd291";
+ sha256 = "e71195871fe81b3b6125b8fa2415fd3fc9dd51a01f82ed7ba7f76840b58607b1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/fr/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/fr/firefox-88.0.tar.bz2";
locale = "fr";
arch = "linux-x86_64";
- sha256 = "d9c1cdbbe2bacb06608f60745ab213cf80b27051c6b58f0ed7ef834b839da7fe";
+ sha256 = "2341c8cdd77a355e83d795e007ee1b5f3da783c090f2424914681666e72939d8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/fy-NL/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/fy-NL/firefox-88.0.tar.bz2";
locale = "fy-NL";
arch = "linux-x86_64";
- sha256 = "6f15a66cee03b494edf6a68641e0d5f886fe8528e23b9e129b11702cb9a4442e";
+ sha256 = "23f3ef8f9ca2552c2aa4c3159ff266b49e113888c855553fcec3920e8c317e23";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ga-IE/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ga-IE/firefox-88.0.tar.bz2";
locale = "ga-IE";
arch = "linux-x86_64";
- sha256 = "31fcb9d815afc52db6328b076d89eab85a89d4553748ee7741912d23c420fea2";
+ sha256 = "52b5cba15c62fa709f56d9f767e6f6eb8741480eb8e325e9a9a2c4c4d72a63ce";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/gd/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/gd/firefox-88.0.tar.bz2";
locale = "gd";
arch = "linux-x86_64";
- sha256 = "c9d0b868022bf5c0335ed488df0d6006541cdb7609f8854aedf22b931017ed31";
+ sha256 = "0a9ee7c11ff6d16d2b98fb6933102a310261e2a1f715935e162f535328662d3e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/gl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/gl/firefox-88.0.tar.bz2";
locale = "gl";
arch = "linux-x86_64";
- sha256 = "b546355345950e17202c4f2676731b0fe126d4d551131648f10e8c61cb8a2f26";
+ sha256 = "795d38d83d728f550b6fe3efd238a7eb2760e9724bb86ba146190b141dbce8db";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/gn/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/gn/firefox-88.0.tar.bz2";
locale = "gn";
arch = "linux-x86_64";
- sha256 = "51c403ad0460db69e2ed6213410d9fe2cb6ae9a5f100bd4f5ac7d36cc68b65c3";
+ sha256 = "ffff3d3bd7b0ff27629c3a9776b5e4eb16eb1ddd14aa01dc4073e573ac2674b8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/gu-IN/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/gu-IN/firefox-88.0.tar.bz2";
locale = "gu-IN";
arch = "linux-x86_64";
- sha256 = "dad776c9a4809c574967bb18d1ef96ab8eb5e95df713fe88fce044b755951550";
+ sha256 = "7a745004a27a87c965c3b3c7a3c9179bcffb8114fae7d90a51d0bc092884da43";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/he/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/he/firefox-88.0.tar.bz2";
locale = "he";
arch = "linux-x86_64";
- sha256 = "972135a17b091e8338762c4f3e9c60d826dd8b4f4e65c22d6cb07daabac95558";
+ sha256 = "76ff3a975d0092bcfc98094e5ebfc638a192b0053b2d3c85be96d3dfe63e910c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/hi-IN/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/hi-IN/firefox-88.0.tar.bz2";
locale = "hi-IN";
arch = "linux-x86_64";
- sha256 = "5eec4571d25c0c62a0d773af25b2be93d158e06302a6e5d47a0fa60f0819941a";
+ sha256 = "6136353eff44b6234a111e622fda3882221107fd54ea0910fc659a9ad9afecfc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/hr/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/hr/firefox-88.0.tar.bz2";
locale = "hr";
arch = "linux-x86_64";
- sha256 = "3183694fccb7a9560911d3d0813bf22ef79e1fdc8e72a5547258ff28b5ddbb6a";
+ sha256 = "a71b3730bb4916214122daf8ad3847a58d7d4fc0b4ff583080f64c6721962c83";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/hsb/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/hsb/firefox-88.0.tar.bz2";
locale = "hsb";
arch = "linux-x86_64";
- sha256 = "82c02b623b0833468950a174a6c46bbf6c657252f0f876abb48e5b839a51f0c8";
+ sha256 = "9128347b9d06a6025b4dd4d7f864b0c8a8a3f49b786e79106e39514bffa14a87";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/hu/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/hu/firefox-88.0.tar.bz2";
locale = "hu";
arch = "linux-x86_64";
- sha256 = "0db68343a32b3a69b323b8cf7eade47a453499e092eae5d57414739e2ea92619";
+ sha256 = "489550b063134a992e284d895e738c994109f700338b9158ef8c91c171ce66ec";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/hy-AM/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/hy-AM/firefox-88.0.tar.bz2";
locale = "hy-AM";
arch = "linux-x86_64";
- sha256 = "65b9c3902feac56c5563fe24a8c1d0f3510fca9b90062f88e4072a0ef6258c06";
+ sha256 = "16b015356550f9a73ba2fcbb9e0a36936204da476da359f2e3bae57c08353e29";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ia/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ia/firefox-88.0.tar.bz2";
locale = "ia";
arch = "linux-x86_64";
- sha256 = "50023eb339a5886cabdf7b71a65ab130fd0a5609cf18ceec9266100ce96e7c92";
+ sha256 = "9a543e14b7974e94e8ac6dab92a860b7cec778910f91060207c576cfd5ea1bd4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/id/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/id/firefox-88.0.tar.bz2";
locale = "id";
arch = "linux-x86_64";
- sha256 = "9a7279bcaeed8c6f6c44c4af728eddada5a96fd3c0204d10cd647d09721ec4e5";
+ sha256 = "970652219ba2228cbdd187d45a49f64cb8020220ac94e798896c5668bea90a44";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/is/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/is/firefox-88.0.tar.bz2";
locale = "is";
arch = "linux-x86_64";
- sha256 = "697d1ac2cbc467d8526b8cf6a525b21a22fecb78f421936901ed3ecf91911146";
+ sha256 = "d7011bb2ddb09d6f446ae9d8f790f0bb5382605385c8dbf04e200fe6e63c495a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/it/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/it/firefox-88.0.tar.bz2";
locale = "it";
arch = "linux-x86_64";
- sha256 = "4f51f5c632f21a0b589e2c358972f69107ccde6a32c5619e5b9273cd54198e98";
+ sha256 = "a58681975cf3a79e32413d9b21655b6ace0ee2ab0df9ac45485344bf2f2f3fc7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ja/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ja/firefox-88.0.tar.bz2";
locale = "ja";
arch = "linux-x86_64";
- sha256 = "2ce4af36d057c26f8b9f95b3c578dc738ea9ee80fbbb20f0c7257312499fb3bc";
+ sha256 = "b86e095903bc54db0bf0c6bbdc25184768c1537d57ccacf71a0da1d946bcf398";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ka/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ka/firefox-88.0.tar.bz2";
locale = "ka";
arch = "linux-x86_64";
- sha256 = "9d4d54895d3237c7431c367a5c9fc07b99b11c91a1645e89fa7668111bb70ffd";
+ sha256 = "e7e5277b9e239a8738f96378c87de3e204df9f530936a535aad991b6690f541d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/kab/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/kab/firefox-88.0.tar.bz2";
locale = "kab";
arch = "linux-x86_64";
- sha256 = "4e67ce270e0a56f5acbe61a22368bc011ccf420201716bd36f5aec42a5d477bc";
+ sha256 = "27b5edd4248feeb06f7c342a6f48b63ed98bfcd1d44f8ff467a204019b80263b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/kk/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/kk/firefox-88.0.tar.bz2";
locale = "kk";
arch = "linux-x86_64";
- sha256 = "c1f1feaad98c108f73d575c2b59c3ff2fa26f9fb97a8d30182aeb4bd587063b1";
+ sha256 = "3187839a8941b3ceb64c42e084837ed5c9d01f0c518378fe21e5956bf5d4859d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/km/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/km/firefox-88.0.tar.bz2";
locale = "km";
arch = "linux-x86_64";
- sha256 = "f99973849aa9e9ca4f7534cc6eb3bb7ccd75cf95f600a4a124dd2750da16d2a0";
+ sha256 = "6c0df74570cae46c379ee7271608449a31f46c3bce030613cb04edf1ff6d16f8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/kn/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/kn/firefox-88.0.tar.bz2";
locale = "kn";
arch = "linux-x86_64";
- sha256 = "4625c75234dfdd35aaa383ebcef3ba9e093c73aec2ca524a0f7b5b28a2438de1";
+ sha256 = "30116c65417489496836aa71771a3e4d01ef420d12d080ab8f5d02e6c713a513";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ko/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ko/firefox-88.0.tar.bz2";
locale = "ko";
arch = "linux-x86_64";
- sha256 = "d65454c1b36d26d7df7a1eb510f73e7fea47431c6e51dc2119ae6932e11f351e";
+ sha256 = "e73f7ee38b5061ab6b89b6c9817d1f70c85e4b6eacc22f6780a72c308bd8dfe9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/lij/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/lij/firefox-88.0.tar.bz2";
locale = "lij";
arch = "linux-x86_64";
- sha256 = "ef7668799697e1d9c35661f1f6c403307a6deb6b2f265a2906d8baa699c224a4";
+ sha256 = "c98b27de29c3f98e13b4b3803233f3d99eebe04f33d6761c64464872941a978e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/lt/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/lt/firefox-88.0.tar.bz2";
locale = "lt";
arch = "linux-x86_64";
- sha256 = "bd34fdcad69d3e0c79e226899d0df49e5244a4072446fd1cb7a290261f8473c1";
+ sha256 = "bb12e24f967b51b0ad2c7cfd0111f6c128f854a61d99e8262d64a5a4b2b972f2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/lv/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/lv/firefox-88.0.tar.bz2";
locale = "lv";
arch = "linux-x86_64";
- sha256 = "34c379fa36cb7d1de95c99bfae8476f57a40d6d041941ad1884a8314f8511499";
+ sha256 = "65e19afa82c25c3793297db156bc72fae45754bf709cf15f4a6cd6aebf8af314";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/mk/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/mk/firefox-88.0.tar.bz2";
locale = "mk";
arch = "linux-x86_64";
- sha256 = "4a9020fd5864d35efda8ee36454d72392ef3d2e5c50f0bcd6e6f3326dc8fb984";
+ sha256 = "f7717adeb13e7592f3940867b47ad6a53172c7b99dbe5904dc78838d7230d22a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/mr/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/mr/firefox-88.0.tar.bz2";
locale = "mr";
arch = "linux-x86_64";
- sha256 = "6195db5fcfb95148c243d7fa4675fac0467f1093191bbb02dba714723a4f833a";
+ sha256 = "db9cc5d8f42595824792ff2cf80e67eab5f54a9cda7f87a0a81582d53c72ab61";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ms/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ms/firefox-88.0.tar.bz2";
locale = "ms";
arch = "linux-x86_64";
- sha256 = "95410958dbe73ead9ef89fcd81bdc3bd0bc6079cb8997962fd43fa07c6b546c7";
+ sha256 = "3daa35a19a5fad78ad81381f48c1e27ebe70f5be03634594f30097645f061593";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/my/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/my/firefox-88.0.tar.bz2";
locale = "my";
arch = "linux-x86_64";
- sha256 = "c43a08c4410d7d5d48c29ebbb96765d45dcd20335125bc664f5593d56440e8f6";
+ sha256 = "de0f442f18cd82669b222bfd30aab14d1130e55765aee6992f7632f9b681284d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/nb-NO/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/nb-NO/firefox-88.0.tar.bz2";
locale = "nb-NO";
arch = "linux-x86_64";
- sha256 = "7f39e801ca6ce05bf6398b914acff4a3cd9016503a4401f9b51f92bd4b2c6737";
+ sha256 = "207136b91b4c830ed9c2bf4ba11b6a9f42696a3cd5b6815de1b9b4d8f265817f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ne-NP/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ne-NP/firefox-88.0.tar.bz2";
locale = "ne-NP";
arch = "linux-x86_64";
- sha256 = "b3ccaa031229d8e369f1acedb49bd159d282cd771205beb2876a8c7d4fc90413";
+ sha256 = "47d3322091d3663d4544d7551ff1127e01b64a773770651fb320f56379b24e9f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/nl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/nl/firefox-88.0.tar.bz2";
locale = "nl";
arch = "linux-x86_64";
- sha256 = "3647e87528883cd7bc3310000f77237dac6dc57b62b664c434b16b9bf736930c";
+ sha256 = "d4e06fd6bc83235dbd1ec49cd8e4bb0a0a62d735221196770f1268c79228b5be";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/nn-NO/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/nn-NO/firefox-88.0.tar.bz2";
locale = "nn-NO";
arch = "linux-x86_64";
- sha256 = "3a94b93c5bd68f82ff9d310295f6397b902390061d21c0560a0906415e7150f0";
+ sha256 = "57e49d9d199bb48ba594e21e5b57931785b9404d32259a45164a24123d9d1bb8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/oc/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/oc/firefox-88.0.tar.bz2";
locale = "oc";
arch = "linux-x86_64";
- sha256 = "a6fcecb568052565e051879487b34fce54b0e3ca3cc761dd27749d949153523b";
+ sha256 = "1108761ce4c7cb13077c4ebc6d9704923aa91f5affbae618768b9c855cadd784";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/pa-IN/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/pa-IN/firefox-88.0.tar.bz2";
locale = "pa-IN";
arch = "linux-x86_64";
- sha256 = "14b10789c0d94e60c85be5594a0a11654a31e60518c78c04e4bea2b5e64843bb";
+ sha256 = "bef979c51a367f733a365b3e7153dc7fa7b150d797ec15ed818983d81eaa4044";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/pl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/pl/firefox-88.0.tar.bz2";
locale = "pl";
arch = "linux-x86_64";
- sha256 = "44aadea74c71dc86d7a5e0cbc04acbe2e26e46add5daaf0f8b31c4a17b439346";
+ sha256 = "69bc8bbca55a74d243fecc95d60d2c6075b911375b0bdebf6a4e238ee4f5b2ca";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/pt-BR/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/pt-BR/firefox-88.0.tar.bz2";
locale = "pt-BR";
arch = "linux-x86_64";
- sha256 = "057eb47c7f45a1c0005a508bb36ee04b3edfce0e23e175fa311c9f1cc49b7e03";
+ sha256 = "c75ff2eca174e9ca9787c6e56e6e956c65027d111e8e05fa80a67df36b438dd7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/pt-PT/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/pt-PT/firefox-88.0.tar.bz2";
locale = "pt-PT";
arch = "linux-x86_64";
- sha256 = "dd33f93ef7acd1e183902bd85b292b7073beb9fca3b46279f0405bcd06016771";
+ sha256 = "fae035e106d4fd6fc19bcb0c081bb62bc328820b09f2ca40b30eb9542a7de046";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/rm/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/rm/firefox-88.0.tar.bz2";
locale = "rm";
arch = "linux-x86_64";
- sha256 = "dd7649d8de678648f54a6dab7a66246abb6b514ccb5044eebff5f6689bae99d7";
+ sha256 = "cd0ddd73f2281d88b5ecb6a6a92aac7ecb3a0d73074a3f8fc03d16cdcf30cc17";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ro/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ro/firefox-88.0.tar.bz2";
locale = "ro";
arch = "linux-x86_64";
- sha256 = "bcbc82632f8a6802285f23bf0238738a5abe5e77d70596261cf7fbe6649c9560";
+ sha256 = "6d028e81212cfc2e450ce7824771292706b458b6fd6c63764fae2b0804a8ed7e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ru/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ru/firefox-88.0.tar.bz2";
locale = "ru";
arch = "linux-x86_64";
- sha256 = "bedcd965e2a460bbe2aef0fad6bfe524044ad29225d26009d5311b8796bcb64f";
+ sha256 = "bff057c7306cc5d2c553fc744552bdb249e32a381d34007fd469247a4f22960f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/si/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/si/firefox-88.0.tar.bz2";
locale = "si";
arch = "linux-x86_64";
- sha256 = "bb93e1dc7621094f32e385632844169a8dc51369be8c5ca459dc17708e1d1ed8";
+ sha256 = "c73e53ce7498ac770a236f1f606dad29ce3ea6fc03713a223997b6e272cdb5c1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/sk/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/sk/firefox-88.0.tar.bz2";
locale = "sk";
arch = "linux-x86_64";
- sha256 = "d7dfbfcded930a7d8aa03e482c66004202824256255cf08aee5a84a41d825285";
+ sha256 = "ceafe41adedf9b9a354ddc9117a879b72f4331e4f7ff3ca3cbcce153b6cc7e42";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/sl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/sl/firefox-88.0.tar.bz2";
locale = "sl";
arch = "linux-x86_64";
- sha256 = "3ab06c56331850805e8e925deefb3cd0d21913fe88e04d6cd16ad9c59041d444";
+ sha256 = "3b39bdecfc71fff21040e28301b0c8193119f38e1a0877b168504f31dcc33d19";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/son/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/son/firefox-88.0.tar.bz2";
locale = "son";
arch = "linux-x86_64";
- sha256 = "6b93d5b1eeaf64ed591a285b1384d63dec16f388609c845e12f4565ed2bb32af";
+ sha256 = "437a98ebc049dd93537a52cfb56e19b1dd1142a61e9eaf0272e5bf490cb82022";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/sq/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/sq/firefox-88.0.tar.bz2";
locale = "sq";
arch = "linux-x86_64";
- sha256 = "834a04d54a73886c58d0360c675b137b44a69b34003e5d77ba8516397e976874";
+ sha256 = "51b5da749c31fa8ca7af7b11d67f4b4d15c6924abed95d54c74c3107ba4b8fa2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/sr/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/sr/firefox-88.0.tar.bz2";
locale = "sr";
arch = "linux-x86_64";
- sha256 = "d629d7004fd5c3298e61ec154c7983b8b7bcc4ee8552ebbd53df81eec85e5cb0";
+ sha256 = "c8a99c7a3a2a7bb2a2e6958f0e7d0d5e13441e758a024a7a2129e6adaaa41cc4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/sv-SE/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/sv-SE/firefox-88.0.tar.bz2";
locale = "sv-SE";
arch = "linux-x86_64";
- sha256 = "c3d19f42894dac47f78684ea1a9bc9d7a6fbfd51b4186bcb06679a6666a280e6";
+ sha256 = "a2ec634c6f269de30f6020946e76a42ddb592da4636bfa64d87dd4711a1adbe6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/szl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/szl/firefox-88.0.tar.bz2";
locale = "szl";
arch = "linux-x86_64";
- sha256 = "3572e4ef3dc20960e60f342e0dcbb4ca374c9184cf84c40d644c3677b8dbf4b8";
+ sha256 = "4bf6b15dd8fd99ed8d144091ae1e6ed4a1d9922d50c9bab6f5569b73ef695213";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ta/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ta/firefox-88.0.tar.bz2";
locale = "ta";
arch = "linux-x86_64";
- sha256 = "b2f40c2f906fa1cdc67ba12faaab62468e71b9c9ec1c28790db56a4728e5f897";
+ sha256 = "959cd948b386e2416c905eb13de3b22b94cf3d6592458dbe52106e6eaef9837f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/te/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/te/firefox-88.0.tar.bz2";
locale = "te";
arch = "linux-x86_64";
- sha256 = "81f135e5b9e1c90cb22baee13c5ebd5d2a954f3d3a31be74489eb9bbf4dda7ce";
+ sha256 = "8e1b26c7c4340665ede28290ae8298a877a735f078bf9440fefc65d13c0675d4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/th/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/th/firefox-88.0.tar.bz2";
locale = "th";
arch = "linux-x86_64";
- sha256 = "dac4e7326e9a2b0c6eec8361ebcf23afc95087f5fabb964c7802856bd8de02cb";
+ sha256 = "d724ccdebe9a34909bd379d06c4af9beba245525374ccc090c492c3a95d65115";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/tl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/tl/firefox-88.0.tar.bz2";
locale = "tl";
arch = "linux-x86_64";
- sha256 = "9be7f3be1ebdfc19c8da8a70b1eef8108c6508dc6c37b39824ef11756f62768c";
+ sha256 = "76ec33e8f4a2b75e8f2b3c115c9b366d3c508ad9f1a33c942a7a6062525e51c8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/tr/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/tr/firefox-88.0.tar.bz2";
locale = "tr";
arch = "linux-x86_64";
- sha256 = "d7be3f1cab9759042cc30002063764dc66a9f622df71291daf93faa204090b02";
+ sha256 = "6aad672d2b197a23418fcc98347829fa00b9099b8e48812b05c6da5a57ecc175";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/trs/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/trs/firefox-88.0.tar.bz2";
locale = "trs";
arch = "linux-x86_64";
- sha256 = "31b5dc1f40614975a8e3fa05caa0dd8dcab6b15dd0ff1ac4626d9c19b3e763ba";
+ sha256 = "061c0feb9d7cdc622d5eef97b8b4fe5153f0900358349c1ec1ca95d7c4a8f744";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/uk/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/uk/firefox-88.0.tar.bz2";
locale = "uk";
arch = "linux-x86_64";
- sha256 = "a53842d484e2a632931a72b16b3c8e30c902dc1e46c3cf2a7711bea1fd0911b2";
+ sha256 = "77b603973f98b6ccd577a1daad05351b41a04d00b91a144ae9385d76a7c87c42";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/ur/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/ur/firefox-88.0.tar.bz2";
locale = "ur";
arch = "linux-x86_64";
- sha256 = "1353882717c9ae8e35523ab403870fb08f06ddec2df0730637195b1ee112e746";
+ sha256 = "e1f814600f1fecf237ba80870c8b70f548e994827618d2cc9c220b4ef15c6404";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/uz/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/uz/firefox-88.0.tar.bz2";
locale = "uz";
arch = "linux-x86_64";
- sha256 = "43feb49aefcd292f61faadda2771251017c6104038ab1474d43f5cae1e8ee3ab";
+ sha256 = "032c603683f2e26956809835d38abe4676d9383917d56f5e64735754784161a6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/vi/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/vi/firefox-88.0.tar.bz2";
locale = "vi";
arch = "linux-x86_64";
- sha256 = "d74a8de627e877e9c28cd19832605e039398dcea312a4784099151972d380516";
+ sha256 = "3504f2c00d2b2225167200a7f1b809a71d2168d6c2cb048c94d221f40417a1a5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xh/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xh/firefox-88.0.tar.bz2";
locale = "xh";
arch = "linux-x86_64";
- sha256 = "3251086b6f58c311906c49a6b499db17eaa3122a8ffcafb6f303db0489530560";
+ sha256 = "68611d455147c4aaefaf1ad026d42a9600af923bd261b3326eb4395c7791ba60";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/zh-CN/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/zh-CN/firefox-88.0.tar.bz2";
locale = "zh-CN";
arch = "linux-x86_64";
- sha256 = "4d3471f60685d251b10dd1dc06610bb3ebf9d7a4e03616a6f6d988278868dc05";
+ sha256 = "cbe315c6e9e4c05ee308a04d352c2573d9197b3aa200cfd82195fce852c017f5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/zh-TW/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/zh-TW/firefox-88.0.tar.bz2";
locale = "zh-TW";
arch = "linux-x86_64";
- sha256 = "8fcfa5987a0cfa37d5408c88701378e970960d21d181342ea2a3d6c43f4e4cc3";
+ sha256 = "e130ed291b9833c687ba1c11c6abb192c8ea258ee5f7300a5cd5f0154d634d5f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ach/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ach/firefox-88.0.tar.bz2";
locale = "ach";
arch = "linux-i686";
- sha256 = "42ba93ba360aac202bd0b653a982dea3c1ea0d5cd6c530deef47c29c189c197f";
+ sha256 = "099c38d992da934be008e40b4ea0cce6e46f45f838cfb64b5e0b129a10f9f9af";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/af/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/af/firefox-88.0.tar.bz2";
locale = "af";
arch = "linux-i686";
- sha256 = "9aef316b230194ec02ebb1e7780e61d85b1a4cd398d56ec0c5238bfb9af8278d";
+ sha256 = "56a0573fe7cb11133264363307ce3810177c6f03415ed3bee895765a4e737652";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/an/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/an/firefox-88.0.tar.bz2";
locale = "an";
arch = "linux-i686";
- sha256 = "a645abc8fafb548a495efdf9e88ce96af06d0fa4703ed5ea6b63ae79d309f3f6";
+ sha256 = "f0e12115504b079863d30ffc7e19f497c4563723023a3ad40b293c2d305921c0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ar/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ar/firefox-88.0.tar.bz2";
locale = "ar";
arch = "linux-i686";
- sha256 = "c85e9eaf8480ec226eab70a8b434f56fbd5f4f8a7e57f13b341d478142e4ef99";
+ sha256 = "2793fbba47c73a9c86bdb6665c7d28e7af5a0c6145b6751eb0bd38a3ec890818";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ast/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ast/firefox-88.0.tar.bz2";
locale = "ast";
arch = "linux-i686";
- sha256 = "96a1fe1ab748ba2f99a23fd149f1d0b60a27f4d96ad12bb2473ec0393597e968";
+ sha256 = "e55e686603b6b827c49e87d52b547952b09ef0ceb105224b6ede539a5b269c8f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/az/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/az/firefox-88.0.tar.bz2";
locale = "az";
arch = "linux-i686";
- sha256 = "52d3bc8e60196814f7ed1d1732faf32b4129a25379e9f526db7e6b755bbd5746";
+ sha256 = "a491479be97c794fc89184e32dec3fb6bd1775139ec0e02fcf0b8679ce8d9697";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/be/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/be/firefox-88.0.tar.bz2";
locale = "be";
arch = "linux-i686";
- sha256 = "8cadf14d2ce8341e8a6a11a298203e121125d12ca63833642186b79ae79b5643";
+ sha256 = "5561e4e9730ac83d94e0e19cb7509cbc8986559e49d4386059021ec776b7ce60";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/bg/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/bg/firefox-88.0.tar.bz2";
locale = "bg";
arch = "linux-i686";
- sha256 = "b60d8361c16f9b200255e6a904fdbf8da00a6f33a95280e456b471d54cac75d4";
+ sha256 = "8ffbce4041bba8a69fc3cde897e816c2f71a675a0935415d219835535a4644b9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/bn/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/bn/firefox-88.0.tar.bz2";
locale = "bn";
arch = "linux-i686";
- sha256 = "1818bdfc297e2928255c006f8772478ce574c34748102ef64c5645ff59e3e2c3";
+ sha256 = "826eed8716f6b02858f17d75da1dd39b7914c9b487c074c9065fb49917825b12";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/br/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/br/firefox-88.0.tar.bz2";
locale = "br";
arch = "linux-i686";
- sha256 = "7989cb7ba1a6984891c6eaa48a35b09281d0b8c7532c46cb1c87008bff5b68fc";
+ sha256 = "3c2dc18b43a925d8bd0c46e3c108a74e07fb122ae72e723c108b9fdf8e0b70a1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/bs/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/bs/firefox-88.0.tar.bz2";
locale = "bs";
arch = "linux-i686";
- sha256 = "d618086558e44219582ff263d9555855bd562e0a8b9d588c2a03734d003e1138";
+ sha256 = "459bd06be3caa151b38fd3260405a8ef9d13fc445be4c6a218fe0074ad7140bf";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ca-valencia/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ca-valencia/firefox-88.0.tar.bz2";
locale = "ca-valencia";
arch = "linux-i686";
- sha256 = "8f74cf450192bc9dfd2877269f98663ebeb06fdd0cd6d25db3261e5d1f6b36c2";
+ sha256 = "506d8950cdfc9ecea83789d9116c2fbdc7541d756f7e07db710b7dbf7eb51118";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ca/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ca/firefox-88.0.tar.bz2";
locale = "ca";
arch = "linux-i686";
- sha256 = "dee6a1ded1c10b4771294435c23e433ed209dfe55db9cbcc0454b0da23d26cec";
+ sha256 = "c0ae65141073ebccd18c0e053198db998225150c4c1724bf0d07cf8954198e41";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/cak/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/cak/firefox-88.0.tar.bz2";
locale = "cak";
arch = "linux-i686";
- sha256 = "9e55f71f4040c21d79fabe4487cf5b660baca37c23875a31015e70a520fe0737";
+ sha256 = "5cc2ed5014cedec417a1cdfe193364031163b0c03c26af49293e54401c071ae1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/cs/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/cs/firefox-88.0.tar.bz2";
locale = "cs";
arch = "linux-i686";
- sha256 = "3121a7d49718ebf6c9a8babe0f57962547b54b99864f917d045f78ea4a4aede7";
+ sha256 = "49ab8e8599bc78d1c7613d6b58f1a3da63af6ad6a4029fcb1977c3181eb190ef";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/cy/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/cy/firefox-88.0.tar.bz2";
locale = "cy";
arch = "linux-i686";
- sha256 = "02c5a049462f3d4c0a538a62756af8b4e59b1acdfc4d92d43639ee3a27e568a1";
+ sha256 = "1ded8c796d12aac6d0767b1694f1a3ba7a852c8d9feaa1b1f3158c561539e553";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/da/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/da/firefox-88.0.tar.bz2";
locale = "da";
arch = "linux-i686";
- sha256 = "8bc3ad5f69850d0fd4c91ef2296462fc2c641e8eb9835ac5ffe88a9dd518821a";
+ sha256 = "f17e25561c7cc08b70dc66eb7904f9f4d27eda7ab1e79beca813b6ec86b8774b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/de/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/de/firefox-88.0.tar.bz2";
locale = "de";
arch = "linux-i686";
- sha256 = "2e9e562e10477f4a54d677bf2cd6becf87e4f40336fea8f4337f5e7d928f28f8";
+ sha256 = "6fdbff1eed3657ef9979d1e63941ed4e9340de8741c03c46075841f1acb10e95";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/dsb/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/dsb/firefox-88.0.tar.bz2";
locale = "dsb";
arch = "linux-i686";
- sha256 = "fc1881741d5aeaa5cc34e9b86515c8ad637984d88814c48f8f014dfab55bf02c";
+ sha256 = "2a8ad12cf7487892097a6673fa9dade3fb30163c5d5fe5ad61c7ec417aba8363";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/el/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/el/firefox-88.0.tar.bz2";
locale = "el";
arch = "linux-i686";
- sha256 = "cc44c88c82adbdcde8690825851711b48212a49aa74b7485cc51d234a5027cfa";
+ sha256 = "e7b74c223382724059e70608bc62946a792203b5c688d4802de70d25955485e5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/en-CA/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/en-CA/firefox-88.0.tar.bz2";
locale = "en-CA";
arch = "linux-i686";
- sha256 = "c6a32c84bd3ed42ee801a5780cf45a6061fc8b37de4220907a98d674831c0a00";
+ sha256 = "eac978e84c34544bcea96a6c57b59644d7d282c4250942b7acf8365aadbf8e5b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/en-GB/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/en-GB/firefox-88.0.tar.bz2";
locale = "en-GB";
arch = "linux-i686";
- sha256 = "cbf4e049602873ae13eabc2176657bdfb95fd4277360991ab4ef2a4e7be697f6";
+ sha256 = "c1c69617ea1e048a2f141592b602745d2e9e556172f896379d5fdfb2b2c5c3c7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/en-US/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/en-US/firefox-88.0.tar.bz2";
locale = "en-US";
arch = "linux-i686";
- sha256 = "9127aee106dd9f09fac0c3cb89c5d75553384da4ec9be5943b60a5f55f31fccc";
+ sha256 = "a6f45b2aac37f917c0e3b8450cce94646f8734215d8f04a896f21cdbca7ba77b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/eo/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/eo/firefox-88.0.tar.bz2";
locale = "eo";
arch = "linux-i686";
- sha256 = "7f75cb2fa8c73bc98a4d5b0f60ddbc66eff63a9caa271b98bb8eb4897fecdd49";
+ sha256 = "73f658ca036879f9a70a1f9205c7da2899b1c1c59e58d957e165ea7bbcd5e34b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/es-AR/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/es-AR/firefox-88.0.tar.bz2";
locale = "es-AR";
arch = "linux-i686";
- sha256 = "090b13b1698e70c0d13409ffac5b45a044356556e3ecab970fd34907e16cfc11";
+ sha256 = "6a5aa32bfb51de74b2d5c3567550ae0ed2820fbc302a48449a3ddc1f65eb279f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/es-CL/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/es-CL/firefox-88.0.tar.bz2";
locale = "es-CL";
arch = "linux-i686";
- sha256 = "1453a40f9c2ae6794dc886d1c5462e4341141fe84792e32a08b0e6c4ac5183c9";
+ sha256 = "4c2d5cead45a8535a6c2e1a64bde129cf104ef1d4cf4d85a673c7b3500c1609f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/es-ES/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/es-ES/firefox-88.0.tar.bz2";
locale = "es-ES";
arch = "linux-i686";
- sha256 = "3dc986b05c389dab03cacd1672c8621f1ec93e5781dd79ec18358e3a1f2e8f84";
+ sha256 = "8f8c2bb4af01cb144f751ecc9dd010ea24f557b75d7c08a09eeb023945c4cb62";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/es-MX/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/es-MX/firefox-88.0.tar.bz2";
locale = "es-MX";
arch = "linux-i686";
- sha256 = "e6b18f0adf5ff99d1c7f84dbabc00b44ad7c3c2a4b95586f58d18421f28dfa1c";
+ sha256 = "4dedabb4b1e51e22e2eeedbb448f96c4f7e6dd44b3e5fc414a81a22b1e03c73f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/et/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/et/firefox-88.0.tar.bz2";
locale = "et";
arch = "linux-i686";
- sha256 = "573cabc8b8eed9e80d43ce960660737fad1f3bf43266d3e72ea475bec931eb9d";
+ sha256 = "23b5abc7775a964ba1ee5752f8b61c7edf4c1e1eaf8962b66f13ac638da9ed25";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/eu/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/eu/firefox-88.0.tar.bz2";
locale = "eu";
arch = "linux-i686";
- sha256 = "5b3d1ecd842b30029fa1749ad7a1aa6486bf96f977d5f274ecababe7909c71b0";
+ sha256 = "3c87dc6406ca147713e5530b773581333d0c0835cab15d3e3254a4dab5e74e0f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/fa/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/fa/firefox-88.0.tar.bz2";
locale = "fa";
arch = "linux-i686";
- sha256 = "41edf84920463d8c1f6ac8a8c0c5068143652129ec42377e3a3973d54e8477c0";
+ sha256 = "b20949a6b54614935ca46ab5c7f2d3116ac3323a775ad812096d964cbd05dbc4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ff/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ff/firefox-88.0.tar.bz2";
locale = "ff";
arch = "linux-i686";
- sha256 = "492d2b1307558b1b19b5d1d88bcc0eb151d00ebc1331356520068597614919f4";
+ sha256 = "6f26c249f264b714e22402dc079d54fef92e1092a3ce12fbd61be283835c32a8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/fi/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/fi/firefox-88.0.tar.bz2";
locale = "fi";
arch = "linux-i686";
- sha256 = "f495c5d6965c2fdfd06d23616f4b017c600e07efc22984be743c3eadcb5eceb5";
+ sha256 = "f6bdd115eb26dad32b019c8e854e2bc1f67b7a3d56cd044199ef0cb4c79a3d29";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/fr/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/fr/firefox-88.0.tar.bz2";
locale = "fr";
arch = "linux-i686";
- sha256 = "ba0cbea290a3911a6bc24fd52e726234f90213b05756a57aeeb01a8ebcc7af73";
+ sha256 = "bdf941c1a60dd2018d341e439acb7746401298b7492ec1e93b2fc744f3ace4b2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/fy-NL/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/fy-NL/firefox-88.0.tar.bz2";
locale = "fy-NL";
arch = "linux-i686";
- sha256 = "9e9dfcea10f89836b3d63420f90f992b123dcec3beceb3eb739d47b15ced4a1a";
+ sha256 = "cfb472e1e98f0ec8a9a6b24e8f31113ab25fcb7d1a01ddde09004414a0ac7954";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ga-IE/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ga-IE/firefox-88.0.tar.bz2";
locale = "ga-IE";
arch = "linux-i686";
- sha256 = "316b6877a46f452d628509bf94c4e729080d93cb8590d8c17f9ce030823a3b86";
+ sha256 = "20aaafb2d88eb09863ffb17c88df2d31aa20089672eef91e19c26795fb083de7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/gd/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/gd/firefox-88.0.tar.bz2";
locale = "gd";
arch = "linux-i686";
- sha256 = "34f2b2660f76ca13697ca029fe06cbdada7e8a0ee3f703c55b5290af4f59d687";
+ sha256 = "af7d5ff85091ffb76cf15c0ed10e1148356fa5c3985e81a38c08c04f5c281064";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/gl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/gl/firefox-88.0.tar.bz2";
locale = "gl";
arch = "linux-i686";
- sha256 = "b61531887132193a3b68fc1394682305bf242bb8244f19c6e6dc158b0e6dda61";
+ sha256 = "28b4c52dd5191a5990a540029df8bc5ac40d5e38c23e2bbb0a2f9bd73623e74f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/gn/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/gn/firefox-88.0.tar.bz2";
locale = "gn";
arch = "linux-i686";
- sha256 = "286d7c949488a93370055dc650a70825df689b496de47382c7c326d0be16cf11";
+ sha256 = "5834d96a0daaf084c0ddf33490287ec2a3c376420db87904e550cf341953567b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/gu-IN/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/gu-IN/firefox-88.0.tar.bz2";
locale = "gu-IN";
arch = "linux-i686";
- sha256 = "c04e2f3cd9514b8494122af0baa474b2e3ac91d62939ec1117f3b07efbffecc0";
+ sha256 = "025f19f373cbb3bb26029e119653a8fb1b8451166959493a75cbe89e16ae6d0c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/he/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/he/firefox-88.0.tar.bz2";
locale = "he";
arch = "linux-i686";
- sha256 = "9f4436ba36fe3d73f22c0837fa124e712c58169d9db1cccaad91187d895f4b95";
+ sha256 = "3f6433e730b5a5ba0d1da4cc1d69e497b115394f5be5a8f91888bcfccfd35d92";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/hi-IN/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/hi-IN/firefox-88.0.tar.bz2";
locale = "hi-IN";
arch = "linux-i686";
- sha256 = "e1c3674ef1a401c6f8f5f9f3f4cfdc9a858fc670f71d0b09d79677820ed6ddb1";
+ sha256 = "7ad200b8615fd8a703fd142314d72e4769f07ba420b62009d0985ff850305a4d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/hr/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/hr/firefox-88.0.tar.bz2";
locale = "hr";
arch = "linux-i686";
- sha256 = "7dc0f6c2cf38f90741a8c0a2f5df22b32abb6399d9b24cc827f1ae972a481b23";
+ sha256 = "b1dbefc5e048a496ea95abf5f25ace36e1d901a0ce4d1525606eb1337ef73212";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/hsb/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/hsb/firefox-88.0.tar.bz2";
locale = "hsb";
arch = "linux-i686";
- sha256 = "d59ee63de2bcb95575a782294cad35a0ea99eb4c8e4bde8539cd20326d85b41b";
+ sha256 = "54d82c14cd3dcba66b1efd8d9e44f69827c51f7ffa6bbfcfaa82be3c0881d2f7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/hu/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/hu/firefox-88.0.tar.bz2";
locale = "hu";
arch = "linux-i686";
- sha256 = "c9d13a693183290db6a62eda37da63f0d1535db5604a6f62d88b990ac3ea39ef";
+ sha256 = "e70da56c35e3f133a8942a08a97fc0905887e722d684138329d45195d4281254";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/hy-AM/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/hy-AM/firefox-88.0.tar.bz2";
locale = "hy-AM";
arch = "linux-i686";
- sha256 = "7edb84df00e57987f4cbef235a1fecc22b6dd7aaafe101f62e002e4e59caf56e";
+ sha256 = "ec8a7e6a0efe5715be61344116489215177dbaf103412a5f726006afcd2c9907";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ia/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ia/firefox-88.0.tar.bz2";
locale = "ia";
arch = "linux-i686";
- sha256 = "501cafeb34aef4d8dae63f47446abf8b04dcfee93b9931ec06f809823a6c675a";
+ sha256 = "fe534973e0c2a86425c6d3abfd15d29fda8281924ec5d1c6cf32d067cfc439d5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/id/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/id/firefox-88.0.tar.bz2";
locale = "id";
arch = "linux-i686";
- sha256 = "9913aec5634c32300c2f556017be415ef6516a4380af3e597b2abd8e449e82a6";
+ sha256 = "6e82306244398be24cd82790ddca2885b14cb1d909e416ef7b2f569a09bdbd34";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/is/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/is/firefox-88.0.tar.bz2";
locale = "is";
arch = "linux-i686";
- sha256 = "71b1bf3205043c5c23988de6955a51091ec812e82701d0f37c12e937ed774b69";
+ sha256 = "83c237806e5ae3f6ae926e215caa74ad22e13e375c9b462de663fd836a819a3a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/it/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/it/firefox-88.0.tar.bz2";
locale = "it";
arch = "linux-i686";
- sha256 = "7a842251175a2db53e0bec3b65c2db0007a1fe5d84ec126fa9029c6d9dbc732c";
+ sha256 = "ff72131ccce409524b044d32fdd18150524033db8841876bfcf39d43c376ce8d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ja/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ja/firefox-88.0.tar.bz2";
locale = "ja";
arch = "linux-i686";
- sha256 = "6a8aa33e333fcfa9bb2a011d08af0d10b445be1a22dacc4458c121e8943b1f62";
+ sha256 = "6392b53788f0908da45ef6e321445430c8a9db385a134a95c63826fdc0ad289f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ka/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ka/firefox-88.0.tar.bz2";
locale = "ka";
arch = "linux-i686";
- sha256 = "f2d2cc7b079e0ca69de3568b10bdf6d7f74ef7f8b0bd05a89442be41df3d2239";
+ sha256 = "a24cd3fd2c46dbe764a4af86f5f79a97d1ef0c3a37bfb61883556c48d987a067";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/kab/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/kab/firefox-88.0.tar.bz2";
locale = "kab";
arch = "linux-i686";
- sha256 = "7211457301c54fed01aa3b0735fc7f0814d4fbfeb7862ebe438f5cebf7fed6e6";
+ sha256 = "68ea95f04d07ed0c0f0fb92f4ab3ace4abd0c43a878548ffcbed61024efb8a8f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/kk/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/kk/firefox-88.0.tar.bz2";
locale = "kk";
arch = "linux-i686";
- sha256 = "8b18ac077d961279b2bb179ea37819de964e488ab528d4591ce2479ecae167ee";
+ sha256 = "6e190c44a82faa476214369e0b32c2d70d6ec4394a7c289c8c73e8d1b70b1de6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/km/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/km/firefox-88.0.tar.bz2";
locale = "km";
arch = "linux-i686";
- sha256 = "6b06454f9e061ae6d099ffbb2079d92538b32eb619d12858c3d759f004c427c6";
+ sha256 = "532ee78e0cb774ff3a131e6bb48e27701fa136297eb3c119ac9644e05b66bf4b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/kn/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/kn/firefox-88.0.tar.bz2";
locale = "kn";
arch = "linux-i686";
- sha256 = "4b8d711f0f33c850d2bf39f16ef0da7e004374445ad8bb3e69e0b74ff0765cd1";
+ sha256 = "547b191ab90c4b81209e519f675ced74cc2579f7776005c9f2e8fb677a79ed54";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ko/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ko/firefox-88.0.tar.bz2";
locale = "ko";
arch = "linux-i686";
- sha256 = "f6da2239dc4e457623a64f2ac5e56868e70115941ddd3c19093ba180a3aeea7a";
+ sha256 = "d8567c735f37308db5e541cbc44bd69aac0b5e86a5e55bb1915f10ab8cac32f6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/lij/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/lij/firefox-88.0.tar.bz2";
locale = "lij";
arch = "linux-i686";
- sha256 = "fc45263e353af69c7dc2e5d74edefa793b0f1d2bb86f496dd75ad66bdfc7ffe1";
+ sha256 = "e70a068ff713889d452cefde7bf19be4bf65349099026c57074d4cd035ba3c1d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/lt/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/lt/firefox-88.0.tar.bz2";
locale = "lt";
arch = "linux-i686";
- sha256 = "f030574f0bfb8574ce07159fdd213f1e21c4293bf7e1961080e6ef10f7f14b42";
+ sha256 = "9c2a6ebc75cc6becd5d8b73a8c47674ea71a4b97fdde973c2832d9bb76f91f4e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/lv/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/lv/firefox-88.0.tar.bz2";
locale = "lv";
arch = "linux-i686";
- sha256 = "7648c4616260b09161a3431120fd99c97c5630347ad4ac196956eae4cb4b18f6";
+ sha256 = "ad628812c1db1ee9b7ff0f9d2f308db2480427bbdf5b6430474400cf70a82696";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/mk/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/mk/firefox-88.0.tar.bz2";
locale = "mk";
arch = "linux-i686";
- sha256 = "c7bfcf5ee846d340d454d6cce2e66c0245bca10d1b74887170ba3820c392155a";
+ sha256 = "17b3c4004f149f66c0f6feb5a2a644b7b815d2b440fac9df597bed0cafdb06e7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/mr/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/mr/firefox-88.0.tar.bz2";
locale = "mr";
arch = "linux-i686";
- sha256 = "808207c6efa62312abf14091992022a3d37ba906c8003316d6af943228ba534a";
+ sha256 = "406e1c0435c4ff1233c9da0931ba4ba5a23a3cd1f05ed7202123ca04497f3a83";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ms/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ms/firefox-88.0.tar.bz2";
locale = "ms";
arch = "linux-i686";
- sha256 = "f836343cd1116657b8f8f28f49df99b36a13a4255d0499945953b64934f80e64";
+ sha256 = "a312c23b1069438c8b0534007bf17c0b9e5b63d768b3cf24acefda1a257f0f5d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/my/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/my/firefox-88.0.tar.bz2";
locale = "my";
arch = "linux-i686";
- sha256 = "1c01f7dcea9ecbf1af3cc29cb38aa8cd928dc6c10f67fdb20f98a588951336de";
+ sha256 = "93c9db14e9e462d89f04e928ac8ef3e3abdc682dc82a1781e76dcd62a2122c2b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/nb-NO/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/nb-NO/firefox-88.0.tar.bz2";
locale = "nb-NO";
arch = "linux-i686";
- sha256 = "f196268af59a118a4c5ca50b5c7f9ace27d642fd1952085dd693f09462eb27a9";
+ sha256 = "321068345667a18ae07435d78371931c55c306df14bccf74e1dbaa582d3e46fc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ne-NP/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ne-NP/firefox-88.0.tar.bz2";
locale = "ne-NP";
arch = "linux-i686";
- sha256 = "6a80edda7e3b0f97282840eaacd9d4d003e6562c4931a14736bd1aba6ea8eb7c";
+ sha256 = "fe92879652c7eccde08e9017f37daaca5f387be0fd7784051d2c0b7e9c83f298";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/nl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/nl/firefox-88.0.tar.bz2";
locale = "nl";
arch = "linux-i686";
- sha256 = "495a43b18aa2078bd86468cbd1545ea04b0fc63c847a459156489c18432fe5ff";
+ sha256 = "a8dbdf538cf310d2918026e907e8422a4b5cccb943323f1ec3b391c61341818c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/nn-NO/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/nn-NO/firefox-88.0.tar.bz2";
locale = "nn-NO";
arch = "linux-i686";
- sha256 = "a3d58b74e2ee2c97a2b4aa5855040f34f79024df55d8de6623991df61cfc3b46";
+ sha256 = "5a7ef37d7a2d13a2188781b69c01fc1b648c198aafc6ace0e7c818f58bea6e2d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/oc/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/oc/firefox-88.0.tar.bz2";
locale = "oc";
arch = "linux-i686";
- sha256 = "c71e444eb03df8c4b28dc34d4cfc32db2471ba12389f448c28a9dc03fc0dbfb1";
+ sha256 = "083eef36f466362ea6726170be55e6410b3394b316d3c0ee866c5a1200db6949";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/pa-IN/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/pa-IN/firefox-88.0.tar.bz2";
locale = "pa-IN";
arch = "linux-i686";
- sha256 = "69eedac3a7f2912f179e2c5838f4dbe109c1b1c570ea1f375d5563a622553f13";
+ sha256 = "ed57e8e612d677f69776e3bafcdb174ac73e35d493151e282eb2f7f8a062c62f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/pl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/pl/firefox-88.0.tar.bz2";
locale = "pl";
arch = "linux-i686";
- sha256 = "106012905a00d898ad3fa43c733c1f568c0df2e74165276feb5b3f5eb79a3b20";
+ sha256 = "83523f00d01f1e41b6777789026e820de1a94f9fd413f5c2e9279d4da21697cf";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/pt-BR/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/pt-BR/firefox-88.0.tar.bz2";
locale = "pt-BR";
arch = "linux-i686";
- sha256 = "18434861a77abb7810008af068589250ae5621c1719ed4d37643c7aa3607070a";
+ sha256 = "8d5e40ef90329e0fdc39d09b4f2a1492120182020c77a78b588e8eb66515876f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/pt-PT/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/pt-PT/firefox-88.0.tar.bz2";
locale = "pt-PT";
arch = "linux-i686";
- sha256 = "b27fc0941804f4bedf10c15e26fd14fc381416a2c29fbe9b4d01f328e2164022";
+ sha256 = "571539f8fee1519abd04900ac6ede845f0a500f612cb1b0e0a9b0415174eb45a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/rm/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/rm/firefox-88.0.tar.bz2";
locale = "rm";
arch = "linux-i686";
- sha256 = "2283c43282caeee2798a93af96979e46a103b3ab7c645e72384fe19973c49534";
+ sha256 = "7e1ec5a0f813e8c1415f6a85e3f38bc03a8699a88573f1735345eb4099a0bd66";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ro/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ro/firefox-88.0.tar.bz2";
locale = "ro";
arch = "linux-i686";
- sha256 = "6d7ba9b40f17f373c4eb151a4bbf6399d27a8e5071342d25a374afc67914bace";
+ sha256 = "5618fabc43c88e541160e8d6c515a04dc5a6c0a9aae4302b7be2f906c2559fa3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ru/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ru/firefox-88.0.tar.bz2";
locale = "ru";
arch = "linux-i686";
- sha256 = "77341829394b41ed8cf63090c30b993e3a540b838bb476239398795eb026442b";
+ sha256 = "aca739451ce91482029101c0010d2fa8f92bb155abd96c601df495dcc1894706";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/si/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/si/firefox-88.0.tar.bz2";
locale = "si";
arch = "linux-i686";
- sha256 = "b7aaa753f54ca1aa5172c39e9899c662f62cb81628f29d29ed8774c68697d1fc";
+ sha256 = "6ce0ccfc444784d1a91bb860fe3bf4910cc6a1ac12074d6b113f23028ded5d23";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/sk/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/sk/firefox-88.0.tar.bz2";
locale = "sk";
arch = "linux-i686";
- sha256 = "fc70db60786a652dfa0d8614c24bb4b5cb46849a468903723c9e9cdfebd9eb52";
+ sha256 = "eac64804e893db4ef8a241ae1fc33b9cddd6f91e37418977c7879a0b620b56ad";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/sl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/sl/firefox-88.0.tar.bz2";
locale = "sl";
arch = "linux-i686";
- sha256 = "392eccb8277c76b4178b6fb74c8974ad31e0b36fe8778b5933b37f6249d3c9b9";
+ sha256 = "0d2531fdaa0259b02264a3b45b5bef081aa196526259dbb1560c53e0683991af";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/son/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/son/firefox-88.0.tar.bz2";
locale = "son";
arch = "linux-i686";
- sha256 = "c95c7ff206a42cf5c4caba9a3377834c1b8b4d258de566efed15ab0815b64726";
+ sha256 = "dd384928a67803465f0a040cf9ce6b8680e44aec0bf8bb940b56026d550b5ba7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/sq/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/sq/firefox-88.0.tar.bz2";
locale = "sq";
arch = "linux-i686";
- sha256 = "7eb9cbe937262ed47711df80143b49d369bfb185119a3fb51f8a723bb99b1f9d";
+ sha256 = "01523311694f7de9d035b838d94b28083c5800b55ff3ff5ea853c4e668a28495";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/sr/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/sr/firefox-88.0.tar.bz2";
locale = "sr";
arch = "linux-i686";
- sha256 = "4d4b88503ccc6d5f5c16988c626027516681d265b32ee205324919a170caa1b7";
+ sha256 = "5e6253d7c7f9f335fa2fd96562ebac2d78091264034f6673c3398fc725496e38";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/sv-SE/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/sv-SE/firefox-88.0.tar.bz2";
locale = "sv-SE";
arch = "linux-i686";
- sha256 = "fe2fdf76541c95166fae7b9d1c0b3390552968ac0a8f47f2e23da750c8b8753a";
+ sha256 = "6f8864ffa2195578543b2c36c782cf7fb7ba4bcd7096245695cd8ba89ed0bcc3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/szl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/szl/firefox-88.0.tar.bz2";
locale = "szl";
arch = "linux-i686";
- sha256 = "af91e1a4d0afefd890ce9ab04ac800427670a314089b67dc41e12bfa43ecf112";
+ sha256 = "b4ccf73a518f9f4ff64adaecaedb4a7dfe116ac9f579cc1713086bc00a62c2bf";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ta/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ta/firefox-88.0.tar.bz2";
locale = "ta";
arch = "linux-i686";
- sha256 = "043162612ff54115953c25333fcc03d801176db1d379cb7c94f22c0da5a1ae00";
+ sha256 = "5e0e58a52836e13f2cd49acd026feaff2d27059c9525501df3892bb29364ca4a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/te/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/te/firefox-88.0.tar.bz2";
locale = "te";
arch = "linux-i686";
- sha256 = "2fca2c54dd357d8d5e3bb8804dbc3cfcc7fd1c17f538eaf1e1fd60c95baf7252";
+ sha256 = "55c0dff310e6a8e239540aa04777a2eab384b4876a78354a87b0b5b51b7994e6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/th/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/th/firefox-88.0.tar.bz2";
locale = "th";
arch = "linux-i686";
- sha256 = "b049f6cc876fce2d57387d2c90afff4f261baf38e582821656efd455fdbadc03";
+ sha256 = "2a62c240946d8330166371d42fe9c04f246953a61958a9a66d28382bbad902fe";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/tl/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/tl/firefox-88.0.tar.bz2";
locale = "tl";
arch = "linux-i686";
- sha256 = "be18fe1caae3a85e3a48b0a5a45cb175bd11c31d1cfbe726dbe4952c50338299";
+ sha256 = "ed76eb7e7c221bfa0ab06446a3b5ba40728bb61c92a303cdf2ca4099a0f4f8fe";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/tr/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/tr/firefox-88.0.tar.bz2";
locale = "tr";
arch = "linux-i686";
- sha256 = "5c43338e0fc0138c280f9231e05c14a553d2b0504053b5c090adb7ecb96cf8d7";
+ sha256 = "36d3142aee1011b41b8a91fb8b5f1e7cbf6011b55acb93b0a24b9fcdb41077ad";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/trs/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/trs/firefox-88.0.tar.bz2";
locale = "trs";
arch = "linux-i686";
- sha256 = "510ee9988f4d1c6e0e50fc07d00d2aa80380f89f8db4b0655c7a9c0aaf07fc51";
+ sha256 = "2f8f414f0c0ca102e359df2b24090e23d9a440b971506058be4ab14d2c72e88c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/uk/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/uk/firefox-88.0.tar.bz2";
locale = "uk";
arch = "linux-i686";
- sha256 = "a01aa11750b6027f01b45763d691c425b65aa577fe9fcae6f492b40bb8ff6056";
+ sha256 = "671523abb993c10c355f23029dee6f718b1c3934b9dc84c9c9c67a1fea97c08a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/ur/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/ur/firefox-88.0.tar.bz2";
locale = "ur";
arch = "linux-i686";
- sha256 = "f2e83dfd361dc8abfc3fab5554d1c545b216a05f57718aa1f8976f7c2dda3b17";
+ sha256 = "e88871cd7d3bb4eed5a466d46f19b7564bacc2274fd9dca198abf690c09f1173";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/uz/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/uz/firefox-88.0.tar.bz2";
locale = "uz";
arch = "linux-i686";
- sha256 = "4c570ba3aa3480efd63ba230b550d750a49289b3bafe9ede881b28184ac26ca1";
+ sha256 = "d8c6d54bf364fdfce2c47554f2e476dc1578334b5fc7f2c35fe5e75729d0a759";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/vi/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/vi/firefox-88.0.tar.bz2";
locale = "vi";
arch = "linux-i686";
- sha256 = "846862d789b275ba1184b1f65a95570043ee1f8e2f7da5678252c192a8d31966";
+ sha256 = "ef62bf56b514342e96c846a8d60da76b13955cab1a65c9d5e06e5add80676d4b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/xh/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/xh/firefox-88.0.tar.bz2";
locale = "xh";
arch = "linux-i686";
- sha256 = "5c5a88654bcec7a8c5bb7245567270542823a377c7843a6b14d8f12cf57b7b59";
+ sha256 = "30c97916ef8964ec1b15ab08bed806867262fecf07d0e486e8b4821f2839a214";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/zh-CN/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/zh-CN/firefox-88.0.tar.bz2";
locale = "zh-CN";
arch = "linux-i686";
- sha256 = "b7774306c5941feb5b7abf4fbc3e3d3af854145fff741f561708b5ee94d1816b";
+ sha256 = "6aca619cf86cec55e4712c2365e0ffa06c3a13b9df0cf64df80ea6ac07036400";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/87.0/linux-i686/zh-TW/firefox-87.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/88.0/linux-i686/zh-TW/firefox-88.0.tar.bz2";
locale = "zh-TW";
arch = "linux-i686";
- sha256 = "d115d7086947003940bc270b6a83aa612324f7913e044a194c1e05648e241b17";
+ sha256 = "4c60f41d35bc74fdda6b3cbdd0b7bb19883bb2e977bcd04bb50ae014d0f8c3d4";
}
];
}
diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix
index 7a3fc9b9a07..9629c590122 100644
--- a/pkgs/applications/networking/browsers/firefox/packages.nix
+++ b/pkgs/applications/networking/browsers/firefox/packages.nix
@@ -7,10 +7,10 @@ in
rec {
firefox = common rec {
pname = "firefox";
- ffversion = "87.0";
+ ffversion = "88.0";
src = fetchurl {
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
- sha512 = "c1c08be2283e7a162c8be2f2647ec2bb85cab592738dc45e4b4ffb72969229cc0019a30782a4cb27f09a13b088c63841071dd202b3543dfba295140a7d6246a4";
+ sha512 = "f58f44f2f0d0f54eae5ab4fa439205feb8b9209b1bf2ea2ae0c9691e9e583bae2cbd4033edb5bdf4e37eda5b95fca688499bed000fe26ced8ff4bbc49347ce31";
};
meta = {
@@ -32,10 +32,10 @@ rec {
firefox-esr-78 = common rec {
pname = "firefox-esr";
- ffversion = "78.9.0esr";
+ ffversion = "78.10.0esr";
src = fetchurl {
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
- sha512 = "28582fc0a03fb50c0a817deb1083817bb7f2f5d38e98439bf655ed4ee18c83568b3002a59ef76edf357bfb11f55832a221d14130f116aac19d850768fba3ac8b";
+ sha512 = "5e2cf137dc781855542c29df6152fa74ba749801640ade3cf01487ce993786b87a4f603d25c0af9323e67c7e15c75655523428c1c1426527b8623c7ded9f5946";
};
meta = {
diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix
index 390b26a1b9e..62bb722652a 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -257,13 +257,12 @@ let
makeWrapper "$oldExe" \
"$out${browser.execdir or "/bin"}/${browserName}${nameSuffix}" \
- --suffix LD_LIBRARY_PATH ':' "$libs" \
+ --prefix LD_LIBRARY_PATH ':' "$libs" \
--suffix-each GTK_PATH ':' "$gtk_modules" \
--prefix PATH ':' "${xdg-utils}/bin" \
--suffix PATH ':' "$out${browser.execdir or "/bin"}" \
--set MOZ_APP_LAUNCHER "${browserName}${nameSuffix}" \
--set MOZ_SYSTEM_DIR "$out/lib/mozilla" \
- --set SNAP_NAME "firefox" \
--set MOZ_LEGACY_PROFILES 1 \
--set MOZ_ALLOW_DOWNGRADE 1 \
${lib.optionalString forceWayland ''
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 b4ca094be13..3f3eec49c94 100644
--- a/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
+++ b/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
@@ -88,19 +88,19 @@ let
fteLibPath = makeLibraryPath [ stdenv.cc.cc gmp ];
# Upstream source
- version = "10.0.15";
+ version = "10.0.16";
lang = "en-US";
srcs = {
x86_64-linux = fetchurl {
url = "https://dist.torproject.org/torbrowser/${version}/tor-browser-linux64-${version}_${lang}.tar.xz";
- sha256 = "1ah69jmfgik063f9gkvyv9d4k706pqihmzc4k7cc95zyd17v8wrs";
+ sha256 = "07h2gd6cwwq17lrwjpfah1xvr8ny8700qvi971qacrr7ssicw2pw";
};
i686-linux = fetchurl {
url = "https://dist.torproject.org/torbrowser/${version}/tor-browser-linux32-${version}_${lang}.tar.xz";
- sha256 = "0gyhxfs4qpg6ys038d52cxnmb4khbng1w4hcsavi2rlgv18bz75p";
+ sha256 = "145kniiby5nnd0ll3v2gggzxz52bqbrdp72hvh96i8qnzi0fq25a";
};
};
in
diff --git a/pkgs/applications/networking/cluster/argo/default.nix b/pkgs/applications/networking/cluster/argo/default.nix
index 3b9d7784b7e..959b0a9877f 100644
--- a/pkgs/applications/networking/cluster/argo/default.nix
+++ b/pkgs/applications/networking/cluster/argo/default.nix
@@ -19,13 +19,13 @@ let
in
buildGoModule rec {
pname = "argo";
- version = "3.0.0";
+ version = "3.0.2";
src = fetchFromGitHub {
owner = "argoproj";
repo = "argo";
rev = "v${version}";
- sha256 = "sha256-TbNqwTVND09WzUH8ZH7YFRwcHV8eX1G0FXtZJi67Sk4=";
+ sha256 = "sha256-+LuBz58hTzi/hGwqX/0VMNYn/+SRYgnNefn3B3i7eEs=";
};
vendorSha256 = "sha256-YjVAoMyGKMHLGEPeOOkCKCzeWFiUsXfJIKcw5GYoljg=";
@@ -46,10 +46,11 @@ buildGoModule rec {
buildFlagsArray = ''
-ldflags=
-s -w
- -X github.com/argoproj/argo.version=${version}
- -X github.com/argoproj/argo.gitCommit=${src.rev}
- -X github.com/argoproj/argo.gitTreeState=clean
- -X github.com/argoproj/argo.gitTag=${version}
+ -X github.com/argoproj/argo-workflows/v3.buildDate=unknown
+ -X github.com/argoproj/argo-workflows/v3.gitCommit=${src.rev}
+ -X github.com/argoproj/argo-workflows/v3.gitTag=${src.rev}
+ -X github.com/argoproj/argo-workflows/v3.gitTreeState=clean
+ -X github.com/argoproj/argo-workflows/v3.version=${version}
'';
postInstall = ''
diff --git a/pkgs/applications/networking/cluster/k3s/default.nix b/pkgs/applications/networking/cluster/k3s/default.nix
index fd5b2fff8b9..4053a042bfa 100644
--- a/pkgs/applications/networking/cluster/k3s/default.nix
+++ b/pkgs/applications/networking/cluster/k3s/default.nix
@@ -44,7 +44,7 @@ with lib;
# Those pieces of software we entirely ignore upstream's handling of, and just
# make sure they're in the path if desired.
let
- k3sVersion = "1.20.5+k3s1"; # k3s git tag
+ k3sVersion = "1.20.6+k3s1"; # k3s git tag
traefikChartVersion = "1.81.0"; # taken from ./scripts/download at the above k3s tag
k3sRootVersion = "0.8.1"; # taken from ./scripts/download at the above k3s tag
k3sCNIVersion = "0.8.6-k3s1"; # taken from ./scripts/version.sh at the above k3s tag
@@ -96,7 +96,7 @@ let
url = "https://github.com/k3s-io/k3s";
rev = "v${k3sVersion}";
leaveDotGit = true; # ./scripts/version.sh depends on git
- sha256 = "sha256-7RAZkSTh15BEZ3p6u2xE9vd5fpy4KBYrl2TjtpIiStM=";
+ sha256 = "sha256-IIZotJKQ/+WNmfcEJU5wFtZBufWjUp4MeVCRk4tSjyQ=";
};
# Stage 1 of the k3s build:
# Let's talk about how k3s is structured.
diff --git a/pkgs/applications/networking/cluster/kube3d/default.nix b/pkgs/applications/networking/cluster/kube3d/default.nix
index d0aa1029d63..decb586045d 100644
--- a/pkgs/applications/networking/cluster/kube3d/default.nix
+++ b/pkgs/applications/networking/cluster/kube3d/default.nix
@@ -1,22 +1,22 @@
-{ lib, buildGoModule, fetchFromGitHub, installShellFiles, k3sVersion ? "1.20.5-k3s1" }:
+{ lib, buildGoModule, fetchFromGitHub, installShellFiles, k3sVersion ? "1.20.6-k3s1" }:
buildGoModule rec {
pname = "kube3d";
- version = "4.4.1";
-
- excludedPackages = "tools";
+ version = "4.4.2";
src = fetchFromGitHub {
owner = "rancher";
repo = "k3d";
rev = "v${version}";
- sha256 = "sha256-u9P+7qNomamd4BkqWBxA6rDom0hF6t10QfDTjqOMGeE=";
+ sha256 = "sha256-6BDetNPWyAVZOsnCWs90HljVpfUlAytFDPQ/SqPxwgg=";
};
vendorSha256 = null;
nativeBuildInputs = [ installShellFiles ];
+ excludedPackages = "\\(tools\\|docgen\\)";
+
preBuild = let t = "github.com/rancher/k3d/v4/version"; in
''
buildFlagsArray+=("-ldflags" "-s -w -X ${t}.Version=v${version} -X ${t}.K3sVersion=v${k3sVersion}")
diff --git a/pkgs/applications/networking/cluster/starboard/default.nix b/pkgs/applications/networking/cluster/starboard/default.nix
index 1b83e982c78..1418f40e216 100644
--- a/pkgs/applications/networking/cluster/starboard/default.nix
+++ b/pkgs/applications/networking/cluster/starboard/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "starboard";
- version = "0.10.0";
+ version = "0.10.1";
src = fetchFromGitHub {
owner = "aquasecurity";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-hieenhe3HsMqg7dMhvOUcvVGzBedYXqJRxEUkw4DG6o=";
+ sha256 = "sha256-cDqZo0GTpvvkEiccP42u9X2ydHkSBuoD8Zfp+i+/qjo=";
};
- vendorSha256 = "sha256-Vj8t4v2o6x+tFLWy84W3tVaIf6WtFWXpvLQfeTbeGbM=";
+ vendorSha256 = "sha256-noK4fF9wCP1dYfDgmJVZehcF+eunzP+d9n1SiPO9UEU=";
subPackages = [ "cmd/starboard" ];
diff --git a/pkgs/applications/networking/cluster/waypoint/default.nix b/pkgs/applications/networking/cluster/waypoint/default.nix
index 1f3bf4467d6..d21219f4386 100644
--- a/pkgs/applications/networking/cluster/waypoint/default.nix
+++ b/pkgs/applications/networking/cluster/waypoint/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "waypoint";
- version = "0.3.0";
+ version = "0.3.1";
src = fetchFromGitHub {
owner = "hashicorp";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-lB9ELa/okNvtKFDP/vImEdYFJCKRgtAcpBG1kIoAysE=";
+ sha256 = "sha256-WzKUVfc7oGMh0TamL5b6gsm/BAfSCZ6EB3Hg4Tg/3Hw=";
};
deleteVendor = true;
@@ -36,7 +36,7 @@ buildGoModule rec {
export HOME="$TMPDIR"
$out/bin/waypoint --help
- $out/bin/waypoint version | grep "Waypoint v${version}"
+ $out/bin/waypoint version | grep "CLI: v${version}"
runHook postInstallCheck
'';
diff --git a/pkgs/applications/networking/dnscontrol/default.nix b/pkgs/applications/networking/dnscontrol/default.nix
index 39073985fa1..cac662c9b6b 100644
--- a/pkgs/applications/networking/dnscontrol/default.nix
+++ b/pkgs/applications/networking/dnscontrol/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "dnscontrol";
- version = "3.8.0";
+ version = "3.8.1";
src = fetchFromGitHub {
owner = "StackExchange";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-VSNvyigaGfGDbcng6ltdq+X35zT2tb2p4j/4KAjd1Yk=";
+ sha256 = "sha256-x002p7wPKbcmr4uE04mgKBagHQV/maEo99Y2Jr7xgK4=";
};
- vendorSha256 = "sha256-VU0uJDp5koVU+wDwr3ctrDY0R3vd/JmpA7gtWWpwpfw=";
+ vendorSha256 = "sha256-lR5+xVi/ROOFoRWyK0h/8uiSP/joQ9Zr9kMaQ+sWNhM=";
subPackages = [ "." ];
diff --git a/pkgs/applications/networking/flexget/default.nix b/pkgs/applications/networking/flexget/default.nix
index fd68dfc49f4..3f2e3490955 100644
--- a/pkgs/applications/networking/flexget/default.nix
+++ b/pkgs/applications/networking/flexget/default.nix
@@ -2,11 +2,11 @@
python3Packages.buildPythonApplication rec {
pname = "FlexGet";
- version = "3.1.106";
+ version = "3.1.110";
src = python3Packages.fetchPypi {
inherit pname version;
- sha256 = "f0ff300a1762d701b77eb16142dcc13d9d099bbed695f1e950392c1d1bb988eb";
+ sha256 = "e8642dcbbfe941e2d2def7bf2e28889082a78c1d041edb33dae180036832a96b";
};
postPatch = ''
diff --git a/pkgs/applications/networking/ids/zeek/default.nix b/pkgs/applications/networking/ids/zeek/default.nix
index a12e914097c..405304f74af 100644
--- a/pkgs/applications/networking/ids/zeek/default.nix
+++ b/pkgs/applications/networking/ids/zeek/default.nix
@@ -21,11 +21,11 @@
stdenv.mkDerivation rec {
pname = "zeek";
- version = "4.0.0";
+ version = "4.0.1";
src = fetchurl {
url = "https://download.zeek.org/zeek-${version}.tar.gz";
- sha256 = "0m7zy5k2595vf5xr2r4m75rfsdddigrv2hilm1c3zaif4srxmvpj";
+ sha256 = "0ficl4i012gfv4mdbdclgvi6gyq338gw9gb6k58k1drw8c7qk6k5";
};
nativeBuildInputs = [ cmake flex bison file ];
diff --git a/pkgs/applications/networking/instant-messengers/bitlbee-facebook/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee-facebook/default.nix
index 95bf8c02662..e5a45a1e9f5 100644
--- a/pkgs/applications/networking/instant-messengers/bitlbee-facebook/default.nix
+++ b/pkgs/applications/networking/instant-messengers/bitlbee-facebook/default.nix
@@ -1,27 +1,16 @@
-{ lib, fetchFromGitHub, fetchpatch, stdenv, bitlbee, autoconf, automake, libtool, pkg-config, json-glib }:
+{ lib, fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkg-config, json-glib }:
stdenv.mkDerivation rec {
pname = "bitlbee-facebook";
- version = "1.2.1";
+ version = "1.2.2";
src = fetchFromGitHub {
rev = "v${version}";
owner = "bitlbee";
repo = "bitlbee-facebook";
- sha256 = "1yjhjhk3jzjip13lq009vlg84lm2lzwhac5jy0aq3vkcz6rp94rc";
+ sha256 = "1qiiiq17ybylbhwgbwsvmshb517589r8yy5rsh1rfaylmlcxyy7z";
};
- # TODO: This patch should be included with the next release after v1.2.1
- # these lines should be removed when this happens.
- patches = [
- (fetchpatch {
- name = "FB_ORCA_AGENT_version_bump.patch";
- url = "https://github.com/bitlbee/bitlbee-facebook/commit/49ea312d98b0578b9b2c1ff759e2cfa820a41f4d.patch";
- sha256 = "0nzyyg8pw4f2jcickcpxq7r2la5wgl7q6iz94lhzybrkhss5753d";
- }
- )
- ];
-
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
buildInputs = [ bitlbee json-glib ];
diff --git a/pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix b/pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix
index d10c5359e35..363d123dbe1 100644
--- a/pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix
+++ b/pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix
@@ -11,11 +11,11 @@ let
in
stdenv.mkDerivation rec {
pname = "jitsi-meet-electron";
- version = "2.7.0";
+ version = "2.8.5";
src = fetchurl {
url = "https://github.com/jitsi/jitsi-meet-electron/releases/download/v${version}/jitsi-meet-x86_64.AppImage";
- sha256 = "1g8was4anrsdpv4h11z544mi0v79him2xjyknixyrqfy87cbh97n";
+ sha256 = "0r3jj3qjx38l1g733vhrwcm2yg7ppp23ciz84x2kqq51mlzr84c6";
name = "${pname}-${version}.AppImage";
};
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/default.nix b/pkgs/applications/networking/instant-messengers/mikutter/default.nix
index be84342787d..111a3ed091e 100644
--- a/pkgs/applications/networking/instant-messengers/mikutter/default.nix
+++ b/pkgs/applications/networking/instant-messengers/mikutter/default.nix
@@ -1,82 +1,160 @@
-{ lib, stdenv, fetchurl
-, bundlerEnv, ruby
-, alsaUtils, libnotify, which, wrapGAppsHook, gtk2, atk, gobject-introspection
+{ lib
+, stdenv
+, fetchurl
+, bundlerEnv
+, alsaUtils
+, atk
+, copyDesktopItems
+, gobject-introspection
+, gtk2
+, ruby
+, libicns
+, libnotify
+, makeDesktopItem
+, which
+, wrapGAppsHook
+, writeText
}:
-# how to update:
-# find latest version at: http://mikutter.hachune.net/download#download
-# run these commands:
-#
-# wget http://mikutter.hachune.net/bin/mikutter.4.0.0.tar.gz
-# mkdir mikutter
-# cd mikutter
-# tar xvf ../mikutter.4.0.0.tar.gz
-# find . -not -name Gemfile -exec rm {} \;
-# find . -type d -exec rmdir -p --ignore-fail-on-non-empty {} \;
-# cd ..
-# mv mikutter/* .
-# rm mikutter.4.0.0.tar.gz
-# rm gemset.nix Gemfile.lock; nix-shell -p bundler bundix --run 'bundle lock && bundix'
-
-stdenv.mkDerivation rec {
- pname = "mikutter";
- version = "4.0.0";
-
- src = fetchurl {
- url = "https://mikutter.hachune.net/bin/mikutter.${version}.tar.gz";
- sha256 = "0nx14vlp7p69m2vw0s6kbiyymsfq0r2jd4nm0v5c4xb9avkpgc8g";
+let
+ # NOTE: $out may have different values depending on context
+ mikutterPaths = rec {
+ optPrefixDir = "$out/opt/mikutter";
+ appPrefixDir = "$out/Applications/mikutter.app/Contents";
+ appBinDir = "${appPrefixDir}/MacOS";
+ appResourceDir = "${appPrefixDir}/Resources";
+ iconPath = "${optPrefixDir}/core/skin/data/icon.png";
};
- buildInputs = [ alsaUtils libnotify which gtk2 ruby atk gobject-introspection ];
- nativeBuildInputs = [ wrapGAppsHook ];
+ gems = bundlerEnv {
+ name = "mikutter-gems"; # leave the version out to enable package reuse
+ gemdir = ./deps;
+ groups = [ "default" "plugin" ];
+ inherit ruby;
- unpackPhase = ''
- mkdir source
- cd source
- unpackFile $src
+ # Avoid the following error:
+ # > `': uninitialized constant Moneta::Builder (NameError)
+ #
+ # Related:
+ # https://github.com/NixOS/nixpkgs/pull/76510
+ # https://github.com/NixOS/nixpkgs/pull/76765
+ # https://github.com/NixOS/nixpkgs/issues/83442
+ # https://github.com/NixOS/nixpkgs/issues/106545
+ copyGemFiles = true;
+ };
+
+ mkDesktopItem = { description }:
+ makeDesktopItem {
+ name = "mikutter";
+ desktopName = "mikutter";
+ exec = "mikutter";
+ icon = "mikutter";
+ categories = "Network;";
+ comment = description;
+ extraDesktopEntries.Keywords = "Mastodon;";
+ };
+
+ mkInfoPlist = { version }:
+ writeText "Info.plist" (lib.generators.toPlist { } {
+ CFBundleName = "mikutter";
+ CFBundleDisplayName = "mikutter";
+ CFBundleExecutable = "mikutter";
+ CFBundleIconFile = "mikutter";
+ CFBundleIdentifier = "net.hachune.mikutter";
+ CFBundleInfoDictionaryVersion = "6.0";
+ CFBundlePackageType = "APPL";
+ CFBundleVersion = version;
+ CFBundleShortVersionString = version;
+ });
+
+ inherit (gems) wrappedRuby;
+in
+with mikutterPaths; stdenv.mkDerivation rec {
+ pname = "mikutter";
+ version = "4.1.4";
+
+ src = fetchurl {
+ url = "https://mikutter.hachune.net/bin/mikutter-${version}.tar.gz";
+ sha256 = "05253nz4i1lmnq6czj48qdab2ny4vx2mznj6nsn2l1m2z6zqkwk3";
+ };
+
+ nativeBuildInputs = [ copyDesktopItems wrapGAppsHook ]
+ ++ lib.optionals stdenv.isDarwin [ libicns ];
+ buildInputs = [
+ atk
+ gtk2
+ gobject-introspection
+ libnotify
+ which # some plugins use it at runtime
+ wrappedRuby
+ ] ++ lib.optionals stdenv.isLinux [ alsaUtils ];
+
+ scriptPath = lib.makeBinPath (
+ [ wrappedRuby libnotify which ]
+ ++ lib.optionals stdenv.isLinux [ alsaUtils ]
+ );
+
+ postUnpack = ''
rm -rf vendor
'';
- installPhase = let
- env = bundlerEnv {
- name = "mikutter-${version}-gems";
- gemdir = ./.;
+ installPhase = ''
+ runHook preInstall
- inherit ruby;
- };
- in ''
- install -v -D -m644 README $out/share/doc/mikutter/README
- install -v -D -m644 LICENSE $out/share/doc/mikutter/LICENSE
- rm -v README LICENSE
+ mkdir -p $out/bin ${optPrefixDir}
- cp -rv . $out
- mkdir $out/bin/
- # hack wrapGAppsHook wants a file not a symlink
- mv $out/mikutter.rb $out/bin/mikutter
+ install -Dm644 README $out/share/doc/mikutter/README
+ install -Dm644 LICENSE $out/share/doc/mikutter/LICENSE
+ rm -r README LICENSE deployment
- gappsWrapperArgs+=(
- --prefix PATH : "${ruby}/bin:${alsaUtils}/bin:${libnotify}/bin"
- --prefix GEM_HOME : "${env}/${env.ruby.gemPath}"
+ cp -r . ${optPrefixDir}
+
+ gappsWrapperArgsHook # FIXME: currently runs at preFixup
+ wrapGApp ${optPrefixDir}/mikutter.rb \
+ --prefix PATH : "${scriptPath}" \
--set DISABLE_BUNDLER_SETUP 1
- )
- # --prefix GIO_EXTRA_MODULES : "$prefix/lib/gio/modules"
+ mv ${optPrefixDir}/mikutter.rb $out/bin/mikutter
- mkdir -p $out/share/mikutter $out/share/applications
- ln -sv $out/core/skin $out/share/mikutter/skin
- substituteAll ${./mikutter.desktop} $out/share/applications/mikutter.desktop
+ install -Dm644 ${iconPath} $out/share/icons/hicolor/256x256/apps/mikutter.png
+
+ runHook postInstall
'';
- postFixup = ''
- mv $out/bin/.mikutter-wrapped $out/mikutter.rb
- substituteInPlace $out/bin/mikutter \
- --replace "$out/bin/.mikutter-wrapped" "$out/mikutter.rb"
+ postInstall =
+ let
+ infoPlist = mkInfoPlist { inherit version; };
+ in
+ lib.optionalString stdenv.isDarwin ''
+ mkdir -p ${appBinDir} ${appResourceDir}
+ install -Dm644 ${infoPlist} ${appPrefixDir}/Info.plist
+ ln -s $out/bin/mikutter ${appBinDir}/mikutter
+ png2icns ${appResourceDir}/mikutter.icns ${iconPath}
+ '';
+
+ installCheckPhase = ''
+ runHook preInstallCheck
+
+ testDir="$(mktemp -d)"
+ install -Dm644 ${./test_plugin.rb} "$testDir/plugin/test_plugin/test_plugin.rb"
+
+ $out/bin/mikutter --confroot="$testDir" --plugin=test_plugin --debug
+
+ runHook postInstallCheck
'';
+ desktopItems = [
+ (mkDesktopItem { inherit (meta) description; })
+ ];
+
+ doInstallCheck = true;
+ dontWrapGApps = true; # the target is placed outside of bin/
+
+ passthru.updateScript = [ ./update.sh version (toString ./.) ];
+
meta = with lib; {
- description = "An extensible Twitter client";
+ description = "An extensible Mastodon client";
homepage = "https://mikutter.hachune.net";
platforms = ruby.meta.platforms;
license = licenses.mit;
- broken = true;
};
}
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/Gemfile b/pkgs/applications/networking/instant-messengers/mikutter/deps/Gemfile
similarity index 84%
rename from pkgs/applications/networking/instant-messengers/mikutter/Gemfile
rename to pkgs/applications/networking/instant-messengers/mikutter/deps/Gemfile
index 216af305b4a..fbe6a2f29c5 100644
--- a/pkgs/applications/networking/instant-messengers/mikutter/Gemfile
+++ b/pkgs/applications/networking/instant-messengers/mikutter/deps/Gemfile
@@ -11,12 +11,12 @@ ruby '>= 2.5.0'
group :default do
gem 'addressable','>= 2.7.0', '< 2.8'
- gem 'delayer','>= 1.0.1', '< 1.1'
- gem 'delayer-deferred','>= 2.1.1', '< 2.2'
- gem 'diva','>= 1.0.1', '< 1.1'
+ gem 'delayer','>= 1.1.2', '< 2.0'
+ gem 'delayer-deferred','>= 2.2.0', '< 3.0'
+ gem 'diva','>= 1.0.2', '< 2.0'
gem 'memoist','>= 0.16.2', '< 0.17'
gem 'oauth','>= 0.5.4'
- gem 'pluggaloid','>= 1.2.0', '< 1.3'
+ gem 'pluggaloid','>= 1.5.0', '< 2.0'
gem 'typed-array','>= 0.1.2', '< 0.2'
end
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/Gemfile.lock b/pkgs/applications/networking/instant-messengers/mikutter/deps/Gemfile.lock
similarity index 59%
rename from pkgs/applications/networking/instant-messengers/mikutter/Gemfile.lock
rename to pkgs/applications/networking/instant-messengers/mikutter/deps/Gemfile.lock
index 63f9a63849b..92568056d52 100644
--- a/pkgs/applications/networking/instant-messengers/mikutter/Gemfile.lock
+++ b/pkgs/applications/networking/instant-messengers/mikutter/deps/Gemfile.lock
@@ -5,22 +5,23 @@ GEM
public_suffix (>= 2.0.2, < 5.0)
atk (3.4.1)
glib2 (= 3.4.1)
- cairo (1.16.4)
+ cairo (1.17.5)
native-package-installer (>= 1.0.3)
pkg-config (>= 1.2.2)
+ red-colors
cairo-gobject (3.4.1)
cairo (>= 1.16.2)
glib2 (= 3.4.1)
- crack (0.4.3)
- safe_yaml (~> 1.0.0)
- delayer (1.0.1)
- delayer-deferred (2.1.1)
- delayer (>= 1.0, < 2.0)
- diva (1.0.1)
+ crack (0.4.5)
+ rexml
+ delayer (1.2.0)
+ delayer-deferred (2.2.0)
+ delayer (>= 1.1.2, < 2.0)
+ diva (1.0.2)
addressable (>= 2.5.2, < 2.8)
gdk_pixbuf2 (3.4.1)
gio2 (= 3.4.1)
- gettext (3.2.9)
+ gettext (3.3.7)
locale (>= 2.0.5)
text (>= 1.3.0)
gio2 (3.4.1)
@@ -34,40 +35,38 @@ GEM
atk (= 3.4.1)
gdk_pixbuf2 (= 3.4.1)
pango (= 3.4.1)
- hashdiff (1.0.0)
+ hashdiff (1.0.1)
httpclient (2.8.3)
instance_storage (1.0.0)
- io-console (0.5.3)
- irb (1.2.1)
- reline (>= 0.0.1)
- locale (2.1.2)
+ locale (2.1.3)
memoist (0.16.2)
- mini_portile2 (2.4.0)
- mocha (1.11.1)
- moneta (1.2.1)
- native-package-installer (1.0.9)
- nokogiri (1.10.7)
- mini_portile2 (~> 2.4.0)
- oauth (0.5.4)
+ mini_portile2 (2.5.0)
+ mocha (1.12.0)
+ moneta (1.4.1)
+ native-package-installer (1.1.1)
+ nokogiri (1.11.3)
+ mini_portile2 (~> 2.5.0)
+ racc (~> 1.4)
+ oauth (0.5.6)
pango (3.4.1)
cairo-gobject (= 3.4.1)
gobject-introspection (= 3.4.1)
- pkg-config (1.4.0)
- pluggaloid (1.2.0)
- delayer (>= 1.0.0, < 2.0)
+ pkg-config (1.4.6)
+ pluggaloid (1.5.0)
+ delayer (>= 1.1.0, < 2.0)
instance_storage (>= 1.0.0, < 2.0.0)
- power_assert (1.1.5)
- public_suffix (4.0.1)
- rake (13.0.1)
- reline (0.1.2)
- io-console (~> 0.5)
- ruby-prof (1.1.0)
- safe_yaml (1.0.5)
- test-unit (3.3.4)
+ power_assert (2.0.0)
+ public_suffix (4.0.6)
+ racc (1.5.2)
+ rake (13.0.3)
+ red-colors (0.1.1)
+ rexml (3.2.5)
+ ruby-prof (1.4.3)
+ test-unit (3.4.0)
power_assert
text (1.3.1)
typed-array (0.1.2)
- webmock (3.7.6)
+ webmock (3.12.2)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
@@ -77,19 +76,18 @@ PLATFORMS
DEPENDENCIES
addressable (>= 2.7.0, < 2.8)
- delayer (>= 1.0.1, < 1.1)
- delayer-deferred (>= 2.1.1, < 2.2)
- diva (>= 1.0.1, < 1.1)
- gettext (>= 3.2.9, < 3.3)
+ delayer (>= 1.1.2, < 2.0)
+ delayer-deferred (>= 2.2.0, < 3.0)
+ diva (>= 1.0.2, < 2.0)
+ gettext (>= 3.3.5, < 3.4)
gtk2 (= 3.4.1)
httpclient
- irb (>= 1.2.0, < 1.3)
memoist (>= 0.16.2, < 0.17)
mocha (>= 1.11.1)
moneta
nokogiri
oauth (>= 0.5.4)
- pluggaloid (>= 1.2.0, < 1.3)
+ pluggaloid (>= 1.5.0, < 2.0)
rake (>= 13.0.1)
ruby-prof (>= 1.1.0)
test-unit (>= 3.3.4, < 4.0)
@@ -97,7 +95,7 @@ DEPENDENCIES
webmock (>= 3.7.6)
RUBY VERSION
- ruby 2.7.0p0
+ ruby 2.6.6p146
BUNDLED WITH
- 2.1.2
+ 2.1.4
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/gemset.nix b/pkgs/applications/networking/instant-messengers/mikutter/deps/gemset.nix
similarity index 74%
rename from pkgs/applications/networking/instant-messengers/mikutter/gemset.nix
rename to pkgs/applications/networking/instant-messengers/mikutter/deps/gemset.nix
index 2bc4db978dd..b45a36c6fec 100644
--- a/pkgs/applications/networking/instant-messengers/mikutter/gemset.nix
+++ b/pkgs/applications/networking/instant-messengers/mikutter/deps/gemset.nix
@@ -22,15 +22,15 @@
version = "3.4.1";
};
cairo = {
- dependencies = ["native-package-installer" "pkg-config"];
+ dependencies = ["native-package-installer" "pkg-config" "red-colors"];
groups = ["default" "plugin"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0yvv2lcbsybzbw1nrmfivmln23da4rndrs3av6ymjh0x3ww5h7p8";
+ sha256 = "0vbj9szp2xbnxqan8hppip8vm9fxpcmpx745y5fvg2scdh9f0p7s";
type = "gem";
};
- version = "1.16.4";
+ version = "1.17.5";
};
cairo-gobject = {
dependencies = ["cairo" "glib2"];
@@ -44,25 +44,25 @@
version = "3.4.1";
};
crack = {
- dependencies = ["safe_yaml"];
+ dependencies = ["rexml"];
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0abb0fvgw00akyik1zxnq7yv391va148151qxdghnzngv66bl62k";
+ sha256 = "1cr1kfpw3vkhysvkk3wg7c54m75kd68mbm9rs5azdjdq57xid13r";
type = "gem";
};
- version = "0.4.3";
+ version = "0.4.5";
};
delayer = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "09p4rkh3dpdm1mhq721m4d6zvxqqp44kg7069s8l7kmaf7nv2nb3";
+ sha256 = "0iqf4i18i8rk3x7qgvkhbiqskf0xzdf733fjimrq6xkag2mq60bl";
type = "gem";
};
- version = "1.0.1";
+ version = "1.2.0";
};
delayer-deferred = {
dependencies = ["delayer"];
@@ -70,10 +70,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1mbdxn1hskjqf3zlj4waxl71ccvbj6lk81c99769paxw4fajwrgx";
+ sha256 = "0i2das3ncssacpqdgaf4as77vrxm7jfiizaja884fqv4rzv6s2sv";
type = "gem";
};
- version = "2.1.1";
+ version = "2.2.0";
};
diva = {
dependencies = ["addressable"];
@@ -81,10 +81,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "182gws1zihhpl7r3m8jsf29maqg9xdhj46s9lidbldar8clpl23h";
+ sha256 = "05wl4wg57vvng4nrp4lzjq148v908xzq092kq93phwvyxs7jnw2g";
type = "gem";
};
- version = "1.0.1";
+ version = "1.0.2";
};
gdk_pixbuf2 = {
dependencies = ["gio2"];
@@ -103,10 +103,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0764vj7gacn0aypm2bf6m46dzjzwzrjlmbyx6qwwwzbmi94r40wr";
+ sha256 = "1fqlwq7i8ck1fjyhn19q3skvgrbz44q7gq51mlr0qym5rkj5f6rn";
type = "gem";
};
- version = "3.2.9";
+ version = "3.3.7";
};
gio2 = {
dependencies = ["gobject-introspection"];
@@ -157,10 +157,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "18jqpbvidrlnq3xf0hkdbs00607jgz35lry6gjw4bcxgh52am2mk";
+ sha256 = "1nynpl0xbj0nphqx1qlmyggq58ms1phf5i03hk64wcc0a17x1m1c";
type = "gem";
};
- version = "1.0.0";
+ version = "1.0.1";
};
httpclient = {
groups = ["plugin"];
@@ -182,36 +182,15 @@
};
version = "1.0.0";
};
- io-console = {
- groups = ["default" "plugin"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0srn91ly4cc5qvyj3r87sc7v8dnm52qj1hczzxmysib6ffparngd";
- type = "gem";
- };
- version = "0.5.3";
- };
- irb = {
- dependencies = ["reline"];
- groups = ["default" "plugin"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1r1y8i46qd5izdszzzn5jxvwvq00m89rk0hm8cs8f21p7nlwmh5w";
- type = "gem";
- };
- version = "1.2.1";
- };
locale = {
groups = ["default" "plugin"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1sls9bq4krx0fmnzmlbn64dw23c4d6pz46ynjzrn9k8zyassdd0x";
+ sha256 = "0997465kxvpxm92fiwc2b16l49mngk7b68g5k35ify0m3q0yxpdn";
type = "gem";
};
- version = "2.1.2";
+ version = "2.1.3";
};
memoist = {
groups = ["default"];
@@ -228,61 +207,61 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "15zplpfw3knqifj9bpf604rb3wc1vhq6363pd6lvhayng8wql5vy";
+ sha256 = "1hdbpmamx8js53yk3h8cqy12kgv6ca06k0c9n3pxh6b6cjfs19x7";
type = "gem";
};
- version = "2.4.0";
+ version = "2.5.0";
};
mocha = {
groups = ["test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "06i2q5qjr9mvjgjc8w41pdf3qalw340y33wjvzc0rp4a1cbbb7pp";
+ sha256 = "05yw6rwgjppq116jgqfg4pv4bql3ci4r2fmmg0m2c3sqib1bq41a";
type = "gem";
};
- version = "1.11.1";
+ version = "1.12.0";
};
moneta = {
groups = ["plugin"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0q7fskfdc0h5dhl8aamg3ypybd6cyl4x0prh4803gj7hxr17jfm1";
+ sha256 = "0z25b4yysvnf2hi9jxnsiv3fvnicnzr2m70ci231av5093jfknc6";
type = "gem";
};
- version = "1.2.1";
+ version = "1.4.1";
};
native-package-installer = {
groups = ["default" "plugin"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0piclgf6pw7hr10x57x0hn675djyna4sb3xc97yb9vh66wkx1fl0";
+ sha256 = "1ww1mq41q7rda975byjmq5dk8k13v8dawvm33370pbkrymd8syp8";
type = "gem";
};
- version = "1.0.9";
+ version = "1.1.1";
};
nokogiri = {
- dependencies = ["mini_portile2"];
+ dependencies = ["mini_portile2" "racc"];
groups = ["plugin"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0r0qpgf80h764k176yr63gqbs2z0xbsp8vlvs2a79d5r9vs83kln";
+ sha256 = "19d78mdg2lbz9jb4ph6nk783c9jbsdm8rnllwhga6pd53xffp6x0";
type = "gem";
};
- version = "1.10.7";
+ version = "1.11.3";
};
oauth = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1zszdg8q1b135z7l7crjj234k4j0m347hywp5kj6zsq7q78pw09y";
+ sha256 = "1zwd6v39yqfdrpg1p3d9jvzs9ljg55ana2p06m0l7qn5w0lgx1a0";
type = "gem";
};
- version = "0.5.4";
+ version = "0.5.6";
};
pango = {
dependencies = ["cairo-gobject" "gobject-introspection"];
@@ -300,10 +279,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1cxdpr2wlz9b587avlq04a1da5fz1vdw8jvr6lx23mcq7mqh2xcx";
+ sha256 = "1mjjy1grxr64znkffxsvprcckbrrnm40b6gbllnbm7jxslbr3gjl";
type = "gem";
};
- version = "1.4.0";
+ version = "1.4.6";
};
pluggaloid = {
dependencies = ["delayer" "instance_storage"];
@@ -311,71 +290,80 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1gv0rjjdic8c41gfr3kyyphvf0fmv5rzcf6qd57zjdfcn6fvi3hh";
+ sha256 = "0m3f940lf1bg01jin22by7hg9hs43y995isgcyqb6vbvlv51zj11";
type = "gem";
};
- version = "1.2.0";
+ version = "1.5.0";
};
power_assert = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1dii0wkfa0jm8sk9b20zl1z4980dmrjh0zqnii058485pp3ws10s";
+ sha256 = "172qfmzwxdf82bmwgcb13hnz9i3p6i2s2nijxnx6r63kn3drjppr";
type = "gem";
};
- version = "1.1.5";
+ version = "2.0.0";
};
public_suffix = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0xnfv2j2bqgdpg2yq9i2rxby0w2sc9h5iyjkpaas2xknwrgmhdb0";
+ sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9";
type = "gem";
};
- version = "4.0.1";
+ version = "4.0.6";
+ };
+ racc = {
+ groups = ["default" "plugin"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "178k7r0xn689spviqzhvazzvxfq6fyjldxb3ywjbgipbfi4s8j1g";
+ type = "gem";
+ };
+ version = "1.5.2";
};
rake = {
groups = ["test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0w6qza25bq1s825faaglkx1k6d59aiyjjk3yw3ip5sb463mhhai9";
+ sha256 = "1iik52mf9ky4cgs38fp2m8r6skdkq1yz23vh18lk95fhbcxb6a67";
type = "gem";
};
- version = "13.0.1";
+ version = "13.0.3";
};
- reline = {
- dependencies = ["io-console"];
+ red-colors = {
groups = ["default" "plugin"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0908ijrngc3wkn5iny7d0kxkp74w6ixk2nwzzngplplfla1vkp8x";
+ sha256 = "0ar2k7zvhr1215jx5di29hkg5h1798f1gypmq6v0sy9v35w6ijca";
type = "gem";
};
- version = "0.1.2";
+ version = "0.1.1";
+ };
+ rexml = {
+ groups = ["default" "test"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "08ximcyfjy94pm1rhcx04ny1vx2sk0x4y185gzn86yfsbzwkng53";
+ type = "gem";
+ };
+ version = "3.2.5";
};
ruby-prof = {
groups = ["test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "18ga5f4h1fnwn0xh910kpnw4cg3lq3jqljd3h16bdw9pgc5ff7dn";
+ sha256 = "1r3xalp91l07m0cwllcxjzg6nkviiqnxkcbgg5qnzsdji6rgy65m";
type = "gem";
};
- version = "1.1.0";
- };
- safe_yaml = {
- groups = ["default" "test"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0j7qv63p0vqcd838i2iy2f76c3dgwzkiz1d1xkg7n0pbnxj2vb56";
- type = "gem";
- };
- version = "1.0.5";
+ version = "1.4.3";
};
test-unit = {
dependencies = ["power_assert"];
@@ -383,10 +371,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0mrkpb6wz0cs1740kaca240k4ymmkbvb2v5xaxsy6vynqw8n0g6z";
+ sha256 = "1h0c323zfn4hdida4g58h8wnlh4kax438gyxlw20dd78kcp01i8m";
type = "gem";
};
- version = "3.3.4";
+ version = "3.4.0";
};
text = {
groups = ["default" "plugin"];
@@ -414,9 +402,9 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "19xvs7gdf8r75bmyb17w9g367qxzqnlrmbdda1y36cn1vrlnf2l8";
+ sha256 = "038igpmkpmn0nw0k7s4db8x88af1nwcy7wzh9m9c9q4p74h7rii0";
type = "gem";
};
- version = "3.7.6";
+ version = "3.12.2";
};
}
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/plugin/gtk/Gemfile b/pkgs/applications/networking/instant-messengers/mikutter/deps/plugin/gtk/Gemfile
similarity index 100%
rename from pkgs/applications/networking/instant-messengers/mikutter/plugin/gtk/Gemfile
rename to pkgs/applications/networking/instant-messengers/mikutter/deps/plugin/gtk/Gemfile
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/plugin/image_file_cache/Gemfile b/pkgs/applications/networking/instant-messengers/mikutter/deps/plugin/image_file_cache/Gemfile
similarity index 100%
rename from pkgs/applications/networking/instant-messengers/mikutter/plugin/image_file_cache/Gemfile
rename to pkgs/applications/networking/instant-messengers/mikutter/deps/plugin/image_file_cache/Gemfile
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/plugin/photo_support/Gemfile b/pkgs/applications/networking/instant-messengers/mikutter/deps/plugin/photo_support/Gemfile
similarity index 100%
rename from pkgs/applications/networking/instant-messengers/mikutter/plugin/photo_support/Gemfile
rename to pkgs/applications/networking/instant-messengers/mikutter/deps/plugin/photo_support/Gemfile
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/deps/plugin/uitranslator/Gemfile b/pkgs/applications/networking/instant-messengers/mikutter/deps/plugin/uitranslator/Gemfile
new file mode 100644
index 00000000000..08b4831dfc6
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/mikutter/deps/plugin/uitranslator/Gemfile
@@ -0,0 +1,5 @@
+source 'https://rubygems.org'
+
+group :default do
+ gem 'gettext', '>= 3.3.5', '< 3.4'
+end
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/mikutter.desktop b/pkgs/applications/networking/instant-messengers/mikutter/mikutter.desktop
deleted file mode 100644
index 092f5f35cbf..00000000000
--- a/pkgs/applications/networking/instant-messengers/mikutter/mikutter.desktop
+++ /dev/null
@@ -1,9 +0,0 @@
-[Desktop Entry]
-Name=mikutter
-Comment=Twitter Client
-Type=Application
-Exec=@out@/bin/mikutter
-Icon=@out@/core/skin/data/icon.png
-Terminal=false
-Categories=Network;
-Keywords=Twitter;
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/plugin/uitranslator/Gemfile b/pkgs/applications/networking/instant-messengers/mikutter/plugin/uitranslator/Gemfile
deleted file mode 100644
index 14ebffd4e0a..00000000000
--- a/pkgs/applications/networking/instant-messengers/mikutter/plugin/uitranslator/Gemfile
+++ /dev/null
@@ -1,6 +0,0 @@
-source 'https://rubygems.org'
-
-group :default do
- gem 'gettext', '>= 3.2.9', '< 3.3'
- gem 'irb', '>= 1.2.0', '< 1.3'
-end
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/test_plugin.rb b/pkgs/applications/networking/instant-messengers/mikutter/test_plugin.rb
new file mode 100644
index 00000000000..b19c15cd304
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/mikutter/test_plugin.rb
@@ -0,0 +1,10 @@
+# Tests mikutter's event system.
+
+Plugin.create(:test_plugin) do
+ require 'logger'
+ Delayer.new do
+ log = Logger.new(STDOUT)
+ log.info("loaded test_plugin")
+ exit
+ end
+end
diff --git a/pkgs/applications/networking/instant-messengers/mikutter/update.sh b/pkgs/applications/networking/instant-messengers/mikutter/update.sh
new file mode 100755
index 00000000000..142fd8ca942
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/mikutter/update.sh
@@ -0,0 +1,51 @@
+#!/usr/bin/env nix-shell
+#!nix-shell -i bash -p bundler bundix curl jq common-updater-scripts
+# shellcheck shell=bash
+
+set -euo pipefail
+
+main() {
+ local currentVer="$1"
+ local scriptDir="$2"
+ local latestVer
+ local srcDir
+
+ if [[ -z "$UPDATE_NIX_ATTR_PATH" ]]; then
+ echo "[ERROR] Please run the following instead:" >&2
+ echo >&2
+ echo " % nix-shell maintainers/scripts/update.nix --argstr path mikutter" >&2
+ exit 1
+ fi
+
+ latestVer="$(queryLatestVersion)"
+ if [[ "$currentVer" == "$latestVer" ]]; then
+ echo "[INFO] mikutter is already up to date" >&2
+ exit
+ fi
+
+ update-source-version "$UPDATE_NIX_ATTR_PATH" "$latestVer"
+
+ cd "$scriptDir"
+
+ rm -rf deps
+ mkdir deps
+ cd deps
+
+ srcDir="$(nix-build ../../../../../.. --no-out-link -A mikutter.src)"
+ tar xvf "$srcDir" --strip-components=1
+ find . -not -name Gemfile -exec rm {} \;
+ find . -type d -exec rmdir -p --ignore-fail-on-non-empty {} \; || true
+
+ bundle lock
+ bundix
+}
+
+queryLatestVersion() {
+ curl -sS 'https://mikutter.hachune.net/download.json?count=1' \
+ | jq -r '.[].version_string' \
+ | head -n1
+}
+
+main "$@"
+
+# vim:set ft=bash:
diff --git a/pkgs/applications/networking/instant-messengers/profanity/default.nix b/pkgs/applications/networking/instant-messengers/profanity/default.nix
index 5aaed6eb211..e7f8a9e7726 100644
--- a/pkgs/applications/networking/instant-messengers/profanity/default.nix
+++ b/pkgs/applications/networking/instant-messengers/profanity/default.nix
@@ -53,7 +53,7 @@ stdenv.mkDerivation rec {
# Enable feature flags, so that build fail if libs are missing
configureFlags = [ "--enable-c-plugins" "--enable-otr" ]
++ optionals notifySupport [ "--enable-notifications" ]
- ++ optionals traySupport [ "--enable-icons" ]
+ ++ optionals traySupport [ "--enable-icons-and-clipboard" ]
++ optionals pgpSupport [ "--enable-pgp" ]
++ optionals pythonPluginSupport [ "--enable-python-plugins" ]
++ optionals omemoSupport [ "--enable-omemo" ];
diff --git a/pkgs/applications/networking/instant-messengers/slack/update.sh b/pkgs/applications/networking/instant-messengers/slack/update.sh
index adef4441109..0bb0d784167 100755
--- a/pkgs/applications/networking/instant-messengers/slack/update.sh
+++ b/pkgs/applications/networking/instant-messengers/slack/update.sh
@@ -3,8 +3,8 @@
set -eou pipefail
-latest_linux_version=$(curl --silent https://slack.com/downloads/linux | sed -n 's/.*Version \([0-9\.]\+\).*/\1/p')
-latest_mac_version=$(curl --silent https://slack.com/downloads/mac | sed -n 's/.*Version \([0-9\.]\+\).*/\1/p')
+latest_linux_version=$(curl -L --silent https://slack.com/downloads/linux | sed -n 's/.*Version \([0-9\.]\+\).*/\1/p')
+latest_mac_version=$(curl -L --silent https://slack.com/downloads/mac | sed -n 's/.*Version \([0-9\.]\+\).*/\1/p')
# Double check that the latest mac and linux versions are in sync.
if [[ "$latest_linux_version" != "$latest_mac_version" ]]; then
diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
index cdac4a2829b..fd15e77c8be 100644
--- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
+++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
@@ -29,11 +29,11 @@
assert pulseaudioSupport -> libpulseaudio != null;
let
- version = "5.6.13632.0328";
+ version = "5.6.16775.0418";
srcs = {
x86_64-linux = fetchurl {
url = "https://zoom.us/client/${version}/zoom_x86_64.pkg.tar.xz";
- sha256 = "0nskpg3rbv40jcbih95sfdr0kfv5hjv50z9jdz1cddl8v7hbqg71";
+ sha256 = "twtxzniojgyLTx6Kda8Ej96uyw2JQB/jIhLdTgTqpCo=";
};
};
diff --git a/pkgs/applications/networking/irc/glowing-bear/default.nix b/pkgs/applications/networking/irc/glowing-bear/default.nix
index bd7e05e8d38..9e1e14dcfbe 100644
--- a/pkgs/applications/networking/irc/glowing-bear/default.nix
+++ b/pkgs/applications/networking/irc/glowing-bear/default.nix
@@ -2,18 +2,18 @@
stdenv.mkDerivation rec {
pname = "glowing-bear";
- version = "0.7.2";
+ version = "0.9.0";
src = fetchFromGitHub {
rev = version;
owner = "glowing-bear";
repo = "glowing-bear";
- sha256 = "14a3fqsmi28g7j3lzk4l4m47p2iml1aaf3514wazn2clw48lnqhw";
+ sha256 = "0lf0j72m6rwlgqssdxf0m9si99lah08lww7q7i08p5i5lpv6zh2s";
};
installPhase = ''
mkdir $out
- cp index.html min.js serviceworker.js webapp.manifest.json $out
+ cp index.html serviceworker.js webapp.manifest.json $out
cp -R 3rdparty assets css directives js $out
'';
diff --git a/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix/default.nix
index 20aebebf7da..c42fe55169e 100644
--- a/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix/default.nix
+++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix/default.nix
@@ -53,11 +53,11 @@ in buildPythonPackage {
installPhase = ''
mkdir -p $out/share $out/bin
- cp $src/main.py $out/share/matrix.py
+ cp main.py $out/share/matrix.py
- cp $src/contrib/matrix_upload.py $out/bin/matrix_upload
- cp $src/contrib/matrix_decrypt.py $out/bin/matrix_decrypt
- cp $src/contrib/matrix_sso_helper.py $out/bin/matrix_sso_helper
+ cp contrib/matrix_upload.py $out/bin/matrix_upload
+ cp contrib/matrix_decrypt.py $out/bin/matrix_decrypt
+ cp contrib/matrix_sso_helper.py $out/bin/matrix_sso_helper
substituteInPlace $out/bin/matrix_upload \
--replace '/usr/bin/env -S python3' '${scriptPython}/bin/python'
substituteInPlace $out/bin/matrix_sso_helper \
@@ -66,7 +66,7 @@ in buildPythonPackage {
--replace '/usr/bin/env python3' '${scriptPython}/bin/python'
mkdir -p $out/${python.sitePackages}
- cp -r $src/matrix $out/${python.sitePackages}/matrix
+ cp -r matrix $out/${python.sitePackages}/matrix
'';
dontPatchShebangs = true;
diff --git a/pkgs/applications/networking/mailreaders/himalaya/default.nix b/pkgs/applications/networking/mailreaders/himalaya/default.nix
new file mode 100644
index 00000000000..76f1e92d5f5
--- /dev/null
+++ b/pkgs/applications/networking/mailreaders/himalaya/default.nix
@@ -0,0 +1,54 @@
+{ lib
+, stdenv
+, rustPlatform
+, fetchFromGitHub
+, openssl
+, pkg-config
+, installShellFiles
+, enableCompletions ? stdenv.hostPlatform == stdenv.buildPlatform
+, Security
+, libiconv
+}:
+rustPlatform.buildRustPackage rec {
+ pname = "himalaya";
+ version = "0.2.6";
+
+ src = fetchFromGitHub {
+ owner = "soywod";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1fl3lingb4wdh6bz4calzbibixg44wnnwi1qh0js1ijp8b6ll560";
+ };
+
+ cargoSha256 = "10p8di71w7hn36b1994wgk33fnj641lsp80zmccinlg5fiwyzncx";
+
+ nativeBuildInputs = [ ]
+ ++ lib.optionals (enableCompletions) [ installShellFiles ]
+ ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ pkg-config ];
+
+ buildInputs =
+ if stdenv.hostPlatform.isDarwin then [
+ Security
+ libiconv
+ ] else [
+ openssl
+ ];
+
+ # The completions are correctly installed, and there is issue that himalaya
+ # generate empty completion files without mail configure.
+ # This supposed to be fixed in 0.2.7
+ postInstall = lib.optionalString enableCompletions ''
+ # Install shell function
+ installShellCompletion --cmd himalaya \
+ --bash <($out/bin/himalaya completion bash) \
+ --fish <($out/bin/himalaya completion fish) \
+ --zsh <($out/bin/himalaya completion zsh)
+ '';
+
+ meta = with lib; {
+ description = "CLI email client written in Rust";
+ homepage = "https://github.com/soywod/himalaya";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ yanganto ];
+ };
+}
diff --git a/pkgs/applications/networking/mailreaders/mailspring/default.nix b/pkgs/applications/networking/mailreaders/mailspring/default.nix
index f0f3bdb3ff4..a27f3c87e03 100644
--- a/pkgs/applications/networking/mailreaders/mailspring/default.nix
+++ b/pkgs/applications/networking/mailreaders/mailspring/default.nix
@@ -18,11 +18,11 @@
stdenv.mkDerivation rec {
pname = "mailspring";
- version = "1.8.0";
+ version = "1.9.1";
src = fetchurl {
url = "https://github.com/Foundry376/Mailspring/releases/download/${version}/mailspring-${version}-amd64.deb";
- sha256 = "BtzYcHN87qH7s3GiBrsDfmuy9v2xdhCeSShu8+T9T3E=";
+ sha256 = "mfpwDYRpFULD9Th8tI5yqb5RYWZJHarbWYpfKS3Q6mE=";
};
nativeBuildInputs = [
@@ -34,9 +34,7 @@ stdenv.mkDerivation rec {
alsaLib
db
glib
- # We don't know why with trackerSupport the executable fail to launch, See:
- # https://github.com/NixOS/nixpkgs/issues/106732
- (gtk3.override {trackerSupport = false; })
+ gtk3
libkrb5
libsecret
nss
@@ -52,10 +50,16 @@ stdenv.mkDerivation rec {
];
unpackPhase = ''
+ runHook preUnpack
+
dpkg -x $src .
+
+ runHook postUnpack
'';
installPhase = ''
+ runHook preInstall
+
mkdir -p $out/{bin,lib}
cp -ar ./usr/share $out
@@ -64,11 +68,13 @@ stdenv.mkDerivation rec {
ln -s $out/share/mailspring/mailspring $out/bin/mailspring
ln -s ${openssl.out}/lib/libcrypto.so $out/lib/libcrypto.so.1.0.0
+
+ runHook postInstall
'';
postFixup = /* sh */ ''
- substituteInPlace $out/share/applications/mailspring.desktop \
- --replace /usr/bin $out/bin
+ substituteInPlace $out/share/applications/Mailspring.desktop \
+ --replace Exec=mailspring Exec=$out/bin/mailspring
'';
meta = with lib; {
@@ -77,8 +83,8 @@ stdenv.mkDerivation rec {
Mailspring is an open-source mail client forked from Nylas Mail and built with Electron.
Mailspring's sync engine runs locally, but its source is not open.
'';
- license = licenses.unfree;
- maintainers = with maintainers; [ toschmidt ];
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ toschmidt doronbehar ];
homepage = "https://getmailspring.com";
downloadPage = "https://github.com/Foundry376/Mailspring";
platforms = platforms.x86_64;
diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
index 59ae1955169..7badbc2b10d 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
@@ -1,665 +1,665 @@
{
- version = "78.9.1";
+ version = "78.10.0";
sources = [
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/af/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/af/thunderbird-78.10.0.tar.bz2";
locale = "af";
arch = "linux-x86_64";
- sha256 = "7bfec5dfdab93e1ccd8737c67cec8f257d15387045437c016b5ff2b5ef6d6d45";
+ sha256 = "25209094ced8e435c1d2b46f78e618b302b236995454bd494ed2c74357041012";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/ar/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/ar/thunderbird-78.10.0.tar.bz2";
locale = "ar";
arch = "linux-x86_64";
- sha256 = "5f1c9b32fc37c750a0fae80b0b41d3f11c774807014f930476a28885ad7854df";
+ sha256 = "8c414c7b5f45f358918360369fb768b9c9051ef870cae22faad70c0fc9dc9ddf";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/ast/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/ast/thunderbird-78.10.0.tar.bz2";
locale = "ast";
arch = "linux-x86_64";
- sha256 = "b880a02f42b9c6bd3c8b2f82f829c6458091bff1d3555a7cd07d59254c3f9694";
+ sha256 = "650309b5890f67fece320e25fc9e070b560fb37474c00f4f4e08e18ab30ef33a";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/be/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/be/thunderbird-78.10.0.tar.bz2";
locale = "be";
arch = "linux-x86_64";
- sha256 = "ea2049f514881f76b0b775c5e27aace867d483c8a9e8f3c139e1c213fc97371e";
+ sha256 = "2cf57f5c44bf244c59d3cfb849b66ec53308aff381ce39ac16adbb53dcf11064";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/bg/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/bg/thunderbird-78.10.0.tar.bz2";
locale = "bg";
arch = "linux-x86_64";
- sha256 = "54d77d3972fffde0a110b2451fd3516aacd27cf7365171ec369993f0d57506a4";
+ sha256 = "348b23e62abe077e14235159d829b405b9fcb003dc7230883b10ee4f10b64f33";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/br/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/br/thunderbird-78.10.0.tar.bz2";
locale = "br";
arch = "linux-x86_64";
- sha256 = "8fea37e1b1721dfcd06c2798b67260dcd3e3a9821cda5b03ee5355bd04759602";
+ sha256 = "7baa2d4d149ae3011cb7f9ddc3e5a3f6536f7c8ed712e3a60d7f0c92547f1c18";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/ca/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/ca/thunderbird-78.10.0.tar.bz2";
locale = "ca";
arch = "linux-x86_64";
- sha256 = "26ebbb11b0db144ebd7c891a50fd595a1b40ac9e3aaae212464bed73bf8d29b7";
+ sha256 = "368f1b24edae884a2c1e961f938b085478151742b161e5f9016bbb92b3e2ab13";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/cak/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/cak/thunderbird-78.10.0.tar.bz2";
locale = "cak";
arch = "linux-x86_64";
- sha256 = "7dddaa78c0429b8dc7ed0570d8f0dc440da9df940eea2a091dbeb28323a1972c";
+ sha256 = "38bb68cbe0054f6deac79ebd72ff5c9f28c9a2b9b638967da7d20442c909df2b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/cs/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/cs/thunderbird-78.10.0.tar.bz2";
locale = "cs";
arch = "linux-x86_64";
- sha256 = "b50810bcdc40363af165ea703ae660c68b33ceebb186cb736aa2dc7628eb7d51";
+ sha256 = "810fa4e2e3507d419d55f16d0816a326751d2211675b3ca335b08b9e46f8a65a";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/cy/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/cy/thunderbird-78.10.0.tar.bz2";
locale = "cy";
arch = "linux-x86_64";
- sha256 = "9e26a9dabe48146c0ffb94ea8464aba206fc9afe1f110642c5a0d742627e090a";
+ sha256 = "847867a78b1e583cca457436e57cebaf0c721121f61eb955cffc144cc255270f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/da/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/da/thunderbird-78.10.0.tar.bz2";
locale = "da";
arch = "linux-x86_64";
- sha256 = "156b5a65a987ee2a74e608f230129e65abf59952e331bb8467e48ebcda9448c3";
+ sha256 = "d84a31c096f15d79b23e09f35ed2894dabc855c696b457405e2d638c52898945";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/de/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/de/thunderbird-78.10.0.tar.bz2";
locale = "de";
arch = "linux-x86_64";
- sha256 = "f55a61264cec96205f75bae35a58ee9110614aa3a027fc19fa7b67b50167e343";
+ sha256 = "2ad8585b955c60242747daf36855d6fb77658dd2dda75cb3ff8637c8ef07bc75";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/dsb/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/dsb/thunderbird-78.10.0.tar.bz2";
locale = "dsb";
arch = "linux-x86_64";
- sha256 = "5e4290ddeb1bc2e301d400c5b71c719e25f109f20aa92c723cfda11342fcf171";
+ sha256 = "84ac04cd5248ef47c49927edcdf71d2e8f7cf96139888289eb4d8898b5224f71";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/el/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/el/thunderbird-78.10.0.tar.bz2";
locale = "el";
arch = "linux-x86_64";
- sha256 = "c10b09b8773cb4479c354194664f5c40bb45e748cc84aa3f895be72feca1b761";
+ sha256 = "cf2760b5488590a76df140b7c877528bd76446187b673c82087b199e9e8f416d";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/en-CA/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/en-CA/thunderbird-78.10.0.tar.bz2";
locale = "en-CA";
arch = "linux-x86_64";
- sha256 = "e21d94ea954e080db1d4a8c5a20d39099fc21019f78ddcb4fe105ca0beb6f5a3";
+ sha256 = "7006ac951a834ff689f4ee1ab5a0a4e051368cb33ceaea459467536e2f22b74b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/en-GB/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/en-GB/thunderbird-78.10.0.tar.bz2";
locale = "en-GB";
arch = "linux-x86_64";
- sha256 = "9adcdb0b947f5ef79d874ca47b4361677e1dacb03c97ff4cdcffe0706d865272";
+ sha256 = "e77850b2ff0b91f92ee18990715a75b7c73e226a6cdd9dec6b3fd689c3571053";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/en-US/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/en-US/thunderbird-78.10.0.tar.bz2";
locale = "en-US";
arch = "linux-x86_64";
- sha256 = "20eafd8ee01018952d723a51f736aedaeba2c48f4da5554a80035427e24d1486";
+ sha256 = "e7f324c2e959ca3ce15dddf949927975cb06001243f3b7bd8a0e162edebf837e";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/es-AR/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/es-AR/thunderbird-78.10.0.tar.bz2";
locale = "es-AR";
arch = "linux-x86_64";
- sha256 = "18e3ca32a92fcc7d201d89abb2c053f5f081ad91402280a0de75c1307eed5955";
+ sha256 = "17be1ad2c43f72ca07ae1060566ac4730e1022d4032efbfa76b6f1beec1bc123";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/es-ES/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/es-ES/thunderbird-78.10.0.tar.bz2";
locale = "es-ES";
arch = "linux-x86_64";
- sha256 = "ddae6044f742f3530bb1eb45f9464158d3b53f26dcaae81874e8082e839b581b";
+ sha256 = "697acffd0cb7b8c5948fce660528729ae31ee0baae809e4b3d759f9d42a8d7f6";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/et/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/et/thunderbird-78.10.0.tar.bz2";
locale = "et";
arch = "linux-x86_64";
- sha256 = "d3533609865cb53fa4c1226b747ae011737112755e83b734f0b54bc61d995f6b";
+ sha256 = "84789fa2e03dc312a9e6509fd8e938aa333465df8b451d7224cc86ea9059bc5b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/eu/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/eu/thunderbird-78.10.0.tar.bz2";
locale = "eu";
arch = "linux-x86_64";
- sha256 = "6e245317ce453ef71dae9a222e9fdaf5f72978aeee6735300a77bf452bba9934";
+ sha256 = "29c7728bb5aef60f53dc914b5d6eed47bddd191198db92b79d0ef144e64c5890";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/fa/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/fa/thunderbird-78.10.0.tar.bz2";
locale = "fa";
arch = "linux-x86_64";
- sha256 = "a779002a3778e3b5939a1b778ea1d2a570d5ee71ac3db444b64a8fd19a4ffa1a";
+ sha256 = "5ab74aa662aa970ea406a33f05059361e317079c41b755700c44cdc778d04e43";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/fi/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/fi/thunderbird-78.10.0.tar.bz2";
locale = "fi";
arch = "linux-x86_64";
- sha256 = "8edba99433e66f4d2ea9936fdcd7a0f84cfcea73da2fede520afc45e90d1f639";
+ sha256 = "578b713326dfef5e59acb1df29dd13f35f7b935ebc5221433c180431943c9424";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/fr/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/fr/thunderbird-78.10.0.tar.bz2";
locale = "fr";
arch = "linux-x86_64";
- sha256 = "c21c71dc854aa27b6519b0220c646d32bf5015d39765ec34bef2b1a62712c9f1";
+ sha256 = "2c43647dc70aa1f3bc15a83ec4654b6ec3c6d520d03bcb503f8672e1dba0edfe";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/fy-NL/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/fy-NL/thunderbird-78.10.0.tar.bz2";
locale = "fy-NL";
arch = "linux-x86_64";
- sha256 = "6babc9461a014f8f1eeaa0c9ed5912bf8cb9ed24776de637014e0a5ab52b4aba";
+ sha256 = "a621165ce74cb20400bd104d43e4ddf196305cc7000cd524916b766662f20b23";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/ga-IE/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/ga-IE/thunderbird-78.10.0.tar.bz2";
locale = "ga-IE";
arch = "linux-x86_64";
- sha256 = "889788186a45a9f951ecfcd0c61710d2dd30334c81ca0c697229401f555dd4fc";
+ sha256 = "5e45fb6ea542f24715d96e04d9c30b44584481115fe0d12a30e27ad2cc057faf";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/gd/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/gd/thunderbird-78.10.0.tar.bz2";
locale = "gd";
arch = "linux-x86_64";
- sha256 = "f9bc35aeee7d40d4fab47d74edacfa66b784aea26c3ed60709bf8554f3151d38";
+ sha256 = "2ccc8a5394119d98d9b3ca97128e62f18fdb8b86076ff24bca6f29ac3276dc4f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/gl/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/gl/thunderbird-78.10.0.tar.bz2";
locale = "gl";
arch = "linux-x86_64";
- sha256 = "71f270c780f58d7530e0f9535aa16d0df329f974cd9fa6d51da5870b2197d7af";
+ sha256 = "fc84c102cab3c1b85af2beb68fcabf752c9643407b6b6322e2972d231dec9da9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/he/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/he/thunderbird-78.10.0.tar.bz2";
locale = "he";
arch = "linux-x86_64";
- sha256 = "5927cfa48ea585e75894a64dcb70e68fe2d8e5eea5b926b26b522b8a78cbc2be";
+ sha256 = "cdda0210f15750688490ceeac10608722184ebb05e566be2c8d0dca563d708b5";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/hr/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/hr/thunderbird-78.10.0.tar.bz2";
locale = "hr";
arch = "linux-x86_64";
- sha256 = "a5ea3a25d9a28518005a62d7a1a9832e58199924f9761b7bc8c1a6b0ed5dbc3e";
+ sha256 = "3e18a65345e29126e7fc82a8da20bb7a8a3b8bd6efdcb143c8814d940a4e42b1";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/hsb/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/hsb/thunderbird-78.10.0.tar.bz2";
locale = "hsb";
arch = "linux-x86_64";
- sha256 = "1e6b20a125c2fad0b78558b5299bb57208ccd3bbe9075505b94ed819d03faaac";
+ sha256 = "e9b38d2a15e152210725f2422e283a84086c95edf164f33979f907180e46a568";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/hu/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/hu/thunderbird-78.10.0.tar.bz2";
locale = "hu";
arch = "linux-x86_64";
- sha256 = "1fb84c326aa68ce3bfd11c1381a0317b2b6f953b23611bfab6d409d208c164a2";
+ sha256 = "733efd6a1eb66353e0a6dbe74f18f42cec0c7ecc01d1bea865303cba9d4067b8";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/hy-AM/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/hy-AM/thunderbird-78.10.0.tar.bz2";
locale = "hy-AM";
arch = "linux-x86_64";
- sha256 = "4ae1a82ca5321cf068525ffdf775f1245efedc5a7db8104d83c177cc9606c61c";
+ sha256 = "8798f26cddc10d47992031e21b785e115c46413d36b8b4e518649adaeb3b47ee";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/id/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/id/thunderbird-78.10.0.tar.bz2";
locale = "id";
arch = "linux-x86_64";
- sha256 = "e797bad2246f1e1d1fd9ead1fd99c0c03cf70edd94cec0944f7ccc14ef7d5053";
+ sha256 = "3cb73a2f9ee07cbbf13d562e988410cd644e5e5b87172c960463210bb9651be6";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/is/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/is/thunderbird-78.10.0.tar.bz2";
locale = "is";
arch = "linux-x86_64";
- sha256 = "1b9c39688d4958cec95537b972efc8179cca37901c75dce962e6ae8f18371125";
+ sha256 = "3d3bc8d8c12d213635404e559d3b477435fe632ad3e69ea7060a03f30d31b86d";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/it/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/it/thunderbird-78.10.0.tar.bz2";
locale = "it";
arch = "linux-x86_64";
- sha256 = "62a19dfd8c496cb1dd44f960914ef46314d3f1542e7957b60622592e003fcff3";
+ sha256 = "4ce44992d22f283f08e16549bc6cfdc416bb6d197bef63702ac279ab8a3366a7";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/ja/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/ja/thunderbird-78.10.0.tar.bz2";
locale = "ja";
arch = "linux-x86_64";
- sha256 = "b730278fe53e3bf51fdf2147348a6f68b4773f572166c8c180685a8acf805577";
+ sha256 = "ecdb393877df52459486628f70024620e2824ad6da8363a9133e64c041fe3812";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/ka/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/ka/thunderbird-78.10.0.tar.bz2";
locale = "ka";
arch = "linux-x86_64";
- sha256 = "c22b1aa5d5d24ba355219bd31023acc74cbd73f7211594c5445ffcaff247675c";
+ sha256 = "f39a3beed17681f36f28a33fb74083143aa33ae51a7836507345b147c04d1d0a";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/kab/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/kab/thunderbird-78.10.0.tar.bz2";
locale = "kab";
arch = "linux-x86_64";
- sha256 = "8b84e2d2d411ab7486e7013479632a65d836790e24df258db633e7c08cf8afb5";
+ sha256 = "fe7b8e90b3c30de00ca5326e3a2a100aa7ba862322c7f386c871b56a22ca4e08";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/kk/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/kk/thunderbird-78.10.0.tar.bz2";
locale = "kk";
arch = "linux-x86_64";
- sha256 = "c2bd75e1945ff3f74dca7cc5bcecbdb36d94a07b0ad4c4636ddc22b0527b4e27";
+ sha256 = "b1c8ece7ec8e634b0746664401ca750c1cd3a81b587f6ee918b6166720c3b074";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/ko/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/ko/thunderbird-78.10.0.tar.bz2";
locale = "ko";
arch = "linux-x86_64";
- sha256 = "add8f17f12b5add8759a4b4964d205ffeabf49d5d3ad351f575762f11cd496e7";
+ sha256 = "31f16d08a51315502e0e1da5d11581e2637361b40fd5c0d60852c1546fd45cb7";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/lt/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/lt/thunderbird-78.10.0.tar.bz2";
locale = "lt";
arch = "linux-x86_64";
- sha256 = "53dbfabba0feda6ba2c6d8673bad01769a99d28cd4cf05dd27cc13364e365d61";
+ sha256 = "e56f4fd2bbee8bd0379030442355412f9f73e9c67123505242f438ccebc544ee";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/ms/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/ms/thunderbird-78.10.0.tar.bz2";
locale = "ms";
arch = "linux-x86_64";
- sha256 = "220db127c3a32811200db8c2e8ff1c3a026e5fc766830cf4267c42142f098932";
+ sha256 = "13c2feb9ee22a40485f9648b2ad60113b0a463aa7c55cd9bef8cb2a68211bdfb";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/nb-NO/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/nb-NO/thunderbird-78.10.0.tar.bz2";
locale = "nb-NO";
arch = "linux-x86_64";
- sha256 = "e96f5814e9d2b9ca8f3326cfe867405681ab4132e98c17a0a0980c1e9a2dd0be";
+ sha256 = "7e305950c61299fe992891cb2a18a8420c40bb9333b40dd45ca39b92d644cdf9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/nl/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/nl/thunderbird-78.10.0.tar.bz2";
locale = "nl";
arch = "linux-x86_64";
- sha256 = "deaed1d2f3ddf74391dfe94b3b11726e0a7823f45e37047b2dbfdc0133eb329c";
+ sha256 = "eeaa3e5b0e72f36cf1a66c0bf040e94258f2547a7e1665fc667bab3cd9f84410";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/nn-NO/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/nn-NO/thunderbird-78.10.0.tar.bz2";
locale = "nn-NO";
arch = "linux-x86_64";
- sha256 = "8bb5e5375805285da875280316dacf39be1069cc567df6b09cebc9689922a260";
+ sha256 = "e870393eef06b6eb2564b00a039c7d19e418e2283f992970df860606099cd70b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/pa-IN/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/pa-IN/thunderbird-78.10.0.tar.bz2";
locale = "pa-IN";
arch = "linux-x86_64";
- sha256 = "8680087bfcc7758df27d74f7be937b50625f08c44c3c8a2a2d21f3ffeda4d38d";
+ sha256 = "24b11eb4bb5bc929e89b92cc0faf4011f5ce33dd03d4212ac5c0209ce7901c10";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/pl/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/pl/thunderbird-78.10.0.tar.bz2";
locale = "pl";
arch = "linux-x86_64";
- sha256 = "9bd9a119f0f2d0bb5e489907f23811a6e5933d9304fb92d938fa7b0e638dac6e";
+ sha256 = "cace57aae947e8a2ed1b7875c4791d94d8f0d0f865ee0dc0a4a9230081db6477";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/pt-BR/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/pt-BR/thunderbird-78.10.0.tar.bz2";
locale = "pt-BR";
arch = "linux-x86_64";
- sha256 = "2f87bb38281d69e34d9918b40ca29f35ada3b9f8a627bd36c56f21befe2a45f8";
+ sha256 = "d36a91d97b8e53720665e3541215889a2ce848de5b87989c52c3022924ae73e7";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/pt-PT/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/pt-PT/thunderbird-78.10.0.tar.bz2";
locale = "pt-PT";
arch = "linux-x86_64";
- sha256 = "786a97c6b1604e59a6a4114142b5f5c309149480ddd612b22c1ca122d3a2a633";
+ sha256 = "18f71f0f278037a88af1ff4d87ab8b907cfa3097f11e3b98282c9f9de9d40fee";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/rm/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/rm/thunderbird-78.10.0.tar.bz2";
locale = "rm";
arch = "linux-x86_64";
- sha256 = "cd54da5d6c3b105a8ed9dd09771d8e15881694b001b6daf8199014fd4043b777";
+ sha256 = "833e51aaba81212aad670b276498362103aef388cf09b5404a78cb046805be4e";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/ro/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/ro/thunderbird-78.10.0.tar.bz2";
locale = "ro";
arch = "linux-x86_64";
- sha256 = "e81e40a5eec5bb4dda0d0b7df414bd475c054008249c946e8d99c9272f31ab62";
+ sha256 = "fe033d44674609c319c8bc6939056d8f77ccbabf0badcb059a06bbe028868af2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/ru/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/ru/thunderbird-78.10.0.tar.bz2";
locale = "ru";
arch = "linux-x86_64";
- sha256 = "283221c2b927c10a2e4017383af6b93bd717555c28b700b276ba8d600a84250d";
+ sha256 = "19c26477c691f60c76813b1fc657ff837fe4f160d6e77ffa6f73d9e88e748655";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/si/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/si/thunderbird-78.10.0.tar.bz2";
locale = "si";
arch = "linux-x86_64";
- sha256 = "7f6fe6533e54e6a8a544da7bd844079b2d6a5e913c16210ad77ac7c93d2b1415";
+ sha256 = "ae2a50027f0df5e3533bcb5b094987976a040ef1cde810e030ce6e446338ba96";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/sk/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/sk/thunderbird-78.10.0.tar.bz2";
locale = "sk";
arch = "linux-x86_64";
- sha256 = "b0f872351a9f2aa714f69be18b78a8092049c8e005b07a19a906a8d595d90fc1";
+ sha256 = "9bed8f53737a363314cf67671b64b7bbdd93ff2ab50fe32a781f09cd991e3a96";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/sl/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/sl/thunderbird-78.10.0.tar.bz2";
locale = "sl";
arch = "linux-x86_64";
- sha256 = "699f4e4dd786fd09d9f8430fc33b5b2897541334f5b9517a7a8dab527aabed7c";
+ sha256 = "fd38aaf88301b3f58cbf0d63d0545d30f8db4994509f10f76efdcb6b0d4ea977";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/sq/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/sq/thunderbird-78.10.0.tar.bz2";
locale = "sq";
arch = "linux-x86_64";
- sha256 = "ce3c9e8cbfef057349e82462eba72a57b14d8c76f5d7949529dc9d629cc5b01e";
+ sha256 = "6fa0d45921f4c2ca8c5c4a2755c8f724b3046a92504fa98bd20084b5be297891";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/sr/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/sr/thunderbird-78.10.0.tar.bz2";
locale = "sr";
arch = "linux-x86_64";
- sha256 = "1b2f383e517d80e6607fd4041b07071d71e26602bf812c85ecbbd0a5e7a674c1";
+ sha256 = "1c85bd065b6441c2131f32b9faff5ca425bcd718a0b10052b05ba29a68a93c78";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/sv-SE/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/sv-SE/thunderbird-78.10.0.tar.bz2";
locale = "sv-SE";
arch = "linux-x86_64";
- sha256 = "d0020ce77ec629cff313f8d23a1354c6ee2591d502d2f60d9800fa7baaedd0c3";
+ sha256 = "cfcafa5ef9221bd1cc91f266e2659e769753a2acbac6893528347a5b7db92c2a";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/th/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/th/thunderbird-78.10.0.tar.bz2";
locale = "th";
arch = "linux-x86_64";
- sha256 = "40abb70abd9938a3141c50bf39a4e1d62c862b8b1bcfdba0a11d57fb5cf373b7";
+ sha256 = "892b23cde316c922ea6fc7b537437885fa8ca2ebfd9b17d177b5f5d5deda30cb";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/tr/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/tr/thunderbird-78.10.0.tar.bz2";
locale = "tr";
arch = "linux-x86_64";
- sha256 = "363a371af193497ec72dafd8f5789c55b62e404f1fd386d78ed6178dfd8b5ef5";
+ sha256 = "bad99148eb7f2777fc0227db9f6b03a9b31c7aaee19bfe4fbae26227547421e7";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/uk/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/uk/thunderbird-78.10.0.tar.bz2";
locale = "uk";
arch = "linux-x86_64";
- sha256 = "71697e823371ab8e9d5160c2fededd533de4e9adf4d491b018c2fb7db721b17c";
+ sha256 = "127c636969dde8cb10121f8fa3ed0c18c35d13ccfd07643a2aa5c3aa78a6f82f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/uz/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/uz/thunderbird-78.10.0.tar.bz2";
locale = "uz";
arch = "linux-x86_64";
- sha256 = "46350d800495493f15295d65989bb3c63cd1180ccdbe4481550847618f54420e";
+ sha256 = "2c1848c7cb62bf96cb255a39e31099516e7df8d3e34cf68430a323729b571430";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/vi/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/vi/thunderbird-78.10.0.tar.bz2";
locale = "vi";
arch = "linux-x86_64";
- sha256 = "a254cd59632d78971d7b3da95aad73a73cfbffbad7ebebde3c5b9f1c735db65b";
+ sha256 = "754e8974cc2284fb7b01f413c0220cb1d99b50831189dd61ab8804e44bf54f48";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/zh-CN/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/zh-CN/thunderbird-78.10.0.tar.bz2";
locale = "zh-CN";
arch = "linux-x86_64";
- sha256 = "c69bd4b840d5288d334191beaf89a4407e1039325b5cdeb107ea30c1a7e2d73d";
+ sha256 = "f76ee6ce544ff1dd9df931b15e9d25b18971f489b3b9e6f03749976ead068c60";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-x86_64/zh-TW/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-x86_64/zh-TW/thunderbird-78.10.0.tar.bz2";
locale = "zh-TW";
arch = "linux-x86_64";
- sha256 = "1e120294db0dee586bb1f02ee935266f4b47ae58e0d76cfade4cb306d4153c65";
+ sha256 = "fc7441b416e541c24b0148450812f350058a6d0fe2a44fa546fb4d059674bc27";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/af/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/af/thunderbird-78.10.0.tar.bz2";
locale = "af";
arch = "linux-i686";
- sha256 = "31a8e3f3b38df0da0821a5bfbc7a9abaeea64b587ba3e7bfd9b601910b3e305f";
+ sha256 = "5ed18c354dcb22e9999854f5f83d880fed92fd9e4ddb43564c8e69a07c5e29e9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/ar/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/ar/thunderbird-78.10.0.tar.bz2";
locale = "ar";
arch = "linux-i686";
- sha256 = "f2ecd646ffe074f69c0b8e9b99b40984eb8ee3edfa9e54ee7994d45192dedcff";
+ sha256 = "31caadee014741ec0c77307a155bfdf5ba4f7d9b06e1786edf1bf6162d59ef43";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/ast/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/ast/thunderbird-78.10.0.tar.bz2";
locale = "ast";
arch = "linux-i686";
- sha256 = "7206c4f541f559f97a3794e4fa523a5bbc0ddbbf53faedd6de0eedf9bc53b73f";
+ sha256 = "e5dfbce6d8dffadda9ad5320d8baadbe185972d0e62d79079833853151b1bd54";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/be/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/be/thunderbird-78.10.0.tar.bz2";
locale = "be";
arch = "linux-i686";
- sha256 = "fb8b7b8f054bb57c81ff3d6f9be2344875614603e51d0ada3c9ae9a7b293d51a";
+ sha256 = "0f6507525b844b405c515b80238a9672012c6950185a2be6523eef3d42bcad50";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/bg/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/bg/thunderbird-78.10.0.tar.bz2";
locale = "bg";
arch = "linux-i686";
- sha256 = "9df0466da1b9d866055d1ab2c0afacfa52520cea68d399e0bfce31dca73501ea";
+ sha256 = "002bb9b971851c3ec8eed1e1ce1c28fd97fac788578d53eb0eb130a2c100426d";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/br/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/br/thunderbird-78.10.0.tar.bz2";
locale = "br";
arch = "linux-i686";
- sha256 = "89625f21cef0fb98fe3b3755c73859ff942ada47b255b2f8a806f280a77af711";
+ sha256 = "adbccb49d9f00198ee4fe2868d3ee4d745c79dda90a8b0b496c6be2a0ab9fada";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/ca/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/ca/thunderbird-78.10.0.tar.bz2";
locale = "ca";
arch = "linux-i686";
- sha256 = "6fa044e4b37fabe37ce76f09ae97edb0d82aabbc5e60442bed24fc0c6a8735fa";
+ sha256 = "efb8a08377c34b49e57c424c86473429b475c9f0bb23e17f6beec2c3d288b9bd";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/cak/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/cak/thunderbird-78.10.0.tar.bz2";
locale = "cak";
arch = "linux-i686";
- sha256 = "2668ef838b08b75ac1f0d8f87ec01bc08fdd02631f8cbacd4c25bf0e13470dae";
+ sha256 = "e3775d9aad469ac62c5b86e8441ee8597172cbb9f4f365309c402c42608bf3a9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/cs/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/cs/thunderbird-78.10.0.tar.bz2";
locale = "cs";
arch = "linux-i686";
- sha256 = "23bc6f0a178b9869cbdb59db4068cda6e88b7c19415c736ba651f886b5f680d0";
+ sha256 = "a74c7a2c2bb7c0ce6456e808a6d503554c74d9588c59555086ef188e3ec9ad9b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/cy/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/cy/thunderbird-78.10.0.tar.bz2";
locale = "cy";
arch = "linux-i686";
- sha256 = "afaea8a7289f56ea07a2960a4ab645c8c748d43bf8ae5458b70fbd2c93d070b5";
+ sha256 = "83fd84d86dff669f65b95014a222ffa4889f1db16209c133ea02c0d4f893169c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/da/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/da/thunderbird-78.10.0.tar.bz2";
locale = "da";
arch = "linux-i686";
- sha256 = "7efbb2b12744af4da28580d6fcd648c41ca1a7bf09df1eb2fe149e9cb1db29c4";
+ sha256 = "531984ff00cfcdf957186221d461d61dfb8637474448dd7c3f9c8f21c3d78eb9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/de/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/de/thunderbird-78.10.0.tar.bz2";
locale = "de";
arch = "linux-i686";
- sha256 = "0c7059e9a8bbeceac0a834ec6db2d1a54b25d1016149cdd766259a9982b5a55d";
+ sha256 = "bffa31e9ad9fcd17b3d29414d41e7fad2f95e3becfa79e45176a20ce4d7fdbb6";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/dsb/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/dsb/thunderbird-78.10.0.tar.bz2";
locale = "dsb";
arch = "linux-i686";
- sha256 = "266f62501dae1728eed1756bde56378f2a81c85e600f83e59ab47b0cda6eed7f";
+ sha256 = "05101ba58d6929e128f753015220a7d018e6e0fc5b880843c2bd821a53d26064";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/el/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/el/thunderbird-78.10.0.tar.bz2";
locale = "el";
arch = "linux-i686";
- sha256 = "a22d57db810633e9b6041207b018b6a4d97b4f6d25b9dac636b7c9dc7ac2bb3c";
+ sha256 = "121178325199b8e4aaed151f197787e8bf82ffa6c93638322fc75755e9f09608";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/en-CA/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/en-CA/thunderbird-78.10.0.tar.bz2";
locale = "en-CA";
arch = "linux-i686";
- sha256 = "8bbca7d8bef81968c31317e298a471399ae183170dfeeea37c5791b60afcab7c";
+ sha256 = "9a11bbbe5a320f4507813bde58407ef441b260d17811f7eaa692182fdd1866b4";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/en-GB/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/en-GB/thunderbird-78.10.0.tar.bz2";
locale = "en-GB";
arch = "linux-i686";
- sha256 = "431a4f01e3220ed58bfc4f4d6633bb77f9f69929ebc68da9aa0945ec9686d569";
+ sha256 = "f5bb637a3b17c7eea22ae7804c13734c60890755273badc4d832035a34fad272";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/en-US/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/en-US/thunderbird-78.10.0.tar.bz2";
locale = "en-US";
arch = "linux-i686";
- sha256 = "0d0970844747d9ddeb55e81db916a7c46333e0d64c67b25106eded69d0345e57";
+ sha256 = "7437fcbaa4c75858b3ceba7abce6237f80017e6c68cf963ed109b81bb73f3553";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/es-AR/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/es-AR/thunderbird-78.10.0.tar.bz2";
locale = "es-AR";
arch = "linux-i686";
- sha256 = "be435aa764c0c46864bd18463ad47ce31c3ace6ab2204c2d38ad44e6e924eacc";
+ sha256 = "6aa396ca00791ed0127321bc9cb9e3fe677f1897bbde157986cb8829a6d1fecf";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/es-ES/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/es-ES/thunderbird-78.10.0.tar.bz2";
locale = "es-ES";
arch = "linux-i686";
- sha256 = "0201bed6e8286dc455389cb62393cf697be955010e893a6d294a963861331324";
+ sha256 = "4eb1605ee60dc731d578117fec45c03fec7f3f99ef29ab7475d4be15004949fc";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/et/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/et/thunderbird-78.10.0.tar.bz2";
locale = "et";
arch = "linux-i686";
- sha256 = "a4594dbaba90ecbd7d2c6ebe91d3280bfa05815355b9f16756c19795a598f105";
+ sha256 = "94555bbc597c622ec1cab4e310a978a638c94d7398beb40cb573555e2f5a86ba";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/eu/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/eu/thunderbird-78.10.0.tar.bz2";
locale = "eu";
arch = "linux-i686";
- sha256 = "f74f02683bfcbf7795b92325d332f855c636f42259e36c1284d383b49e919770";
+ sha256 = "77dca056a6c4cd64d6fe5ea60fe6d9c211a1ef1d0accb4685c9c8fea7861e2bf";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/fa/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/fa/thunderbird-78.10.0.tar.bz2";
locale = "fa";
arch = "linux-i686";
- sha256 = "ae29d36b6510bdda27ccdd1444bab1c2b2c581fabc2e501cfee54c50e34ea5f7";
+ sha256 = "8e0b2bb8630c2ca64652fd952656637d1393b5845104f9f2ab08d0ade2a96da6";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/fi/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/fi/thunderbird-78.10.0.tar.bz2";
locale = "fi";
arch = "linux-i686";
- sha256 = "2b586687b107c45d59a7da744ee7c8dca6b6b0dcf7685a963a901819e2b7c799";
+ sha256 = "d8ba0d4194628ff7946159bf511d2485d310c42c9fc745c27b751f4c59477ed9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/fr/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/fr/thunderbird-78.10.0.tar.bz2";
locale = "fr";
arch = "linux-i686";
- sha256 = "dcf346dd57f6c9a5a5b05c9a367a7955b821de1c1a2e25caaa2c39d7eb451f32";
+ sha256 = "ebb2561f50b1d6defb628a07646b70952687f666475ca126bd72dbd7478efe26";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/fy-NL/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/fy-NL/thunderbird-78.10.0.tar.bz2";
locale = "fy-NL";
arch = "linux-i686";
- sha256 = "e19670ba85c5ee7840dc40e04c4d76dbe3b240c1eb865800a184cc512c7e1cc9";
+ sha256 = "45c7c92986cc792273e5923834bd4f209e25d26e44ac1e155c8f7b539e72ee8e";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/ga-IE/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/ga-IE/thunderbird-78.10.0.tar.bz2";
locale = "ga-IE";
arch = "linux-i686";
- sha256 = "97608d41f96d830a0926e52bc218bbdbdbe2e3abebbfaaa8fcc78c5957bf2d3a";
+ sha256 = "c127d817e6b4759eac5b2af5aaad82670a157857b63bc0869ac1adeb27d38f3c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/gd/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/gd/thunderbird-78.10.0.tar.bz2";
locale = "gd";
arch = "linux-i686";
- sha256 = "6f95e26b57550604c177a6b561bcd73ba39df76f6c08af71185eb050f66fdfbf";
+ sha256 = "40468c9214fb67dda8cca1f43d03e5621910eb260bde268034a8c967af2bf73f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/gl/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/gl/thunderbird-78.10.0.tar.bz2";
locale = "gl";
arch = "linux-i686";
- sha256 = "6f911ad3c16a0fe9fcfab54518585b5ea53a6c800ef4a01ee22fba029d8f857f";
+ sha256 = "55ab753b591c72307b31e9b98a1f426886a4a0007af1507fc8ffbe656d2c92b9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/he/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/he/thunderbird-78.10.0.tar.bz2";
locale = "he";
arch = "linux-i686";
- sha256 = "535430ac4b5991621ea4b3a042a45db7c5ec1dfb3831c882cc06180a6e21d1bd";
+ sha256 = "2ea8691ac3188d8ca0c20fd7c9e9cba25e8b14eb6ebb338b42303aadaeba07e9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/hr/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/hr/thunderbird-78.10.0.tar.bz2";
locale = "hr";
arch = "linux-i686";
- sha256 = "9dd72c9c518fad8e7b44467b6b0df15a6d631aac73fe4c6d5339b1a47f0abb62";
+ sha256 = "6c5eab557ad07084889b08ae5a79569794a916535ad4b6b23493d2c658e57dc2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/hsb/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/hsb/thunderbird-78.10.0.tar.bz2";
locale = "hsb";
arch = "linux-i686";
- sha256 = "b42f9b479e9a9e4a9be2ab99facb9a2d8a9d29ab549a69882e2e13eb15f67414";
+ sha256 = "90ea860940cca6152ca92601e25514652ae652aae8df5a0ec9b9bcf59ccfa570";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/hu/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/hu/thunderbird-78.10.0.tar.bz2";
locale = "hu";
arch = "linux-i686";
- sha256 = "b82c89ffe3e76744a85c4a5357d294108aa1fad6b8783b27b0b38911974aaa3e";
+ sha256 = "71895a707e263bbfdf9a08542bab2fd8609458c3f5229a536333db46b17282be";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/hy-AM/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/hy-AM/thunderbird-78.10.0.tar.bz2";
locale = "hy-AM";
arch = "linux-i686";
- sha256 = "b5f7387d7e2be74fffa44af77ae7a4dfd6a5c7ce88348eca948c5756296bb1c5";
+ sha256 = "475e4c99597e444316de578c7ec4528e762ff27021189a31fb1d45a7c97b5eee";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/id/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/id/thunderbird-78.10.0.tar.bz2";
locale = "id";
arch = "linux-i686";
- sha256 = "87e85aace879757e916b733f36d2c6ef8aaf050c72f2a849b09df44e788071c6";
+ sha256 = "c25f6bc1478c181dd88e9506b9b81882235c39f280b0065608827e90299ba5f3";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/is/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/is/thunderbird-78.10.0.tar.bz2";
locale = "is";
arch = "linux-i686";
- sha256 = "06f38495a1f62bafdbf4c594851d5a50a31ff7a619654e8ec5b267f81e5d83e1";
+ sha256 = "eaa68dce6341f5074b3ba15452c24139737988d7af9046e8e3b41fae715ec344";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/it/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/it/thunderbird-78.10.0.tar.bz2";
locale = "it";
arch = "linux-i686";
- sha256 = "17bf5e33c146e060b6ab26085173d46d8ef5774d0314963348507ae43928d632";
+ sha256 = "5b1ecc37001284b49dd835060f5edf6a982f2e63218ef2dabd652e10c62ca742";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/ja/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/ja/thunderbird-78.10.0.tar.bz2";
locale = "ja";
arch = "linux-i686";
- sha256 = "f5db8f5abd1cee454fd93b4d25d2700ac53c98fbc3b3653a7501ae46032fd22f";
+ sha256 = "eb61857839abcd445389de0349b7e297a0d737e7aa511ddeadd92b2a38419dd2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/ka/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/ka/thunderbird-78.10.0.tar.bz2";
locale = "ka";
arch = "linux-i686";
- sha256 = "99d0f8777c3edb3e10d9627789574cd32e3ab7b78f2d7fc914d1d8a6ccdf354c";
+ sha256 = "902c0b7c3247c1d5d6dd80d751a8fbd22756a73414d8fcba072d2b3213b18280";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/kab/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/kab/thunderbird-78.10.0.tar.bz2";
locale = "kab";
arch = "linux-i686";
- sha256 = "56303c2d1432502b8086dbf77c97807bd1d06663e7d5329a98c063d2898db531";
+ sha256 = "c91d1f0eeb7b6de618794ac369c323fe514a201d506906b53fa527da2dadabd8";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/kk/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/kk/thunderbird-78.10.0.tar.bz2";
locale = "kk";
arch = "linux-i686";
- sha256 = "b1e9904229f9b1029a1679bd22ae58c849e1f5966729360c03b4bd8fac00c4f7";
+ sha256 = "dc7115e726c51cb56625e2254b4987b951e972874b0dcd245e40f0477fa462af";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/ko/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/ko/thunderbird-78.10.0.tar.bz2";
locale = "ko";
arch = "linux-i686";
- sha256 = "5f53baf78b96853b3c490abff44736ce4e24b049b81e9baad80889a995f9b610";
+ sha256 = "a6d9b6b6c8a0a05fd2dde4545af109369d1158972ebdaf91bdb4c30498c88db6";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/lt/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/lt/thunderbird-78.10.0.tar.bz2";
locale = "lt";
arch = "linux-i686";
- sha256 = "b9724ca09c3c3a4be2f73a0b6673e4c17cec5baf140d89dfdfac27f0486f07e8";
+ sha256 = "4fb6c5ae8fee1c2a829c1adadb99e6e21ba96e61e59a631b88750a00093177ee";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/ms/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/ms/thunderbird-78.10.0.tar.bz2";
locale = "ms";
arch = "linux-i686";
- sha256 = "aa72459fdcf1348b53de43715b0e7649d7cbd6d450d069331f0dfd45910e68ee";
+ sha256 = "bb4bf6706ad62be4adb23101cf621b9fcc742f757d317071b81dc6860317615e";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/nb-NO/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/nb-NO/thunderbird-78.10.0.tar.bz2";
locale = "nb-NO";
arch = "linux-i686";
- sha256 = "d22d185bfd1db98db50151c3d8872cbfb8df5ecc1472c1526f605274de086f2a";
+ sha256 = "fdbd9715a34e6d4d4c77d1b5d6aa6ec1673907ab1df823a0b95730ea299ac6fe";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/nl/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/nl/thunderbird-78.10.0.tar.bz2";
locale = "nl";
arch = "linux-i686";
- sha256 = "a4a9fa6ff73d2a937d5a9d35e66006b1b6fec94daad7e54358844958e9b9531f";
+ sha256 = "ee94b20e182fa93360e6a89e6df64c23d8ccaca7394d0716d217b25262a916b7";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/nn-NO/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/nn-NO/thunderbird-78.10.0.tar.bz2";
locale = "nn-NO";
arch = "linux-i686";
- sha256 = "814d95b6c6a5c6d7faa61aa30cb87f4c44c8b1698f8908a95b85513bb2aaf515";
+ sha256 = "9710055906529edba3d62cbc7d17745497ae3dadf1c0c53408952f4c99242c7f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/pa-IN/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/pa-IN/thunderbird-78.10.0.tar.bz2";
locale = "pa-IN";
arch = "linux-i686";
- sha256 = "39bfc9533287a19083e34a1d8e7944a434fd5348f3694b3004d2e5c05da1155a";
+ sha256 = "b61f29bc72b49761beb5083a71594a750197ff049d84db5e3eacf322dd312275";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/pl/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/pl/thunderbird-78.10.0.tar.bz2";
locale = "pl";
arch = "linux-i686";
- sha256 = "1888be78e04a095e0a2576acbb3a4aa82b0060c6ca490f7a7b918efbb60e44a7";
+ sha256 = "5a885bd885772dd09eea88a7e3f2d7f766d88281bb2bc1e690832286dbee3fda";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/pt-BR/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/pt-BR/thunderbird-78.10.0.tar.bz2";
locale = "pt-BR";
arch = "linux-i686";
- sha256 = "3be3a00c44ef1be4d48a5f8c391153ad636128a030a671a646c7dee9d6327c2d";
+ sha256 = "228d268675b9781aa5341bf0c8354cb1f3cdc700c7bb608438c2e31b2239e48f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/pt-PT/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/pt-PT/thunderbird-78.10.0.tar.bz2";
locale = "pt-PT";
arch = "linux-i686";
- sha256 = "f140717de6d19f049ea3ff3ea43ba7f42a3ae6b72e9e2a2acb8b4e05c323361c";
+ sha256 = "b69cbaaed70d582319c86d46016122a2a0a3e9abfc3c6393c2fd66b8f50cf855";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/rm/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/rm/thunderbird-78.10.0.tar.bz2";
locale = "rm";
arch = "linux-i686";
- sha256 = "f19c8067bb6a584bb7c6d059cdcd069144c266982504b9421d8b91e501847cb1";
+ sha256 = "0ca4301df9ac5b234c8cf71718441c152403fbbb06cb42e2f6061fbc97ce31ca";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/ro/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/ro/thunderbird-78.10.0.tar.bz2";
locale = "ro";
arch = "linux-i686";
- sha256 = "64d36d6c811748b6bcb084c1a8573d9657accb9258fa384687ca8074ceb0a905";
+ sha256 = "ab06982a3f6134388e6bf8049a80b2d1c6b1a338a3f2744516af2b7ba1d23ae6";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/ru/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/ru/thunderbird-78.10.0.tar.bz2";
locale = "ru";
arch = "linux-i686";
- sha256 = "e6fe0da07d30ac884c04448b7d7b0f2010948ae35184b16b6f3df2f784f6fefc";
+ sha256 = "858aedefc42e15ca2179ee5e1f09c4f89dbba46e76160cf172c3fa0cb5ed019c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/si/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/si/thunderbird-78.10.0.tar.bz2";
locale = "si";
arch = "linux-i686";
- sha256 = "7ae069a1bd4020c1bedf951a9d097a95f784388d850e19514629d9b5f2a23a13";
+ sha256 = "5193e29ea9ecaa1d8e13f959f294540bc3cc3e4f161358cb057c5f44b2dba396";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/sk/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/sk/thunderbird-78.10.0.tar.bz2";
locale = "sk";
arch = "linux-i686";
- sha256 = "5c07370cfd51774dd7333e68a61f29aeb4108303f891e14471909477d5d2c165";
+ sha256 = "6d6fb547ded55b374c1556128af1406cd4708f207a90f24778a319cf0fab1e22";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/sl/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/sl/thunderbird-78.10.0.tar.bz2";
locale = "sl";
arch = "linux-i686";
- sha256 = "936e9be71d2881151de6ceda8eec86cc7342f56f3947c9fe48f59500c83cfcb2";
+ sha256 = "89e246494a9e052e06894d2fae911e4a251b5c24b5bb26c9810277f43bcc211d";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/sq/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/sq/thunderbird-78.10.0.tar.bz2";
locale = "sq";
arch = "linux-i686";
- sha256 = "309857b9ab66ec1ae407b286bd4f75a519d6afadf25cb64662dd369e831d0996";
+ sha256 = "d465f5ea13b423cde1e6a6fc4bb8b21f1920fab6a73d4ed7dca16911d4918c2b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/sr/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/sr/thunderbird-78.10.0.tar.bz2";
locale = "sr";
arch = "linux-i686";
- sha256 = "5c437425b529b838d0895261a237d42423aad24fd5fbb5bc66cc305de30bfef9";
+ sha256 = "4c9c7e2d0929e2ef65b8c33baa2ea335b8145580f7c2bd88f7c00e3cbad49327";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/sv-SE/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/sv-SE/thunderbird-78.10.0.tar.bz2";
locale = "sv-SE";
arch = "linux-i686";
- sha256 = "d88378fe88c18a7f2d60d9c612b414f5706a03fb602da352393e1745bc6b2070";
+ sha256 = "913c8d546f8aa518d8864c550749889b2fb72a86506bd407db2c0163fe6ea7e0";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/th/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/th/thunderbird-78.10.0.tar.bz2";
locale = "th";
arch = "linux-i686";
- sha256 = "197686b485f5d2573fc7fdf8104bc10d81b4100bc4875dc6162365e933d07256";
+ sha256 = "52bc9ca0b837c6209a040649dd432d459c7b73c1dcfd967c970dba3dcd0c0e8f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/tr/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/tr/thunderbird-78.10.0.tar.bz2";
locale = "tr";
arch = "linux-i686";
- sha256 = "96eddab994d3aaf57b933b8a7e1f3ca3036077c3c67c13d22c629314f05933d4";
+ sha256 = "66eea04e8fa1993bff56b8af517564f782733ba83634a8b9cc452dc5fb1d87af";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/uk/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/uk/thunderbird-78.10.0.tar.bz2";
locale = "uk";
arch = "linux-i686";
- sha256 = "a8170a0396763696a8ebded65e1761652b25371613dc28b3cdc6a312eb9da996";
+ sha256 = "91be59e83c11aac5cd46f687e008794e666b2efce1da572ede42291e9620d9a9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/uz/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/uz/thunderbird-78.10.0.tar.bz2";
locale = "uz";
arch = "linux-i686";
- sha256 = "6de38d66847d61dcd50f0822374b3a5857272b4e74f7dae308ba3c32d42228c0";
+ sha256 = "b216b0d189828622b7dce32e91f8dcf63f3763c2610ad7b30eaf05a3e92f4b3c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/vi/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/vi/thunderbird-78.10.0.tar.bz2";
locale = "vi";
arch = "linux-i686";
- sha256 = "1a5814a3a19d91eb940abf956d401b83717706b99c976376ff64c4ceb0ed12e6";
+ sha256 = "af4294bc71e9a4fca7b7ced7fd401ef692163d7044f8b1cd5fa1c25192e98120";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/zh-CN/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/zh-CN/thunderbird-78.10.0.tar.bz2";
locale = "zh-CN";
arch = "linux-i686";
- sha256 = "2d365539626c4f718b0e558f02827385749e6df507c81f411f688a6b43e1c4e5";
+ sha256 = "f10b21744041485cdd4bb0e68d9167acbe3b55c914ace91ba024c23e3b8f3531";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.1/linux-i686/zh-TW/thunderbird-78.9.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.10.0/linux-i686/zh-TW/thunderbird-78.10.0.tar.bz2";
locale = "zh-TW";
arch = "linux-i686";
- sha256 = "6003512f81b9d73363bffa38be003adc684456b75017222c2e324659d94f7735";
+ sha256 = "f3df92551c102dd113ace048eca32e4dfc797cedc53fd0ea93ddea6954915316";
}
];
}
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index 046e83e493c..0e09633ea08 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -73,13 +73,13 @@ assert waylandSupport -> gtk3Support == true;
stdenv.mkDerivation rec {
pname = "thunderbird";
- version = "78.9.1";
+ version = "78.10.0";
src = fetchurl {
url =
"mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz";
sha512 =
- "3370ngycp6syvxfnindzz06xg39vb2knfi2zshsm87aqrapk52vmfbdagv5a85vwlmd2h5gd47zcmz2mj5360mcfxlc380hrqks69zs";
+ "0nywhw1y9g78fpfgmcp6vphdidpnhfxif18qx23j7p20ayymvi2gd3smm4qfr6rlb0dkzyk1vxc2dj47zd8169wlkvr6l1kfsgvrj49";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/networking/nextcloud-client/default.nix b/pkgs/applications/networking/nextcloud-client/default.nix
index 67ddcf59972..4567f26224a 100644
--- a/pkgs/applications/networking/nextcloud-client/default.nix
+++ b/pkgs/applications/networking/nextcloud-client/default.nix
@@ -20,13 +20,13 @@
mkDerivation rec {
pname = "nextcloud-client";
- version = "3.1.3";
+ version = "3.2.0";
src = fetchFromGitHub {
owner = "nextcloud";
repo = "desktop";
rev = "v${version}";
- sha256 = "sha256-8Ql6tOvWOjAvMJA87WlT9TbpnbciBsjDxRuYlMVi/m8=";
+ sha256 = "1nklsa2lx9ayjp8rk1mycjysqqmnq47djig0wygzna5mycl3ji06";
};
patches = [
diff --git a/pkgs/applications/networking/p2p/transmission/default.nix b/pkgs/applications/networking/p2p/transmission/default.nix
index 7e8b6b671cd..363e5f7cfbe 100644
--- a/pkgs/applications/networking/p2p/transmission/default.nix
+++ b/pkgs/applications/networking/p2p/transmission/default.nix
@@ -20,6 +20,7 @@
, enableSystemd ? stdenv.isLinux
, enableDaemon ? true
, enableCli ? true
+, installLib ? false
}:
let
@@ -47,6 +48,7 @@ in stdenv.mkDerivation {
"-DENABLE_QT=${mkFlag enableQt}"
"-DENABLE_DAEMON=${mkFlag enableDaemon}"
"-DENABLE_CLI=${mkFlag enableCli}"
+ "-DINSTALL_LIB=${mkFlag installLib}"
];
nativeBuildInputs = [
diff --git a/pkgs/applications/networking/pcloud/default.nix b/pkgs/applications/networking/pcloud/default.nix
index 312734dba14..64721cd75a6 100644
--- a/pkgs/applications/networking/pcloud/default.nix
+++ b/pkgs/applications/networking/pcloud/default.nix
@@ -84,8 +84,8 @@ in stdenv.mkDerivation {
substitute \
app/pcloud.desktop \
share/applications/pcloud.desktop \
- --replace "Name=pcloud" "Name=pCloud" \
- --replace "Exec=AppRun" "Exec=$out/bin/pcloud"
+ --replace 'Name=pcloud' 'Name=pCloud' \
+ --replace 'Exec=AppRun' 'Exec=${pname}'
# Build the main executable
cat > bin/pcloud < /dev/null &&
+if uname | grep Linux > /dev/null &&
! ( test -n "$DBUS_SESSION_BUS_ADDRESS" ); then
dbus_tmp_dir="/run/user/$(id -u)/libreoffice-dbus"
if ! test -d "$dbus_tmp_dir" && test -d "/run"; then
@@ -14,6 +14,7 @@ if uname | grep Linux > /dev/null &&
fi
dbus_socket_dir="$(mktemp -d -p "$dbus_tmp_dir")"
"@dbus@"/bin/dbus-daemon --nopidfile --nofork --config-file "@dbus@"/share/dbus-1/session.conf --address "unix:path=$dbus_socket_dir/session" &> /dev/null &
+ dbus_pid=$!
export DBUS_SESSION_BUS_ADDRESS="unix:path=$dbus_socket_dir/session"
fi
@@ -27,5 +28,5 @@ done
"@libreoffice@/bin/$(basename "$0")" "$@"
code="$?"
-test -n "$dbus_socket_dir" && rm -rf "$dbus_socket_dir"
+test -n "$dbus_socket_dir" && { rm -rf "$dbus_socket_dir"; kill $dbus_pid; }
exit "$code"
diff --git a/pkgs/applications/office/portfolio/default.nix b/pkgs/applications/office/portfolio/default.nix
index 73cd5d7cd6c..17c6398f4ff 100644
--- a/pkgs/applications/office/portfolio/default.nix
+++ b/pkgs/applications/office/portfolio/default.nix
@@ -24,11 +24,11 @@ let
in
stdenv.mkDerivation rec {
pname = "PortfolioPerformance";
- version = "0.51.2";
+ version = "0.52.0";
src = fetchurl {
url = "https://github.com/buchen/portfolio/releases/download/${version}/PortfolioPerformance-${version}-linux.gtk.x86_64.tar.gz";
- sha256 = "sha256-5wBzGj4DkTOqtN7X8/EBDoiBtbYB6vGJJ5IkuME7a9A=";
+ sha256 = "1pvjckh7z803piqyzrvk54jd43f2vcyx20zjcgmq1va8jc3q69k1";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/office/timeular/default.nix b/pkgs/applications/office/timeular/default.nix
index 5bbfca23d6d..948918e5491 100644
--- a/pkgs/applications/office/timeular/default.nix
+++ b/pkgs/applications/office/timeular/default.nix
@@ -26,7 +26,8 @@ in appimageTools.wrapType2 rec {
mv $out/bin/{${name},${pname}}
install -m 444 -D ${appimageContents}/timeular.desktop $out/share/applications/timeular.desktop
install -m 444 -D ${appimageContents}/timeular.png $out/share/icons/hicolor/512x512/apps/timeular.png
- substituteInPlace $out/share/applications/timeular.desktop --replace 'Exec=AppRun' 'Exec=${pname}'
+ substituteInPlace $out/share/applications/timeular.desktop \
+ --replace 'Exec=AppRun' 'Exec=${pname}'
'';
meta = with lib; {
diff --git a/pkgs/applications/office/todoman/default.nix b/pkgs/applications/office/todoman/default.nix
index 4011879ddb8..5894c6c3e14 100644
--- a/pkgs/applications/office/todoman/default.nix
+++ b/pkgs/applications/office/todoman/default.nix
@@ -6,7 +6,7 @@
}:
let
- inherit (python3.pkgs) buildPythonApplication fetchPypi;
+ inherit (python3.pkgs) buildPythonApplication fetchPypi setuptools-scm;
in
buildPythonApplication rec {
pname = "todoman";
@@ -17,8 +17,11 @@ buildPythonApplication rec {
sha256 = "e7e5cab13ecce0562b1f13f46ab8cbc079caed4b462f2371929f8a4abff2bcbe";
};
+ SETUPTOOLS_SCM_PRETEND_VERSION = version;
+
nativeBuildInputs = [
installShellFiles
+ setuptools-scm
];
propagatedBuildInputs = with python3.pkgs; [
atomicwrites
diff --git a/pkgs/applications/office/trilium/default.nix b/pkgs/applications/office/trilium/default.nix
index 32c9dc79d67..dab4367b3ae 100644
--- a/pkgs/applications/office/trilium/default.nix
+++ b/pkgs/applications/office/trilium/default.nix
@@ -19,16 +19,16 @@ let
maintainers = with maintainers; [ fliegendewurst ];
};
- version = "0.46.7";
+ version = "0.46.9";
desktopSource = {
url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-${version}.tar.xz";
- sha256 = "0saqj32jcb9ga418bpdxy93hf1z8nmwzf76rfgnnac7286ciyinr";
+ sha256 = "1qpk5z8w4wbkxs1lpnz3g8w30zygj4wxxlwj6gp1pip09xgiksm9";
};
serverSource = {
url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-server-${version}.tar.xz";
- sha256 = "0b9bbm1iyaa5wf758085m6kfbq4li1iimj11ryf9xv9fzrbc4gvs";
+ sha256 = "1n8g7l6hiw9bhzylvzlfcn2pk4i8pqkqp9lj3lcxwwqb8va52phg";
};
in {
diff --git a/pkgs/applications/radio/rtl-sdr/default.nix b/pkgs/applications/radio/rtl-sdr/default.nix
index 2df7c3829c8..ff06eb4c044 100644
--- a/pkgs/applications/radio/rtl-sdr/default.nix
+++ b/pkgs/applications/radio/rtl-sdr/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Turns your Realtek RTL2832 based DVB dongle into a SDR receiver";
- homepage = "http://github.com/librtlsdr/librtlsdr";
+ homepage = "https://github.com/librtlsdr/librtlsdr";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ bjornfor ];
platforms = platforms.linux ++ platforms.darwin;
diff --git a/pkgs/applications/science/biology/octopus/default.nix b/pkgs/applications/science/biology/octopus/default.nix
index 0ef48ec6413..b61a0764f2c 100644
--- a/pkgs/applications/science/biology/octopus/default.nix
+++ b/pkgs/applications/science/biology/octopus/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "octopus";
- version = "0.7.1";
+ version = "0.7.3";
src = fetchFromGitHub {
owner = "luntergroup";
repo = "octopus";
rev = "v${version}";
- sha256 = "sha256-TZ57uKTZ87FWpLNGPY8kbML1EDM8fnEFbXR+Z3dmiao=";
+ sha256 = "sha256-sPOBZ0YrEdjMNVye/xwqwA5IpsLy2jWN3sm/ce1fLg4=";
};
patches = [
diff --git a/pkgs/applications/science/electronics/kicad/default.nix b/pkgs/applications/science/electronics/kicad/default.nix
index b91b5ad14a9..76048733a6a 100644
--- a/pkgs/applications/science/electronics/kicad/default.nix
+++ b/pkgs/applications/science/electronics/kicad/default.nix
@@ -216,6 +216,8 @@ stdenv.mkDerivation rec {
in
(concatStringsSep "\n"
(flatten [
+ "runHook preInstall"
+
(optionalString (withScripting) "buildPythonPath \"${base} $pythonPath\" \n")
# wrap each of the directly usable tools
@@ -227,10 +229,19 @@ stdenv.mkDerivation rec {
# link in the CLI utils
(map (util: "ln -s ${base}/bin/${util} $out/bin/${util}") utils)
+
+ "runHook postInstall"
])
)
;
+ postInstall = ''
+ mkdir -p $out/share
+ ln -s ${base}/share/applications $out/share/applications
+ ln -s ${base}/share/icons $out/share/icons
+ ln -s ${base}/share/mime $out/share/mime
+ '';
+
# can't run this for each pname
# stable and unstable are in the same versions.nix
# and kicad-small reuses stable
@@ -248,7 +259,7 @@ stdenv.mkDerivation rec {
KiCad is an open source software suite for Electronic Design Automation.
The Programs handle Schematic Capture, and PCB Layout with Gerber output.
'';
- license = lib.licenses.agpl3;
+ license = lib.licenses.gpl3Plus;
# berce seems inactive...
maintainers = with lib.maintainers; [ evils kiwi berce ];
# kicad is cross platform
diff --git a/pkgs/applications/science/logic/beluga/default.nix b/pkgs/applications/science/logic/beluga/default.nix
index 44478a032b3..66cfd306128 100644
--- a/pkgs/applications/science/logic/beluga/default.nix
+++ b/pkgs/applications/science/logic/beluga/default.nix
@@ -1,14 +1,14 @@
{ lib, fetchFromGitHub, ocamlPackages, rsync }:
-ocamlPackages.buildDunePackage {
+ocamlPackages.buildDunePackage rec {
pname = "beluga";
- version = "unstable-2020-03-11";
+ version = "1.0";
src = fetchFromGitHub {
owner = "Beluga-lang";
repo = "Beluga";
- rev = "6133b2f572219333f304bb4f77c177592324c55b";
- sha256 = "0sy6mi50z3mvs5z7dx38piydapk89all81rh038x3559b5fsk68q";
+ rev = "v${version}";
+ sha256 = "1ziqjfv8jwidl8lj2mid2shhgqhv31dfh5wad2zxjpvf6038ahsw";
};
useDune2 = true;
diff --git a/pkgs/applications/science/logic/coq/default.nix b/pkgs/applications/science/logic/coq/default.nix
index 560e8dd733a..20a17b11221 100644
--- a/pkgs/applications/science/logic/coq/default.nix
+++ b/pkgs/applications/science/logic/coq/default.nix
@@ -43,6 +43,7 @@ let
"8.12.2".sha256 = "18gscfm039pqhq4msq01nraig5dm9ab98bjca94zldf8jvdv0x2n";
"8.13.0".sha256 = "0sjbqmz6qcvnz0hv87xha80qbhvmmyd675wyc5z4rgr34j2l1ymd";
"8.13.1".sha256 = "0xx2ns84mlip9bg2mkahy3pmc5zfcgrjxsviq9yijbzy1r95wf0n";
+ "8.13.2".sha256 = "1884vbmwmqwn9ngibax6dhnqh4cc02l0s2ajc6jb1xgr0i60whjk";
};
releaseRev = v: "V${v}";
fetched = import ../../../../build-support/coq/meta-fetch/default.nix
diff --git a/pkgs/applications/science/logic/potassco/clingo.nix b/pkgs/applications/science/logic/potassco/clingo.nix
index f473c4f5366..091b098fa3f 100644
--- a/pkgs/applications/science/logic/potassco/clingo.nix
+++ b/pkgs/applications/science/logic/potassco/clingo.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "clingo";
- version = "5.4.1";
+ version = "5.5.0";
src = fetchzip {
url = "https://github.com/potassco/clingo/archive/v${version}.tar.gz";
- sha256 = "1f0q5f71s696ywxcjlfz7z134m1h7i39j9sfdv8hlw2w3g5nppc3";
+ sha256 = "sha256-6xKtNi5IprjaFNadfk8kKjKzuPRanUjycLWCytnk0mU=";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/applications/science/math/calc/default.nix b/pkgs/applications/science/math/calc/default.nix
index c5a3fd606c0..f209e2de8c3 100644
--- a/pkgs/applications/science/math/calc/default.nix
+++ b/pkgs/applications/science/math/calc/default.nix
@@ -3,14 +3,14 @@
stdenv.mkDerivation rec {
pname = "calc";
- version = "2.12.9.1";
+ version = "2.13.0.1";
src = fetchurl {
urls = [
"https://github.com/lcn2/calc/releases/download/${version}/${pname}-${version}.tar.bz2"
"http://www.isthe.com/chongo/src/calc/${pname}-${version}.tar.bz2"
];
- sha256 = "sha256-B3ko+RNT+LYSJG1P5cujgRMc1OJhDPqm1ONrMh+7fI4=";
+ sha256 = "sha256-auU49XeFxXAacBEszwB6tVU6vTMq4t6q2vVk9AHHNK0=";
};
postPatch = ''
diff --git a/pkgs/applications/science/math/gmsh/default.nix b/pkgs/applications/science/math/gmsh/default.nix
index fabb3b08c4d..c0d91a28445 100644
--- a/pkgs/applications/science/math/gmsh/default.nix
+++ b/pkgs/applications/science/math/gmsh/default.nix
@@ -5,11 +5,11 @@ assert (!blas.isILP64) && (!lapack.isILP64);
stdenv.mkDerivation rec {
pname = "gmsh";
- version = "4.8.0";
+ version = "4.8.1";
src = fetchurl {
url = "http://gmsh.info/src/gmsh-${version}-source.tgz";
- sha256 = "sha256-JYd4PEsClj+divtxfJlUyu+kY+ouChLhZZMH5qDX6ms=";
+ sha256 = "sha256-1QOPXyWuhZc1NvsFzIhv6xvX1n4mBanYeJvMJSj6izU=";
};
buildInputs = [ blas lapack gmm fltk libjpeg zlib libGLU libGL
diff --git a/pkgs/applications/terminal-emulators/foot/default.nix b/pkgs/applications/terminal-emulators/foot/default.nix
index 08ef2f13734..23531908a60 100644
--- a/pkgs/applications/terminal-emulators/foot/default.nix
+++ b/pkgs/applications/terminal-emulators/foot/default.nix
@@ -25,7 +25,7 @@
}:
let
- version = "1.7.1";
+ version = "1.7.2";
# build stimuli file for PGO build and the script to generate it
# independently of the foot's build, so we can cache the result
@@ -93,7 +93,7 @@ stdenv.mkDerivation rec {
src = fetchzip {
url = "https://codeberg.org/dnkl/${pname}/archive/${version}.tar.gz";
- sha256 = "1x6nyhlp0zynnbdjx87c4ybfx6fyr0r53vypkfima56dwbfh98ka";
+ sha256 = "0iabj9c0dj1r0m89i5gk2jdmwj4wfsai8na54x2w4fq406q6g9nh";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/version-management/git-and-tools/bit/default.nix b/pkgs/applications/version-management/git-and-tools/bit/default.nix
index 1c88edfd901..cce37df357b 100644
--- a/pkgs/applications/version-management/git-and-tools/bit/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/bit/default.nix
@@ -6,13 +6,13 @@
buildGoModule rec {
pname = "bit";
- version = "1.0.6";
+ version = "1.1.1";
src = fetchFromGitHub {
owner = "chriswalz";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-juQAFVqs0d4EtoX24EyrlKd2qRRseP+jKfM0ymkD39E=";
+ sha256 = "sha256-85GEx9y8r9Fjgfcwh1Bi8WDqBm6KF7uidutlF77my60=";
};
vendorSha256 = "sha256-3Y/B14xX5jaoL44rq9+Nn4niGViLPPXBa8WcJgTvYTA=";
diff --git a/pkgs/applications/version-management/git-and-tools/gh/default.nix b/pkgs/applications/version-management/git-and-tools/gh/default.nix
index f7ea37ff408..7dfca2cd80a 100644
--- a/pkgs/applications/version-management/git-and-tools/gh/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/gh/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "gh";
- version = "1.9.1";
+ version = "1.9.2";
src = fetchFromGitHub {
owner = "cli";
repo = "cli";
rev = "v${version}";
- sha256 = "1nrbz049nizrrfxdpws05gj0bqk47l4mrl4wcvfb6nwispc74ib0";
+ sha256 = "0lx6sx3zkjq9855va1vxbd5g47viqkrchk5d2rb6xj7zywwm4mgb";
};
- vendorSha256 = "0j2jy7n7hca5ybwwgh7cvm77j96ngaq1a1l5bl70vjpd8hz2qapc";
+ vendorSha256 = "1zmyd566xcksgqm0f7mq0rkfnxk0fmf39k13fcp9jy30c1y9681v";
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/applications/version-management/git-and-tools/git-interactive-rebase-tool/default.nix b/pkgs/applications/version-management/git-and-tools/git-interactive-rebase-tool/default.nix
index f28d49702bc..be6e96fc8ff 100644
--- a/pkgs/applications/version-management/git-and-tools/git-interactive-rebase-tool/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git-interactive-rebase-tool/default.nix
@@ -2,21 +2,28 @@
rustPlatform.buildRustPackage rec {
pname = "git-interactive-rebase-tool";
- version = "2.0.0";
+ version = "2.1.0";
src = fetchFromGitHub {
owner = "MitMaro";
repo = pname;
rev = version;
- sha256 = "117zwxyq2vc33nbnfpjbdr5vc2l5ymf6ln1dm5551ha3y3gdq3bf";
+ sha256 = "sha256-DYl/GUbeNtKmXoR3gq8mK8EfsZNVNlrdngAwfzG+epw=";
};
- cargoSha256 = "051llwk9swq03xdqwyj0hlyv2ywq2f1cnks95nygyy393q7v930x";
+ cargoSha256 = "sha256-1joMWPfn0s+pLsO6NHMT6AoXZ33R8MY2AWSrROY2mw8=";
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
- # external_editor::tests::* tests fail
- doCheck = false;
+ checkFlags = [
+ "--skip=external_editor::tests::edit_success"
+ "--skip=external_editor::tests::editor_non_zero_exit"
+ "--skip=external_editor::tests::empty_edit_abort_rebase"
+ "--skip=external_editor::tests::empty_edit_error"
+ "--skip=external_editor::tests::empty_edit_noop"
+ "--skip=external_editor::tests::empty_edit_re_edit_rebase_file"
+ "--skip=external_editor::tests::empty_edit_undo_and_edit"
+ ];
meta = with lib; {
homepage = "https://github.com/MitMaro/git-interactive-rebase-tool";
diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix
index d6cad454026..1f604c44d78 100644
--- a/pkgs/applications/version-management/subversion/default.nix
+++ b/pkgs/applications/version-management/subversion/default.nix
@@ -17,7 +17,7 @@ assert javahlBindings -> jdk != null && perl != null;
let
- common = { version, sha256, extraBuildInputs ? [ ] }: stdenv.mkDerivation (rec {
+ common = { version, sha256 }: stdenv.mkDerivation (rec {
inherit version;
pname = "subversion";
@@ -29,8 +29,7 @@ let
# Can't do separate $lib and $bin, as libs reference bins
outputs = [ "out" "dev" "man" ];
- buildInputs = [ zlib apr aprutil sqlite openssl ]
- ++ extraBuildInputs
+ buildInputs = [ zlib apr aprutil sqlite openssl lz4 utf8proc ]
++ lib.optional httpSupport serf
++ lib.optional pythonBindings python
++ lib.optional perlBindings perl
@@ -112,14 +111,12 @@ let
in {
subversion_1_10 = common {
- version = "1.10.6";
- sha256 = "19zc215mhpnm92mlyl5jbv57r5zqp6cavr3s2g9yglp6j4kfgj0q";
- extraBuildInputs = [ lz4 utf8proc ];
+ version = "1.10.7";
+ sha256 = "1nhrd8z6c94sc0ryrzpyd98qdn5a5g3x0xv1kdb9da4drrk8y2ww";
};
subversion = common {
version = "1.12.2";
sha256 = "0wgpw3kzsiawzqk4y0xgh1z93kllxydgv4lsviim45y5wk4bbl1v";
- extraBuildInputs = [ lz4 utf8proc ];
};
}
diff --git a/pkgs/applications/video/giph/default.nix b/pkgs/applications/video/giph/default.nix
new file mode 100644
index 00000000000..431f267e4c8
--- /dev/null
+++ b/pkgs/applications/video/giph/default.nix
@@ -0,0 +1,43 @@
+{ stdenvNoCC
+, lib
+, fetchFromGitHub
+, ffmpeg
+, xdotool
+, slop
+, libnotify
+, procps
+, makeWrapper
+}:
+
+stdenvNoCC.mkDerivation rec {
+ pname = "giph";
+ version = "1.1.1";
+
+ src = fetchFromGitHub {
+ owner = "phisch";
+ repo = pname;
+ rev = version;
+ sha256 = "19l46m1f32b3bagzrhaqsfnl5n3wbrmg3sdy6fdss4y1yf6nqayk";
+ };
+
+ dontConfigure = true;
+
+ dontBuild = true;
+
+ installFlags = [ "PREFIX=${placeholder "out"}" ];
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ postInstall = ''
+ wrapProgram $out/bin/giph \
+ --prefix PATH : ${lib.makeBinPath [ ffmpeg xdotool libnotify slop procps ]}
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/phisch/giph";
+ description = "Simple gif recorder";
+ license = licenses.mit;
+ maintainers = [ maintainers.legendofmiracles ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/video/haruna/default.nix b/pkgs/applications/video/haruna/default.nix
index 661c72b5605..36c1c411591 100644
--- a/pkgs/applications/video/haruna/default.nix
+++ b/pkgs/applications/video/haruna/default.nix
@@ -26,13 +26,13 @@
mkDerivation rec {
pname = "haruna";
- version = "0.6.1";
+ version = "0.6.2";
src = fetchFromGitHub {
owner = "g-fb";
repo = "haruna";
rev = version;
- sha256 = "sha256-8MauKmvQUwzq4Ssmm6g7/y6ADkye+eg/zyR3v/Wu848=";
+ sha256 = "sha256-YsC0ZdLwHCO9izDIk2dTMr0U/nb60MHSxKURV8Xltss=";
};
buildInputs = [
diff --git a/pkgs/applications/video/jellyfin-media-player/default.nix b/pkgs/applications/video/jellyfin-media-player/default.nix
index bac7619c33a..10a3a8cc174 100644
--- a/pkgs/applications/video/jellyfin-media-player/default.nix
+++ b/pkgs/applications/video/jellyfin-media-player/default.nix
@@ -26,23 +26,25 @@
mkDerivation rec {
pname = "jellyfin-media-player";
- version = "1.3.1";
+ version = "1.4.1";
src = fetchFromGitHub {
- owner = "iwalton3";
+ owner = "jellyfin";
repo = "jellyfin-media-player";
rev = "v${version}";
- sha256 = "sha256-rXW6vC0Ow8xFblXjGYaDExAZM8RgqLkDHiX7R8vAWjI=";
+ sha256 = "sha256-500Qlxpqkf+9D/jrzkrYkkFwxs0soLG/I5mgFV1UOc8=";
};
jmpDist = fetchzip {
- url = "https://github.com/iwalton3/jellyfin-web-jmp/releases/download/jwc-10.7.2/dist.zip";
- sha256 = "sha256-EpNAN4nzINiwMrmg0e4x3uJRTy5ovx4ZkmP83Kbn4S0=";
+ url = "https://github.com/iwalton3/jellyfin-web-jmp/releases/download/jwc-10.7.2-2/dist.zip";
+ sha256 = "sha256-9oxOcSCV1Gm8WLpwVLanyUlhPx5PWUrkkWvKmwND94g=";
};
patches = [
# the webclient-files are not copied in the regular build script. Copy them just like the linux build
./fix-osx-resources.patch
+ # disable update notifications since the end user can't simply download the release artifacts to update
+ ./disable-update-notifications.patch
];
buildInputs = [
@@ -99,9 +101,9 @@ mkDerivation rec {
'';
meta = with lib; {
- homepage = "https://github.com/iwalton3/jellyfin-media-player";
+ homepage = "https://github.com/jellyfin/jellyfin-media-player";
description = "Jellyfin Desktop Client based on Plex Media Player";
- license = with licenses; [ gpl2Plus mit ];
+ license = with licenses; [ gpl2Only mit ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
maintainers = with maintainers; [ jojosch ];
};
diff --git a/pkgs/applications/video/jellyfin-media-player/disable-update-notifications.patch b/pkgs/applications/video/jellyfin-media-player/disable-update-notifications.patch
new file mode 100644
index 00000000000..dd56d71f907
--- /dev/null
+++ b/pkgs/applications/video/jellyfin-media-player/disable-update-notifications.patch
@@ -0,0 +1,13 @@
+diff --git a/resources/settings/settings_description.json b/resources/settings/settings_description.json
+index 20fff81..9979de5 100644
+--- a/resources/settings/settings_description.json
++++ b/resources/settings/settings_description.json
+@@ -118,7 +118,7 @@
+ },
+ {
+ "value": "checkForUpdates",
+- "default": true
++ "default": false
+ },
+ {
+ "value": "enableInputRepeat",
diff --git a/pkgs/applications/video/jellyfin-mpv-shim/default.nix b/pkgs/applications/video/jellyfin-mpv-shim/default.nix
index 346841eabf1..651234be8e4 100644
--- a/pkgs/applications/video/jellyfin-mpv-shim/default.nix
+++ b/pkgs/applications/video/jellyfin-mpv-shim/default.nix
@@ -1,37 +1,29 @@
{ lib
, buildPythonApplication
-, copyDesktopItems
, fetchPypi
-, makeDesktopItem
-, flask
, jellyfin-apiclient-python
, jinja2
, mpv
, pillow
-, pydantic
-, pyqtwebengine
, pystray
, python-mpv-jsonipc
, pywebview
-, qt5
, tkinter
-, werkzeug
}:
buildPythonApplication rec {
pname = "jellyfin-mpv-shim";
- version = "1.10.4";
+ version = "2.0.1";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-QMyb69S8Ln4X0oUuLpL6vtgxJwq8f+Q4ReNckrN4E+E=";
+ sha256 = "sha256-NXDLqQzCUfDPoKNPrmIn5FMedMKYxtDhkawRE2lg/vI=";
};
propagatedBuildInputs = [
jellyfin-apiclient-python
mpv
pillow
- pydantic
python-mpv-jsonipc
# gui dependencies
@@ -41,28 +33,6 @@ buildPythonApplication rec {
# display_mirror dependencies
jinja2
pywebview
-
- # desktop dependencies
- flask
- pyqtwebengine
- werkzeug
- ];
-
- nativeBuildInputs = [
- copyDesktopItems
- qt5.wrapQtAppsHook
- ];
-
- desktopItems = [
- (makeDesktopItem {
- name = "Jellyfin Desktop";
- exec = "jellyfin-desktop";
- icon = "jellyfin-desktop";
- desktopName = "jellyfin-desktop";
- comment = "MPV-based desktop and cast client for Jellyfin";
- genericName = "MPV-based desktop and cast client for Jellyfin";
- categories = "Video;AudioVideo;TV;Player";
- })
];
# override $HOME directory:
@@ -82,24 +52,33 @@ buildPythonApplication rec {
--replace "notify_updates: bool = True" "notify_updates: bool = False"
'';
- postInstall = ''
- mkdir -p $out/share/pixmaps
- cp jellyfin_mpv_shim/integration/jellyfin-256.png $out/share/pixmaps/jellyfin-desktop.png
- '';
-
- postFixup = ''
- wrapQtApp $out/bin/jellyfin-desktop
- wrapQtApp $out/bin/jellyfin-mpv-desktop
- '';
-
# no tests
doCheck = false;
pythonImportsCheck = [ "jellyfin_mpv_shim" ];
meta = with lib; {
- homepage = "https://github.com/jellyfin/jellyfin-desktop";
+ homepage = "https://github.com/jellyfin/jellyfin-mpv-shim";
description = "Allows casting of videos to MPV via the jellyfin mobile and web app";
- license = licenses.gpl3;
+ longDescription = ''
+ Jellyfin MPV Shim is a client for the Jellyfin media server which plays media in the
+ MPV media player. The application runs in the background and opens MPV only
+ when media is cast to the player. The player supports most file formats, allowing you
+ to prevent needless transcoding of your media files on the server. The player also has
+ advanced features, such as bulk subtitle updates and launching commands on events.
+ '';
+ license = with licenses; [
+ # jellyfin-mpv-shim
+ gpl3Only
+ mit
+
+ # shader-pack licenses (github:iwalton3/default-shader-pack)
+ # KrigBilateral, SSimDownscaler, NNEDI3
+ gpl3Plus
+ # Anime4K, FSRCNNX
+ mit
+ # Static Grain
+ unlicense
+ ];
maintainers = with maintainers; [ jojosch ];
};
}
diff --git a/pkgs/applications/video/kodi-packages/inputstream-adaptive/default.nix b/pkgs/applications/video/kodi-packages/inputstream-adaptive/default.nix
index 00e58ece075..b2a9fc33255 100644
--- a/pkgs/applications/video/kodi-packages/inputstream-adaptive/default.nix
+++ b/pkgs/applications/video/kodi-packages/inputstream-adaptive/default.nix
@@ -1,16 +1,18 @@
-{ stdenv, lib, rel, addonDir, buildKodiBinaryAddon, fetchFromGitHub, expat, glib, nspr, nss }:
+{ stdenv, lib, rel, addonDir, buildKodiBinaryAddon, fetchFromGitHub, expat, glib, nspr, nss, gtest }:
buildKodiBinaryAddon rec {
pname = "inputstream-adaptive";
namespace = "inputstream.adaptive";
- version = "2.6.8";
+ version = "2.6.13";
src = fetchFromGitHub {
owner = "xbmc";
repo = "inputstream.adaptive";
rev = "${version}-${rel}";
- sha256 = "0m2d5r0f82qv4kqmq5yxzpi1awkjir2b2s2mfwkjn8p55r7gzp7c";
+ sha256 = "1xvinmwyx7mai84i8c394dqw86zb6ib9wnxjmv7zpky6x64lvv10";
};
+ extraNativeBuildInputs = [ gtest ];
+
extraBuildInputs = [ expat ];
extraRuntimeDependencies = [ glib nspr nss stdenv.cc.cc.lib ];
diff --git a/pkgs/applications/video/kodi-packages/inputstream-ffmpegdirect/default.nix b/pkgs/applications/video/kodi-packages/inputstream-ffmpegdirect/default.nix
index 32b55d5e0cb..f6ab6d2e95a 100644
--- a/pkgs/applications/video/kodi-packages/inputstream-ffmpegdirect/default.nix
+++ b/pkgs/applications/video/kodi-packages/inputstream-ffmpegdirect/default.nix
@@ -3,13 +3,13 @@
buildKodiBinaryAddon rec {
pname = "inputstream-ffmpegdirect";
namespace = "inputstream.ffmpegdirect";
- version = "1.19.4";
+ version = "1.21.1";
src = fetchFromGitHub {
owner = "xbmc";
repo = "inputstream.ffmpegdirect";
rev = "${version}-${rel}";
- sha256 = "1ppvs6zybbi73zq1qh8klyhj99byh61c6nijmb1gd5yhg7cywf72";
+ sha256 = "1x5gj7iq74ysyfrzvp135m0pjz47zamcgw1v1334xd7xcx5q178p";
};
extraBuildInputs = [ bzip2 zlib kodi.ffmpeg ];
diff --git a/pkgs/applications/video/kodi-packages/pvr-hts/default.nix b/pkgs/applications/video/kodi-packages/pvr-hts/default.nix
index 32b4a035bfe..5e7f39d911f 100644
--- a/pkgs/applications/video/kodi-packages/pvr-hts/default.nix
+++ b/pkgs/applications/video/kodi-packages/pvr-hts/default.nix
@@ -2,13 +2,13 @@
buildKodiBinaryAddon rec {
pname = "pvr-hts";
namespace = "pvr.hts";
- version = "8.2.4";
+ version = "8.3.0";
src = fetchFromGitHub {
owner = "kodi-pvr";
repo = "pvr.hts";
rev = "${version}-${rel}";
- sha256 = "sha256-05RSB4ZwwZSzY2b1/MRw6zzl/HhMbeVhCVCOj3gSTWA=";
+ sha256 = "1lqd0kkfv06n8ax8ywsi1rx9glvx3pwi9yj9yb3fdf39xmd3hz7y";
};
meta = with lib; {
diff --git a/pkgs/applications/video/kodi-packages/pvr-iptvsimple/default.nix b/pkgs/applications/video/kodi-packages/pvr-iptvsimple/default.nix
index 7fe0ed08e8f..74c5973da54 100644
--- a/pkgs/applications/video/kodi-packages/pvr-iptvsimple/default.nix
+++ b/pkgs/applications/video/kodi-packages/pvr-iptvsimple/default.nix
@@ -1,21 +1,22 @@
{ lib, rel, buildKodiBinaryAddon, fetchFromGitHub
-, pugixml, zlib
+, xz, pugixml, zlib
, inputstream-adaptive, inputstream-ffmpegdirect, inputstream-rtmp
}:
buildKodiBinaryAddon rec {
pname = "pvr-iptvsimple";
namespace = "pvr.iptvsimple";
- version = "7.5.1";
+ version = "7.6.1";
src = fetchFromGitHub {
owner = "kodi-pvr";
repo = "pvr.iptvsimple";
rev = "${version}-${rel}";
- sha256 = "1q470v9nipnrca0rbwvqlbxw9ccbl9s1k46hwwrh94vhyp5rjlib";
+ sha256 = "1g1ildl2l6nl63qbfhijcbmvr6z84nqhjsy2lgx3dy25cmcqzir9";
};
extraBuildInputs = [
+ xz
pugixml
zlib
];
diff --git a/pkgs/applications/video/kodi-packages/youtube/default.nix b/pkgs/applications/video/kodi-packages/youtube/default.nix
new file mode 100644
index 00000000000..c108aa36f92
--- /dev/null
+++ b/pkgs/applications/video/kodi-packages/youtube/default.nix
@@ -0,0 +1,29 @@
+{ lib, buildKodiAddon, fetchzip, addonUpdateScript, six, requests, inputstreamhelper }:
+
+buildKodiAddon rec {
+ pname = "youtube";
+ namespace = "plugin.video.youtube";
+ version = "6.8.10+matrix.1";
+
+ src = fetchzip {
+ url = "https://mirrors.kodi.tv/addons/matrix/${namespace}/${namespace}-${version}.zip";
+ sha256 = "18z9zh6yqihnmfwd6cc4kpy2frzbarvhg8qpyc3w851ad053q7v0";
+ };
+
+ propagatedBuildInputs = [
+ six
+ requests
+ inputstreamhelper
+ ];
+
+ passthru.updateScript = addonUpdateScript {
+ attrPath = "kodi.packages.youtube";
+ };
+
+ meta = with lib; {
+ homepage = "https://github.com/anxdpanic/plugin.video.youtube";
+ description = "YouTube is one of the biggest video-sharing websites of the world";
+ license = licenses.gpl2Only;
+ maintainers = teams.kodi.members;
+ };
+}
diff --git a/pkgs/applications/video/kodi/build-kodi-binary-addon.nix b/pkgs/applications/video/kodi/build-kodi-binary-addon.nix
index e0ca5d1cf6e..72d6533f38d 100644
--- a/pkgs/applications/video/kodi/build-kodi-binary-addon.nix
+++ b/pkgs/applications/video/kodi/build-kodi-binary-addon.nix
@@ -2,6 +2,7 @@
{ name ? "${attrs.pname}-${attrs.version}"
, namespace
, version
+, extraNativeBuildInputs ? []
, extraBuildInputs ? []
, extraRuntimeDependencies ? []
, extraInstallPhase ? "", ... } @ attrs:
@@ -10,7 +11,7 @@ toKodiAddon (stdenv.mkDerivation ({
dontStrip = true;
- nativeBuildInputs = [ cmake ];
+ nativeBuildInputs = [ cmake ] ++ extraNativeBuildInputs;
buildInputs = [ kodi kodi-platform libcec_platform ] ++ extraBuildInputs;
inherit extraRuntimeDependencies;
diff --git a/pkgs/applications/video/kodi/packages.nix b/pkgs/applications/video/kodi/packages.nix
deleted file mode 100644
index e6ce955e055..00000000000
--- a/pkgs/applications/video/kodi/packages.nix
+++ /dev/null
@@ -1,560 +0,0 @@
-{ lib, stdenv, callPackage, fetchFromGitHub
-, cmake, kodi, libcec_platform, tinyxml, pugixml
-, steam, udev, libusb1, jsoncpp, libhdhomerun, zlib
-, python3Packages, expat, glib, nspr, nss, openssl
-, libssh, libarchive, xz, bzip2, lz4, lzo }:
-
-with lib;
-
-let self = rec {
-
- addonDir = "/share/kodi/addons";
- rel = "Matrix";
-
- inherit kodi;
-
- # Convert derivation to a kodi module. Stolen from ../../../top-level/python-packages.nix
- toKodiAddon = drv: drv.overrideAttrs(oldAttrs: {
- # Use passthru in order to prevent rebuilds when possible.
- passthru = (oldAttrs.passthru or {})// {
- kodiAddonFor = kodi;
- requiredKodiAddons = requiredKodiAddons drv.propagatedBuildInputs;
- };
- });
-
- # Check whether a derivation provides a Kodi addon.
- hasKodiAddon = drv: drv ? kodiAddonFor && drv.kodiAddonFor == kodi;
-
- # Get list of required Kodi addons given a list of derivations.
- requiredKodiAddons = drvs: let
- modules = filter hasKodiAddon drvs;
- in unique (modules ++ concatLists (catAttrs "requiredKodiAddons" modules));
-
- kodi-platform = stdenv.mkDerivation rec {
- project = "kodi-platform";
- version = "17.1";
- name = "${project}-${version}";
-
- src = fetchFromGitHub {
- owner = "xbmc";
- repo = project;
- rev = "c8188d82678fec6b784597db69a68e74ff4986b5";
- sha256 = "1r3gs3c6zczmm66qcxh9mr306clwb3p7ykzb70r3jv5jqggiz199";
- };
-
- nativeBuildInputs = [ cmake ];
- buildInputs = [ kodi libcec_platform tinyxml ];
- };
-
- buildKodiAddon =
- { name ? "${attrs.pname}-${attrs.version}"
- , namespace
- , sourceDir ? ""
- , ... } @ attrs:
- toKodiAddon (stdenv.mkDerivation ({
- name = "kodi-" + name;
-
- dontStrip = true;
-
- extraRuntimeDependencies = [ ];
-
- installPhase = ''
- cd $src/$sourceDir
- d=$out${addonDir}/${namespace}
- mkdir -p $d
- sauce="."
- [ -d ${namespace} ] && sauce=${namespace}
- cp -R "$sauce/"* $d
- '';
- } // attrs));
-
- buildKodiBinaryAddon =
- { name ? "${attrs.pname}-${attrs.version}"
- , namespace
- , version
- , extraBuildInputs ? []
- , extraRuntimeDependencies ? []
- , extraInstallPhase ? "", ... } @ attrs:
- toKodiAddon (stdenv.mkDerivation ({
- name = "kodi-" + name;
-
- dontStrip = true;
-
- nativeBuildInputs = [ cmake ];
- buildInputs = [ kodi kodi-platform libcec_platform ] ++ extraBuildInputs;
-
- inherit extraRuntimeDependencies;
-
- # disables check ensuring install prefix is that of kodi
- cmakeFlags = [
- "-DOVERRIDE_PATHS=1"
- ];
-
- # kodi checks for addon .so libs existance in the addon folder (share/...)
- # and the non-wrapped kodi lib/... folder before even trying to dlopen
- # them. Symlinking .so, as setting LD_LIBRARY_PATH is of no use
- installPhase = let n = namespace; in ''
- make install
- ln -s $out/lib/addons/${n}/${n}.so.${version} $out${addonDir}/${n}/${n}.so.${version}
- ${extraInstallPhase}
- '';
- } // attrs));
-
- advanced-launcher = buildKodiAddon rec {
-
- pname = "advanced-launcher";
- namespace = "plugin.program.advanced.launcher";
- version = "2.5.8";
-
- src = fetchFromGitHub {
- owner = "edwtjo";
- repo = pname;
- rev = version;
- sha256 = "142vvgs37asq5m54xqhjzqvgmb0xlirvm0kz6lxaqynp0vvgrkx2";
- };
-
- meta = {
- homepage = "https://forum.kodi.tv/showthread.php?tid=85724";
- description = "A program launcher for Kodi";
- longDescription = ''
- Advanced Launcher allows you to start any Linux, Windows and
- macOS external applications (with command line support or not)
- directly from the Kodi GUI. Advanced Launcher also give you
- the possibility to edit, download (from Internet resources)
- and manage all the meta-data (informations and images) related
- to these applications.
- '';
- platforms = platforms.all;
- maintainers = with maintainers; [ edwtjo ];
- broken = true; # requires port to python3
- };
-
- };
-
- advanced-emulator-launcher = buildKodiAddon rec {
-
- pname = "advanced-emulator-launcher";
- namespace = "plugin.program.advanced.emulator.launcher";
- version = "0.9.6";
-
- src = fetchFromGitHub {
- owner = "Wintermute0110";
- repo = namespace;
- rev = version;
- sha256 = "1sv9z77jj6bam6llcnd9b3dgkbvhwad2m1v541rv3acrackms2z2";
- };
-
- meta = {
- homepage = "https://forum.kodi.tv/showthread.php?tid=287826";
- description = "A program launcher for Kodi";
- longDescription = ''
- Advanced Emulator Launcher is a multi-emulator front-end for Kodi
- scalable to collections of thousands of ROMs. Includes offline scrapers
- for MAME and No-Intro ROM sets and also supports scrapping ROM metadata
- and artwork online. ROM auditing for No-Intro ROMs using No-Intro XML
- DATs. Launching of games and standalone applications is also available.
- '';
- platforms = platforms.all;
- maintainers = with maintainers; [ edwtjo ];
- broken = true; # requires port to python3
- };
-
- };
-
- controllers = let
- pname = "game-controller";
- version = "1.0.3";
-
- src = fetchFromGitHub {
- owner = "kodi-game";
- repo = "kodi-game-controllers";
- rev = "01acb5b6e8b85392b3cb298b034aadb1b24ccf18";
- sha256 = "0sbc0w0fwbp7rbmbgb6a1kglhnn5g85hijcbbvf5x6jdq9v3f1qb";
- };
-
- meta = {
- description = "Add support for different gaming controllers.";
- platforms = platforms.all;
- maintainers = with maintainers; [ edwtjo ];
- };
-
- mkController = controller: {
- ${controller} = buildKodiAddon rec {
- pname = pname + "-" + controller;
- namespace = "game.controller." + controller;
- sourceDir = "addons/" + namespace;
- inherit version src meta;
- };
- };
- in (mkController "default")
- // (mkController "dreamcast")
- // (mkController "gba")
- // (mkController "genesis")
- // (mkController "mouse")
- // (mkController "n64")
- // (mkController "nes")
- // (mkController "ps")
- // (mkController "snes");
-
- hyper-launcher = let
- pname = "hyper-launcher";
- version = "1.5.2";
- src = fetchFromGitHub rec {
- name = pname + "-" + version + ".tar.gz";
- owner = "teeedubb";
- repo = owner + "-xbmc-repo";
- rev = "f958ba93fe85b9c9025b1745d89c2db2e7dd9bf6";
- sha256 = "1dvff24fbas25k5kvca4ssks9l1g5rfa3hl8lqxczkaqi3pp41j5";
- };
- meta = {
- homepage = "https://forum.kodi.tv/showthread.php?tid=258159";
- description = "A ROM launcher for Kodi that uses HyperSpin assets.";
- maintainers = with maintainers; [ edwtjo ];
- broken = true; # requires port to python3
- };
- in {
- service = buildKodiAddon {
- pname = pname + "-service";
- version = "1.2.1";
- namespace = "service.hyper.launcher";
- inherit src meta;
- };
- plugin = buildKodiAddon {
- namespace = "plugin.hyper.launcher";
- inherit pname version src meta;
- };
- };
-
- joystick = buildKodiBinaryAddon rec {
- pname = namespace;
- namespace = "peripheral.joystick";
- version = "1.7.1";
-
- src = fetchFromGitHub {
- owner = "xbmc";
- repo = namespace;
- rev = "${version}-${rel}";
- sha256 = "1dhj4afr9kj938xx70fq5r409mz6lbw4n581ljvdjj9lq7akc914";
- };
-
- meta = {
- description = "Binary addon for raw joystick input.";
- platforms = platforms.all;
- maintainers = with maintainers; [ edwtjo ];
- };
-
- extraBuildInputs = [ tinyxml udev ];
- };
-
- simpleplugin = buildKodiAddon rec {
- pname = "simpleplugin";
- namespace = "script.module.simpleplugin";
- version = "2.3.2";
-
- src = fetchFromGitHub {
- owner = "romanvm";
- repo = namespace;
- rev = "v.${version}";
- sha256 = "0myar8dqjigb75pcc8zx3i5z79p1ifgphgb82s5syqywk0zaxm3j";
- };
-
- meta = {
- homepage = src.meta.homepage;
- description = "Simpleplugin API";
- license = licenses.gpl3;
- broken = true; # requires port to python3
- };
- };
-
- svtplay = buildKodiAddon rec {
-
- pname = "svtplay";
- namespace = "plugin.video.svtplay";
- version = "5.1.12";
-
- src = fetchFromGitHub {
- name = pname + "-" + version + ".tar.gz";
- owner = "nilzen";
- repo = "xbmc-" + pname;
- rev = "v${version}";
- sha256 = "04j1nhm7mh9chs995lz6bv1vsq5xzk7a7c0lmk4bnfv8jrfpj0w6";
- };
-
- meta = {
- homepage = "https://forum.kodi.tv/showthread.php?tid=67110";
- description = "Watch content from SVT Play";
- longDescription = ''
- With this addon you can stream content from SVT Play
- (svtplay.se). The plugin fetches the video URL from the SVT
- Play website and feeds it to the Kodi video player. HLS (m3u8)
- is the preferred video format by the plugin.
- '';
- platforms = platforms.all;
- maintainers = with maintainers; [ edwtjo ];
- };
-
- };
-
- steam-controller = buildKodiBinaryAddon rec {
- pname = namespace;
- namespace = "peripheral.steamcontroller";
- version = "0.11.0";
-
- src = fetchFromGitHub {
- owner = "kodi-game";
- repo = namespace;
- rev = "f68140ca44f163a03d3a625d1f2005a6edef96cb";
- sha256 = "09lm8i119xlsxxk0c64rnp8iw0crr90v7m8iwi9r31qdmxrdxpmg";
- };
-
- extraBuildInputs = [ libusb1 ];
-
- meta = {
- description = "Binary addon for steam controller.";
- platforms = platforms.all;
- maintainers = with maintainers; [ edwtjo ];
- };
-
- };
-
- steam-launcher = buildKodiAddon {
-
- pname = "steam-launcher";
- namespace = "script.steam.launcher";
- version = "3.5.1";
-
- src = fetchFromGitHub rec {
- owner = "teeedubb";
- repo = owner + "-xbmc-repo";
- rev = "8260bf9b464846a1f1965da495d2f2b7ceb81d55";
- sha256 = "1fj3ry5s44nf1jzxk4bmnpa4b9p23nrpmpj2a4i6xf94h7jl7p5k";
- };
-
- propagatedBuildInputs = [ steam ];
-
- meta = {
- homepage = "https://forum.kodi.tv/showthread.php?tid=157499";
- description = "Launch Steam in Big Picture Mode from Kodi";
- longDescription = ''
- This add-on will close/minimise Kodi, launch Steam in Big
- Picture Mode and when Steam BPM is exited (either by quitting
- Steam or returning to the desktop) Kodi will
- restart/maximise. Running pre/post Steam scripts can be
- configured via the addon.
- '';
- maintainers = with maintainers; [ edwtjo ];
- };
- };
-
- pdfreader = buildKodiAddon rec {
- pname = "pdfreader";
- namespace = "plugin.image.pdf";
- version = "2.0.2";
-
- src = fetchFromGitHub {
- owner = "i96751414";
- repo = "plugin.image.pdfreader";
- rev = "v${version}";
- sha256 = "0nkqhlm1gyagq6xpdgqvd5qxyr2ngpml9smdmzfabc8b972mwjml";
- };
-
- meta = {
- homepage = "https://forum.kodi.tv/showthread.php?tid=187421";
- description = "A comic book reader";
- maintainers = with maintainers; [ edwtjo ];
- };
- };
-
- pvr-hts = buildKodiBinaryAddon rec {
-
- pname = "pvr-hts";
- namespace = "pvr.hts";
- version = "8.2.2";
-
- src = fetchFromGitHub {
- owner = "kodi-pvr";
- repo = "pvr.hts";
- rev = "${version}-${rel}";
- sha256 = "0jnn9gfjl556acqjf92wzzn371gxymhbbi665nqgg2gjcan0a49q";
- };
-
- meta = {
- homepage = "https://github.com/kodi-pvr/pvr.hts";
- description = "Kodi's Tvheadend HTSP client addon";
- platforms = platforms.all;
- maintainers = with maintainers; [ cpages ];
- };
-
- };
-
- pvr-hdhomerun = buildKodiBinaryAddon rec {
-
- pname = "pvr-hdhomerun";
- namespace = "pvr.hdhomerun";
- version = "7.1.0";
-
- src = fetchFromGitHub {
- owner = "kodi-pvr";
- repo = "pvr.hdhomerun";
- rev = "${version}-${rel}";
- sha256 = "0gbwjssnd319csq2kwlyjj1rskg19m1dxac5dl2dymvx5hn3zrgm";
- };
-
- meta = {
- homepage = "https://github.com/kodi-pvr/pvr.hdhomerun";
- description = "Kodi's HDHomeRun PVR client addon";
- platforms = platforms.all;
- maintainers = with maintainers; [ titanous ];
- };
-
- extraBuildInputs = [ jsoncpp libhdhomerun ];
-
- };
-
- pvr-iptvsimple = buildKodiBinaryAddon rec {
-
- pname = "pvr-iptvsimple";
- namespace = "pvr.iptvsimple";
- version = "7.4.2";
-
- src = fetchFromGitHub {
- owner = "kodi-pvr";
- repo = "pvr.iptvsimple";
- rev = "${version}-${rel}";
- sha256 = "062i922qi0izkvn7v47yhyy2cf3fa7xc3k95b1gm9abfdwkk8ywr";
- };
-
- meta = {
- homepage = "https://github.com/kodi-pvr/pvr.iptvsimple";
- description = "Kodi's IPTV Simple client addon";
- platforms = platforms.all;
- maintainers = with maintainers; [ ];
- license = licenses.gpl2Plus;
- };
-
- extraBuildInputs = [ zlib pugixml ];
- };
-
- osmc-skin = buildKodiAddon rec {
-
- pname = "osmc-skin";
- namespace = "skin.osmc";
- version = "18.0.0";
-
- src = fetchFromGitHub {
- owner = "osmc";
- repo = namespace;
- rev = "40a6c318641e2cbeac58fb0e7dde9c2beac737a0";
- sha256 = "1l7hyfj5zvjxjdm94y325bmy1naak455b9l8952sb0gllzrcwj6s";
- };
-
- meta = {
- homepage = "https://github.com/osmc/skin.osmc";
- description = "The default skin for OSMC";
- platforms = platforms.all;
- maintainers = with maintainers; [ worldofpeace ];
- license = licenses.cc-by-nc-sa-30;
- };
- };
-
- yatp = python3Packages.toPythonModule (buildKodiAddon rec {
- pname = "yatp";
- namespace = "plugin.video.yatp";
- version = "3.3.2";
-
- src = fetchFromGitHub {
- owner = "romanvm";
- repo = "kodi.yatp";
- rev = "v.${version}";
- sha256 = "12g1f57sx7dy6wy7ljl7siz2qs1kxcmijcg7xx2xpvmq61x9qa2d";
- };
-
- patches = [ ./yatp/dont-monkey.patch ];
-
- propagatedBuildInputs = [
- simpleplugin
- python3Packages.requests
- python3Packages.libtorrent-rasterbar
- ];
-
- meta = {
- homepage = src.meta.homepage;
- description = "Yet Another Torrent Player: libtorrent-based torrent streaming for Kodi";
- license = licenses.gpl3;
- broken = true; # requires port to python3
- };
- });
-
- inputstream-adaptive = buildKodiBinaryAddon rec {
-
- pname = "inputstream-adaptive";
- namespace = "inputstream.adaptive";
- version = "2.6.7";
-
- src = fetchFromGitHub {
- owner = "peak3d";
- repo = "inputstream.adaptive";
- rev = "${version}-${rel}";
- sha256 = "1pwqmbr78wp12jn6rwv63npdfc456adwz0amlxf6gvgg43li6p7s";
- };
-
- extraBuildInputs = [ expat ];
-
- extraRuntimeDependencies = [ glib nspr nss stdenv.cc.cc.lib ];
-
- extraInstallPhase = let n = namespace; in ''
- ln -s $out/lib/addons/${n}/libssd_wv.so $out/${addonDir}/${n}/libssd_wv.so
- '';
-
- meta = {
- homepage = "https://github.com/peak3d/inputstream.adaptive";
- description = "Kodi inputstream addon for several manifest types";
- platforms = platforms.all;
- maintainers = with maintainers; [ sephalon ];
- };
- };
-
- vfs-sftp = buildKodiBinaryAddon rec {
- pname = namespace;
- namespace = "vfs.sftp";
- version = "2.0.0";
-
- src = fetchFromGitHub {
- owner = "xbmc";
- repo = namespace;
- rev = "${version}-${rel}";
- sha256 = "06w74sh8yagrrp7a7rjaz3xrh1j3wdqald9c4b72c33gpk5997dk";
- };
-
- meta = with lib; {
- description = "SFTP Virtual Filesystem add-on for Kodi";
- license = licenses.gpl2Plus;
- platforms = platforms.all;
- maintainers = with maintainers; [ minijackson ];
- };
-
- extraBuildInputs = [ openssl libssh zlib ];
- };
-
- vfs-libarchive = buildKodiBinaryAddon rec {
- pname = namespace;
- namespace = "vfs.libarchive";
- version = "2.0.0";
-
- src = fetchFromGitHub {
- owner = "xbmc";
- repo = namespace;
- rev = "${version}-${rel}";
- sha256 = "1q62p1i6rvqk2zv6f1cpffkh95lgclys2xl4dwyhj3acmqdxd9i5";
- };
-
- meta = with lib; {
- description = "LibArchive Virtual Filesystem add-on for Kodi";
- license = licenses.gpl2Plus;
- platforms = platforms.all;
- maintainers = with maintainers; [ minijackson ];
- };
-
- extraBuildInputs = [ libarchive xz bzip2 zlib lz4 lzo openssl ];
- };
-}; in self
diff --git a/pkgs/applications/video/lbry/default.nix b/pkgs/applications/video/lbry/default.nix
index 479616ee3ef..cf5608e66a0 100644
--- a/pkgs/applications/video/lbry/default.nix
+++ b/pkgs/applications/video/lbry/default.nix
@@ -29,7 +29,7 @@ in appimageTools.wrapAppImage rec {
# Now, install assets such as the desktop file and icons
install -m 444 -D ${src}/lbry.desktop -t $out/share/applications
substituteInPlace $out/share/applications/lbry.desktop \
- --replace 'AppRun' '$out/bin/lbry'
+ --replace 'Exec=AppRun' 'Exec=lbry'
cp -r ${src}/usr/share/icons $out/share
'';
diff --git a/pkgs/applications/video/losslesscut-bin/appimage.nix b/pkgs/applications/video/losslesscut-bin/appimage.nix
new file mode 100644
index 00000000000..d1f60c3dd2c
--- /dev/null
+++ b/pkgs/applications/video/losslesscut-bin/appimage.nix
@@ -0,0 +1,45 @@
+{ appimageTools, lib, fetchurl, gtk3, gsettings-desktop-schemas, version }:
+
+let
+ pname = "losslesscut";
+ nameRepo = "lossless-cut";
+ nameCamel = "LosslessCut";
+ name = "${pname}-${version}";
+ nameSource = "${nameCamel}-linux.AppImage";
+ nameExecutable = "losslesscut";
+ owner = "mifi";
+ src = fetchurl {
+ url = "https://github.com/${owner}/${nameRepo}/releases/download/v${version}/${nameSource}";
+ name = nameSource;
+ sha256 = "0aqz5ijl5japfzzbcdcd2mmihkb8b2fc2hs9kkm3211yb37c5ygv";
+ };
+ extracted = appimageTools.extractType2 {
+ inherit name src;
+ };
+in appimageTools.wrapType2 {
+ inherit name src;
+
+ profile = ''
+ export LC_ALL=C.UTF-8
+ export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
+ '';
+
+ extraPkgs = ps: appimageTools.defaultFhsEnvArgs.multiPkgs ps;
+
+ extraInstallCommands = ''
+ mv $out/bin/{${name},${nameExecutable}}
+ (
+ mkdir -p $out/share
+ cd ${extracted}/usr
+ find share -mindepth 1 -type d -exec mkdir -p $out/{} \;
+ find share -mindepth 1 -type f,l -exec ln -s $PWD/{} $out/{} \;
+ )
+ ln -s ${extracted}/${nameExecutable}.png $out/share/icons/${nameExecutable}.png
+ mkdir $out/share/applications
+ cp ${extracted}/${nameExecutable}.desktop $out/share/applications
+ substituteInPlace $out/share/applications/${nameExecutable}.desktop \
+ --replace AppRun ${nameExecutable}
+ '';
+
+ meta.platforms = with lib.platforms; [ "x86_64-linux" ];
+}
diff --git a/pkgs/applications/video/losslesscut-bin/default.nix b/pkgs/applications/video/losslesscut-bin/default.nix
new file mode 100644
index 00000000000..01f9c158062
--- /dev/null
+++ b/pkgs/applications/video/losslesscut-bin/default.nix
@@ -0,0 +1,24 @@
+{ callPackage, stdenvNoCC, lib }:
+let
+ version = "3.33.1";
+ appimage = callPackage ./appimage.nix { inherit version; };
+ dmg = callPackage ./dmg.nix { inherit version; };
+ windows = callPackage ./windows.nix { inherit version; };
+in (
+ if stdenvNoCC.isDarwin then dmg
+ else if stdenvNoCC.isCygwin then windows
+ else appimage
+).overrideAttrs
+(oldAttrs: {
+ meta = with lib; {
+ description = "The swiss army knife of lossless video/audio editing";
+ homepage = "https://mifi.no/losslesscut/";
+ license = licenses.mit;
+ maintainers = with maintainers; [ ShamrockLee ];
+ } // oldAttrs.meta // {
+ platforms =
+ appimage.meta.platforms
+ ++ dmg.meta.platforms
+ ++ windows.meta.platforms;
+ };
+})
diff --git a/pkgs/applications/video/losslesscut-bin/dmg.nix b/pkgs/applications/video/losslesscut-bin/dmg.nix
new file mode 100644
index 00000000000..3d0bad19757
--- /dev/null
+++ b/pkgs/applications/video/losslesscut-bin/dmg.nix
@@ -0,0 +1,31 @@
+{ stdenvNoCC, lib, fetchurl, undmg, version }:
+
+let
+ pname = "losslesscut";
+ nameRepo = "lossless-cut";
+ nameCamel = "LosslessCut";
+ nameSource = "${nameCamel}-mac.dmg";
+ nameApp = nameCamel + ".app";
+ owner = "mifi";
+ src = fetchurl {
+ url = "https://github.com/${owner}/${nameRepo}/releases/download/v${version}/${nameSource}";
+ name = nameSource;
+ sha256 = "0xa1avbwar7x7kv5yn2ldca4vj3nwaz0dhjm3bcdy59q914xn3dj";
+ };
+in stdenvNoCC.mkDerivation {
+ inherit pname version src;
+
+ nativeBuildInputs = [ undmg ];
+
+ unpackPhase = ''
+ undmg ${src}
+ '';
+ sourceRoot = nameApp;
+
+ installPhase = ''
+ mkdir -p $out/Applications/${nameApp}
+ cp -R . $out/Applications/${nameApp}
+ '';
+
+ meta.platforms = lib.platforms.darwin;
+}
diff --git a/pkgs/applications/video/losslesscut-bin/windows.nix b/pkgs/applications/video/losslesscut-bin/windows.nix
new file mode 100644
index 00000000000..fe5df9d6c90
--- /dev/null
+++ b/pkgs/applications/video/losslesscut-bin/windows.nix
@@ -0,0 +1,45 @@
+{ stdenvNoCC
+, lib
+, fetchurl
+, unzip
+, version
+, useMklink ? false
+, customSymlinkCommand ? null
+}:
+let
+ pname = "losslesscut";
+ nameRepo = "lossless-cut";
+ nameCamel = "LosslessCut";
+ nameSourceBase = "${nameCamel}-win";
+ nameSource = "${nameSourceBase}.zip";
+ nameExecutable = "${nameCamel}.exe";
+ owner = "mifi";
+ getSymlinkCommand = if (customSymlinkCommand != null) then customSymlinkCommand
+ else if useMklink then (targetPath: linkPath: "mklink ${targetPath} ${linkPath}")
+ else (targetPath: linkPath: "ln -s ${targetPath} ${linkPath}");
+in stdenvNoCC.mkDerivation {
+ inherit pname version;
+
+ src = fetchurl {
+ name = nameSource;
+ url = "https://github.com/${owner}/${nameRepo}/releases/download/v${version}/${nameSource}";
+ sha256 = "1rq9frab0jl9y1mgmjhzsm734jvz0a646zq2wi5xzzspn4wikhvb";
+ };
+
+ nativeBuildInputs = [ unzip ];
+
+ unpackPhase = ''
+ unzip $src -d ${nameSourceBase}
+ '';
+
+ sourceRoot = nameSourceBase;
+
+ installPhase = ''
+ mkdir -p $out/bin $out/libexec
+ cd ..
+ mv ${nameSourceBase} $out/libexec
+
+ '' + (getSymlinkCommand "${nameSourceBase}/${nameExecutable}" "$out/bin/${nameExecutable}");
+
+ meta.platforms = lib.platforms.windows;
+}
diff --git a/pkgs/applications/video/mpv/scripts/autoload.nix b/pkgs/applications/video/mpv/scripts/autoload.nix
index f64e702f21c..8f09070c5f4 100644
--- a/pkgs/applications/video/mpv/scripts/autoload.nix
+++ b/pkgs/applications/video/mpv/scripts/autoload.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, mpv-unwrapped, lib }:
+{ stdenvNoCC, mpv-unwrapped, lib }:
-stdenv.mkDerivation rec {
+stdenvNoCC.mkDerivation rec {
pname = "mpv-autoload";
version = mpv-unwrapped.version;
src = "${mpv-unwrapped.src.outPath}/TOOLS/lua/autoload.lua";
diff --git a/pkgs/applications/video/mpv/scripts/convert.nix b/pkgs/applications/video/mpv/scripts/convert.nix
index ce069520332..40a1050cd32 100644
--- a/pkgs/applications/video/mpv/scripts/convert.nix
+++ b/pkgs/applications/video/mpv/scripts/convert.nix
@@ -1,7 +1,7 @@
-{ stdenv, fetchgit, lib
+{ stdenvNoCC, fetchgit, lib
, yad, mkvtoolnix-cli, libnotify }:
-stdenv.mkDerivation {
+stdenvNoCC.mkDerivation {
pname = "mpv-convert-script";
version = "2016-03-18";
src = fetchgit {
@@ -12,15 +12,17 @@ stdenv.mkDerivation {
patches = [ ./convert.patch ];
- postPatch =
- let
- t = k: v: '' 'local ${k} = "${v}"' '';
- subs = var: orig: repl: "--replace " + t var orig + t var repl;
- in ''
- substituteInPlace convert_script.lua \
- ${subs "NOTIFY_CMD" "notify-send" "${libnotify}/bin/notify-send"} \
- ${subs "YAD_CMD" "yad" "${yad}/bin/yad"} \
- ${subs "MKVMERGE_CMD" "mkvmerge" "${mkvtoolnix-cli}/bin/mkvmerge"}
+ postPatch = ''
+ substituteInPlace convert_script.lua \
+ --replace 'mkvpropedit_exe = "mkvpropedit"' \
+ 'mkvpropedit_exe = "${mkvtoolnix-cli}/bin/mkvpropedit"' \
+ --replace 'mkvmerge_exe = "mkvmerge"' \
+ 'mkvmerge_exe = "${mkvtoolnix-cli}/bin/mkvmerge"' \
+ --replace 'yad_exe = "yad"' \
+ 'yad_exe = "${yad}/bin/yad"' \
+ --replace 'notify_send_exe = "notify-send"' \
+ 'notify_send_exe = "${libnotify}/bin/notify-send"' \
+
'';
dontBuild = true;
@@ -30,14 +32,15 @@ stdenv.mkDerivation {
'';
passthru.scriptName = "convert_script.lua";
- meta = {
+ meta = with lib; {
description = "Convert parts of a video while you are watching it in mpv";
homepage = "https://gist.github.com/Zehkul/25ea7ae77b30af959be0";
- maintainers = [ lib.maintainers.Profpatsch ];
+ maintainers = [ maintainers.Profpatsch ];
longDescription = ''
When this script is loaded into mpv, you can hit Alt+W to mark the beginning
and Alt+W again to mark the end of the clip. Then a settings window opens.
'';
+ # author was asked to add a license https://gist.github.com/Zehkul/25ea7ae77b30af959be0#gistcomment-3715700
+ license = licenses.unfree;
};
}
-
diff --git a/pkgs/applications/video/mpv/scripts/convert.patch b/pkgs/applications/video/mpv/scripts/convert.patch
index 82171210b41..d3a891bb34c 100644
--- a/pkgs/applications/video/mpv/scripts/convert.patch
+++ b/pkgs/applications/video/mpv/scripts/convert.patch
@@ -1,17 +1,45 @@
---- convert/convert_script.lua 2016-03-18 19:30:49.675401969 +0100
-+++ convert_script.lua 2016-03-19 01:18:00.801897043 +0100
-@@ -3,6 +3,10 @@
+diff --git "a/Convert Script \342\200\223 README.md" "b/Convert Script \342\200\223 README.md"
+index 8e062c1..6e0d798 100644
+--- "a/Convert Script \342\200\223 README.md"
++++ "b/Convert Script \342\200\223 README.md"
+@@ -68,7 +68,7 @@ and set some options in ``mpv/lua-settings/convert_script.conf`` or with ``--scr
+ If you don’t want to upgrade your yad. Features like appending segments won’t be available.
+
+ libvpx_fps
+- Default: --oautofps
++ Default: ""
+ FPS settings (or any other settings really) for libvpx encoding. Set it to --ofps=24000/1001 for example.
+
+-Warning: Some of these options aren’t very robust and setting them to bogus values will break the script.
+\ No newline at end of file
++Warning: Some of these options aren’t very robust and setting them to bogus values will break the script.
+diff --git a/convert_script.lua b/convert_script.lua
+index 17d3100..90f88ec 100644
+--- a/convert_script.lua
++++ b/convert_script.lua
+@@ -3,6 +3,12 @@ local msg = require 'mp.msg'
local opt = require 'mp.options'
local utils = require 'mp.utils'
-+local NOTIFY_CMD = "notify-send"
-+local YAD_CMD = "yad"
-+local MKVMERGE_CMD = "mkvmerge"
++-- executables
++local mkvpropedit_exe = "mkvpropedit"
++local mkvmerge_exe = "mkvmerge"
++local yad_exe = "yad"
++local notify_send_exe = "notify-send"
+
-- default options, convert_script.conf is read
local options = {
bitrate_multiplier = 0.975, -- to make sure the file won’t go over the target file size, set it to 1 if you don’t care
-@@ -247,12 +247,12 @@
+@@ -14,7 +20,7 @@ local options = {
+ libvpx_options = "--ovcopts-add=cpu-used=0,auto-alt-ref=1,lag-in-frames=25,quality=good",
+ libvpx_vp9_options = "",
+ legacy_yad = false, -- if you don’t want to upgrade to at least yad 0.18
+- libvpx_fps = "--oautofps", -- --ofps=24000/1001 for example
++ libvpx_fps = "", -- --ofps=24000/1001 for example
+ audio_bitrate = 112, -- mpv default, in kbps
+ }
+
+@@ -247,12 +253,12 @@ function encode(enc)
if string.len(vf) > 0 then
vf = vf .. ","
end
@@ -26,42 +54,49 @@
local audio_file = ""
for index, param in pairs(audio_file_table) do
audio_file = audio_file .. " --audio-file='" .. string.gsub(tostring(param), "'", "'\\''") .. "'"
-@@ -354,9 +358,9 @@
+@@ -354,9 +360,9 @@ function encode(enc)
if ovc == "gif" then
full_command = full_command .. ' --vf-add=lavfi=graph=\\"framestep=' .. framestep .. '\\" && convert '
.. tmpfolder .. '/*.png -set delay ' .. delay .. ' -loop 0 -fuzz ' .. fuzz .. '% ' .. dither .. ' -layers optimize '
- .. full_output_path .. ' && rm -rf ' .. tmpfolder .. ' && notify-send "Gif done") & disown'
-+ .. full_output_path .. ' && rm -rf ' .. tmpfolder .. ' && ' .. NOTIFY_CMD .. ' "Gif done") & disown'
++ .. full_output_path .. ' && rm -rf ' .. tmpfolder .. ' && ' .. notify_send_exe .. ' "Gif done") & disown'
else
- full_command = full_command .. ' && notify-send "Encoding done"; mkvpropedit '
-+ full_command = full_command .. ' && ' .. NOTIFY_CMD .. ' "Encoding done"; mkvpropedit '
++ full_command = full_command .. ' && ' .. notify_send_exe .. ' "Encoding done"; ' .. mkvpropedit_exe .. ' '
.. full_output_path .. ' -s title="' .. metadata_title .. '") & disown'
end
-@@ -409,7 +413,7 @@
+@@ -409,7 +415,7 @@ function encode_copy(enc)
sep = ",+"
if enc then
- local command = "mkvmerge '" .. video .. "' " .. mkvmerge_parts .. " -o " .. full_output_path
-+ local command = MKVMERGE_CMD .. " '" .. video .. "' " .. mkvmerge_parts .. " -o " .. full_output_path
++ local command = mkvmerge_exe .. " '" .. video .. "' " .. mkvmerge_parts .. " -o " .. full_output_path
msg.info(command)
os.execute(command)
clear()
-@@ -508,7 +512,7 @@
+@@ -508,7 +514,7 @@ function call_gui ()
end
- local yad_command = [[LC_NUMERIC=C yad --title="Convert Script" --center --form --fixed --always-print-result \
-+ local yad_command = [[LC_NUMERIC=C ]] .. YAD_CMD .. [[ --title="Convert Script" --center --form --fixed --always-print-result \
++ local yad_command = [[LC_NUMERIC=C ]] .. yad_exe .. [[ --title="Convert Script" --center --form --fixed --always-print-result \
--name "convert script" --class "Convert Script" --field="Resize to height:NUM" "]] .. scale_sav --yad_table 1
.. [[" --field="Resize to width instead:CHK" ]] .. resize_to_width_instead .. " " --yad_table 2
if options.legacy_yad then
-@@ -543,7 +547,7 @@
- yad_command = yad_command .. [[ --button="Crop:1" --button="gtk-cancel:2" --button="gtk-ok:0"; ret=$? && echo $ret]]
-
- if gif_dialog then
-- yad_command = [[echo $(LC_NUMERIC=C yad --title="Gif settings" --name "convert script" --class "Convert Script" \
-+ yad_command = [[echo $(LC_NUMERIC=C ]] .. YAD_CMD .. [[ --title="Gif settings" --name "convert script" --class "Convert Script" \
- --center --form --always-print-result --separator="…" \
- --field="Fuzz Factor:NUM" '1!0..100!0.5!1' \
- --field="Framestep:NUM" '3!1..3!1' \
+@@ -524,7 +530,7 @@ function call_gui ()
+ yad_command = yad_command
+ .. [[--field="2pass:CHK" "false" ]] --yad_table 5
+ .. [[--field="Encode options::CBE" '! --ovcopts=b=2000,cpu-used=0,auto-alt-ref=1,lag-in-frames=25,quality=good,threads=4' ]] --yad_table 6
+- .. [[--field="Output format::CBE" ' --ovc=libx264! --oautofps --of=webm --ovc=libvpx' ]]
++ .. [[--field="Output format::CBE" ' --ovc=libx264! --of=webm --ovc=libvpx' ]]
+ .. [[--field="Simple:FBTN" 'bash -c "echo \"simple\" && kill -s SIGUSR1 \"$YAD_PID\""' ]]
+ advanced = true
+ else
+@@ -734,4 +740,4 @@ mp.set_key_bindings({
+
+ mp.add_key_binding("alt+w", "convert_script", convert_script_hotkey_call)
+
+-mp.register_event("tick", tick)
+\ No newline at end of file
++mp.register_event("tick", tick)
diff --git a/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix b/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix
new file mode 100644
index 00000000000..b7e95324f58
--- /dev/null
+++ b/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix
@@ -0,0 +1,37 @@
+{ lib, stdenvNoCC, fetchFromGitHub, youtube-dl }:
+
+stdenvNoCC.mkDerivation rec {
+ pname = "mpv-playlistmanager";
+ version = "unstable-2021-03-09";
+
+ src = fetchFromGitHub {
+ owner = "jonniek";
+ repo = "mpv-playlistmanager";
+ rev = "c15a0334cf6d4581882fa31ddb1e6e7f2d937a3e";
+ sha256 = "uxcvgcSGS61UU8MmuD6qMRqpIa53iasH/vkg1xY7MVc=";
+ };
+
+ postPatch = ''
+ substituteInPlace playlistmanager.lua \
+ --replace "'youtube-dl'" "'${youtube-dl}/bin/youtube-dl'" \
+ '';
+
+ dontBuild = true;
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/share/mpv/scripts
+ cp playlistmanager.lua $out/share/mpv/scripts
+ runHook postInstall
+ '';
+
+ passthru.scriptName = "playlistmanager.lua";
+
+ meta = with lib; {
+ description = "Mpv lua script to create and manage playlists";
+ homepage = "https://github.com/jonniek/mpv-playlistmanager";
+ license = licenses.unlicense;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ lunik1 ];
+ };
+}
diff --git a/pkgs/applications/video/mpv/scripts/mpvacious.nix b/pkgs/applications/video/mpv/scripts/mpvacious.nix
index 0995d976e60..3225317d78b 100644
--- a/pkgs/applications/video/mpv/scripts/mpvacious.nix
+++ b/pkgs/applications/video/mpv/scripts/mpvacious.nix
@@ -1,6 +1,6 @@
-{ lib, stdenv, fetchFromGitHub, curl, xclip }:
+{ lib, stdenvNoCC, fetchFromGitHub, curl, xclip }:
-stdenv.mkDerivation rec {
+stdenvNoCC.mkDerivation rec {
pname = "mpvacious";
version = "0.14";
diff --git a/pkgs/applications/video/mpv/scripts/simple-mpv-webui.nix b/pkgs/applications/video/mpv/scripts/simple-mpv-webui.nix
index 0c0597d3afb..99b731757ff 100644
--- a/pkgs/applications/video/mpv/scripts/simple-mpv-webui.nix
+++ b/pkgs/applications/video/mpv/scripts/simple-mpv-webui.nix
@@ -1,6 +1,6 @@
-{ lib, stdenv
+{ lib, stdenvNoCC
, fetchFromGitHub }:
-stdenv.mkDerivation rec {
+stdenvNoCC.mkDerivation rec {
pname = "simple-mpv-ui";
version = "1.0.0";
diff --git a/pkgs/applications/video/mpv/scripts/sponsorblock.nix b/pkgs/applications/video/mpv/scripts/sponsorblock.nix
index 79ede806b0c..5d33bfd92a4 100644
--- a/pkgs/applications/video/mpv/scripts/sponsorblock.nix
+++ b/pkgs/applications/video/mpv/scripts/sponsorblock.nix
@@ -1,7 +1,7 @@
-{ lib, stdenv, fetchFromGitHub, fetchpatch, python3 }:
+{ lib, stdenvNoCC, fetchFromGitHub, fetchpatch, python3 }:
# Usage: `pkgs.mpv.override { scripts = [ pkgs.mpvScripts.sponsorblock ]; }`
-stdenv.mkDerivation {
+stdenvNoCC.mkDerivation {
pname = "mpv_sponsorblock";
version = "unstable-2020-07-05";
diff --git a/pkgs/applications/video/mpv/scripts/thumbnail.nix b/pkgs/applications/video/mpv/scripts/thumbnail.nix
index cda15b2674c..4bee220f4c9 100644
--- a/pkgs/applications/video/mpv/scripts/thumbnail.nix
+++ b/pkgs/applications/video/mpv/scripts/thumbnail.nix
@@ -1,6 +1,6 @@
-{ fetchFromGitHub, lib, python3, stdenv }:
+{ fetchFromGitHub, lib, python3, stdenvNoCC }:
-stdenv.mkDerivation rec {
+stdenvNoCC.mkDerivation rec {
pname = "mpv_thumbnail_script";
version = "unstable-2020-01-16";
diff --git a/pkgs/applications/video/screenkey/default.nix b/pkgs/applications/video/screenkey/default.nix
index 00ead0f89a3..4377b255fd9 100644
--- a/pkgs/applications/video/screenkey/default.nix
+++ b/pkgs/applications/video/screenkey/default.nix
@@ -1,9 +1,7 @@
{ lib
, fetchFromGitLab
# native
-, intltool
, wrapGAppsHook
-, file
# not native
, xorg
, gobject-introspection
@@ -13,22 +11,16 @@
python3.pkgs.buildPythonApplication rec {
pname = "screenkey";
- version = "1.2";
+ version = "1.4";
src = fetchFromGitLab {
owner = "screenkey";
repo = "screenkey";
rev = "v${version}";
- sha256 = "1x13n57iy2pg3h3r994q3g5nbmh2gwk3qidmmcv0g7qa89n2gwbj";
+ sha256 = "1rfngmkh01g5192pi04r1fm7vsz6hg9k3qd313sn9rl9xkjgp11l";
};
nativeBuildInputs = [
- python3.pkgs.distutils_extra
- # Shouldn't be needed once https://gitlab.com/screenkey/screenkey/-/issues/122 is fixed.
- intltool
- # We are not sure why is this needed, but without it we get "file: command
- # not found" errors during build.
- file
wrapGAppsHook
# for setup hook
gobject-introspection
@@ -39,6 +31,7 @@ python3.pkgs.buildPythonApplication rec {
];
propagatedBuildInputs = with python3.pkgs; [
+ Babel
pycairo
pygobject3
];
diff --git a/pkgs/applications/video/shotcut/default.nix b/pkgs/applications/video/shotcut/default.nix
index 24cb3769aac..3a9c4809c62 100644
--- a/pkgs/applications/video/shotcut/default.nix
+++ b/pkgs/applications/video/shotcut/default.nix
@@ -25,13 +25,13 @@ assert lib.versionAtLeast mlt.version "6.24.0";
mkDerivation rec {
pname = "shotcut";
- version = "21.02.27";
+ version = "21.03.21";
src = fetchFromGitHub {
owner = "mltframework";
repo = "shotcut";
rev = "v${version}";
- sha256 = "bcuJz27jDAB3OPEKq3xNgfv6C31UoMKosS4YIRZNMjM=";
+ sha256 = "UdeHbNkJ0U9FeTmpbcU4JxiyIHkrlC8ErhtY6zdCZEk=";
};
enableParallelBuilding = true;
diff --git a/pkgs/applications/video/srt-live-server/default.nix b/pkgs/applications/video/srt-live-server/default.nix
new file mode 100644
index 00000000000..e02d15a595b
--- /dev/null
+++ b/pkgs/applications/video/srt-live-server/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, fetchFromGitHub
+, stdenv
+, srt
+, zlib
+}:
+
+stdenv.mkDerivation rec {
+ pname = "srt-live-server";
+ version = "1.4.8";
+
+ src = fetchFromGitHub {
+ owner = "Edward-Wu";
+ repo = "srt-live-server";
+ rev = "V${version}";
+ sha256 = "0x48sxpgxznb1ymx8shw437pcgk76ka5rx0zhn9b3cyi9jlq1yld";
+ };
+
+ patches = [
+ # https://github.com/Edward-Wu/srt-live-server/pull/94
+ ./fix-insecure-printfs.patch
+ ];
+
+ buildInputs = [ srt zlib ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ ];
+
+ meta = with lib; {
+ description = "srt live server for low latency";
+ license = licenses.mit;
+ homepage = "https://github.com/Edward-Wu/srt-live-server";
+ maintainers = with maintainers; [ shamilton ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/video/srt-live-server/fix-insecure-printfs.patch b/pkgs/applications/video/srt-live-server/fix-insecure-printfs.patch
new file mode 100644
index 00000000000..8cc85549d13
--- /dev/null
+++ b/pkgs/applications/video/srt-live-server/fix-insecure-printfs.patch
@@ -0,0 +1,61 @@
+diff --color -ur a/Makefile b/Makefile
+--- a/Makefile 2021-04-16 13:02:41.416453040 +0200
++++ b/Makefile 2021-04-16 13:21:23.020089623 +0200
+@@ -1,3 +1,4 @@
++PREFIX = /usr/local
+ SHELL = /bin/sh
+ MAIN_NAME=sls
+ CLIENT_NAME=slc
+@@ -64,3 +65,16 @@
+ rm -f $(OUTPUT_PATH)/*.o
+ rm -rf $(BIN_PATH)/*
+
++install: all
++ @echo installing executable files to ${DESTDIR}${PREFIX}/bin
++ @mkdir -p "${DESTDIR}${PREFIX}/bin"
++ @cp -f ${BIN_PATH}/${MAIN_NAME} "${DESTDIR}${PREFIX}/bin"
++ @chmod 755 "${DESTDIR}${PREFIX}/bin/${MAIN_NAME}"
++ @cp -f ${BIN_PATH}/${CLIENT_NAME} "${DESTDIR}${PREFIX}/bin"
++ @chmod 755 "${DESTDIR}${PREFIX}/bin/${CLIENT_NAME}"
++
++uninstall:
++ @echo removing executable files from ${DESTDIR}${PREFIX}/bin
++ @rm -f "${DESTDIR}${PREFIX}/bin/${MAIN_NAME}"
++ @rm -f "${DESTDIR}${PREFIX}/bin/${CLIENT_NAME}"
++
+diff --color -ur a/slscore/HttpClient.cpp b/slscore/HttpClient.cpp
+--- a/slscore/HttpClient.cpp 2021-04-16 13:02:41.416453040 +0200
++++ b/slscore/HttpClient.cpp 2021-04-16 13:11:40.343866698 +0200
+@@ -90,7 +90,7 @@
+ goto FUNC_END;
+ }
+ if (NULL != method && strlen(method) > 0) {
+- sprintf(m_http_method, method);
++ strcpy(m_http_method, method);
+ }
+
+ m_interval = interval;
+diff --color -ur a/slscore/SLSLog.cpp b/slscore/SLSLog.cpp
+--- a/slscore/SLSLog.cpp 2021-04-16 13:02:41.416453040 +0200
++++ b/slscore/SLSLog.cpp 2021-04-16 13:08:16.836119519 +0200
+@@ -85,7 +85,7 @@
+ vsnprintf (buf , 4095 , fmt , vl);
+ //sprintf(buf_info, "%s %s: %s\n" , cur_time, LOG_LEVEL_NAME[level], buf);
+ sprintf(buf_info, "%s:%03d %s %s: %s\n" , cur_time, cur_time_msec, APP_NAME, LOG_LEVEL_NAME[level], buf);
+- printf(buf_info);
++ puts(buf_info);
+
+ if (m_log_file) {
+ fwrite(buf_info, strlen(buf_info), 1, m_log_file);
+diff --color -ur a/slscore/SLSSrt.cpp b/slscore/SLSSrt.cpp
+--- a/slscore/SLSSrt.cpp 2021-04-16 13:02:41.417452995 +0200
++++ b/slscore/SLSSrt.cpp 2021-04-16 13:10:11.004957820 +0200
+@@ -124,7 +124,7 @@
+ std::map::iterator it;
+ for(it=map_error.begin(); it!=map_error.end(); ++it) {
+ sprintf(szBuf, "%d: %s\n", it->first, it->second.c_str());
+- printf(szBuf);
++ puts(szBuf);
+ }
+ printf("----------end------------\n");
+ map_error.clear();
diff --git a/pkgs/applications/virtualization/crun/default.nix b/pkgs/applications/virtualization/crun/default.nix
index 1aee54c8af8..a6bf559a41a 100644
--- a/pkgs/applications/virtualization/crun/default.nix
+++ b/pkgs/applications/virtualization/crun/default.nix
@@ -38,13 +38,13 @@ let
in
stdenv.mkDerivation rec {
pname = "crun";
- version = "0.19";
+ version = "0.19.1";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = version;
- sha256 = "sha256-G9asWedX03cP5Qg5HIzlSIwwqNL16kiyWairk+6Kabw=";
+ sha256 = "sha256-v5uESTEspIc8rhZXrQqLEVMDvvPcfHuFoj6lI4M5z70=";
fetchSubmodules = true;
};
diff --git a/pkgs/applications/virtualization/looking-glass-client/0001-client-all-fix-more-maybe-uninitialized-when-O3-is-i.patch b/pkgs/applications/virtualization/looking-glass-client/0001-client-all-fix-more-maybe-uninitialized-when-O3-is-i.patch
new file mode 100644
index 00000000000..82ce050b587
--- /dev/null
+++ b/pkgs/applications/virtualization/looking-glass-client/0001-client-all-fix-more-maybe-uninitialized-when-O3-is-i.patch
@@ -0,0 +1,45 @@
+From 95a7293b30ff7b89d615daea00269ed32f4b70a2 Mon Sep 17 00:00:00 2001
+From: Geoffrey McRae
+Date: Tue, 23 Feb 2021 20:25:30 +1100
+Subject: [PATCH] [client] all: fix more `maybe-uninitialized` when `-O3` is in
+ use
+
+Closes #475
+---
+ client/renderers/EGL/egl.c | 3 ++-
+ client/src/main.c | 5 +++--
+ 2 files changed, 5 insertions(+), 3 deletions(-)
+
+diff --git a/client/renderers/EGL/egl.c b/client/renderers/EGL/egl.c
+index b7a5644..72ce50d 100644
+--- a/client/renderers/EGL/egl.c
++++ b/client/renderers/EGL/egl.c
+@@ -271,7 +271,8 @@ static void egl_calc_mouse_size(struct Inst * this)
+ if (!this->formatValid)
+ return;
+
+- int w, h;
++ int w = 0, h = 0;
++
+ switch(this->format.rotate)
+ {
+ case LG_ROTATE_0:
+diff --git a/client/src/main.c b/client/src/main.c
+index f05e929..f5d6fad 100644
+--- a/client/src/main.c
++++ b/client/src/main.c
+@@ -186,8 +186,9 @@ static void updatePositionInfo(void)
+ if (!g_state.haveSrcSize)
+ goto done;
+
+- float srcW;
+- float srcH;
++ float srcW = 0.0f;
++ float srcH = 0.0f;
++
+ switch(params.winRotate)
+ {
+ case LG_ROTATE_0:
+--
+2.30.1
+
diff --git a/pkgs/applications/virtualization/looking-glass-client/default.nix b/pkgs/applications/virtualization/looking-glass-client/default.nix
index 720f684f44c..345018bbe4e 100644
--- a/pkgs/applications/virtualization/looking-glass-client/default.nix
+++ b/pkgs/applications/virtualization/looking-glass-client/default.nix
@@ -1,17 +1,18 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, SDL2, SDL2_ttf, spice-protocol
, fontconfig, libX11, freefont_ttf, nettle, libpthreadstubs, libXau, libXdmcp
-, libXi, libXext, wayland, libffi, libGLU, expat, libbfd
+, libXi, libXext, wayland, wayland-protocols, libffi, libGLU, libXScrnSaver
+, expat, libbfd
}:
stdenv.mkDerivation rec {
pname = "looking-glass-client";
- version = "B2";
+ version = "B3";
src = fetchFromGitHub {
owner = "gnif";
repo = "LookingGlass";
rev = version;
- sha256 = "100b5kzh8gr81kzw5fdqz2jsms25hv3815d31vy3qd6lrlm5gs3d";
+ sha256 = "1vmabjzn85p0brdian9lbpjq39agzn8k0limn8zjm713lh3n3c0f";
fetchSubmodules = true;
};
@@ -19,10 +20,18 @@ stdenv.mkDerivation rec {
buildInputs = [
SDL2 SDL2_ttf spice-protocol fontconfig libX11 freefont_ttf nettle
- libpthreadstubs libXau libXdmcp libXi libXext wayland libffi libGLU expat
- libbfd
+ libpthreadstubs libXau libXdmcp libXi libXext wayland wayland-protocols
+ libffi libGLU libXScrnSaver expat libbfd
];
+ patches = [
+ # error: ‘h’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
+ # Fixed upstream in master in 8771103abbfd04da9787dea760405364af0d82de, but not in B3.
+ # Including our own patch here since upstream commit patch doesnt apply cleanly on B3
+ ./0001-client-all-fix-more-maybe-uninitialized-when-O3-is-i.patch
+ ];
+ patchFlags = "-p2";
+
sourceRoot = "source/client";
NIX_CFLAGS_COMPILE = "-mavx"; # Fix some sort of AVX compiler problem.
diff --git a/pkgs/applications/virtualization/podman/default.nix b/pkgs/applications/virtualization/podman/default.nix
index b64fc82f532..c8b8467def5 100644
--- a/pkgs/applications/virtualization/podman/default.nix
+++ b/pkgs/applications/virtualization/podman/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchFromGitHub
, pkg-config
, installShellFiles
@@ -16,13 +17,13 @@
buildGoModule rec {
pname = "podman";
- version = "3.1.0";
+ version = "3.1.2";
src = fetchFromGitHub {
owner = "containers";
repo = "podman";
rev = "v${version}";
- sha256 = "sha256-Cql9ikk0lo/LeWNykEJSKgfGnBSUU5vOh/zUIEvMapk=";
+ sha256 = "sha256-PS41e7myv5xCSJIeT+SRj4rLVCXpthq7KeHisYoSiOE=";
};
patches = [
diff --git a/pkgs/applications/virtualization/spice-vdagent/default.nix b/pkgs/applications/virtualization/spice-vdagent/default.nix
index 48b0423983d..67ac8119fd5 100644
--- a/pkgs/applications/virtualization/spice-vdagent/default.nix
+++ b/pkgs/applications/virtualization/spice-vdagent/default.nix
@@ -2,15 +2,12 @@
libpciaccess, libxcb, libXrandr, libXinerama, libXfixes, dbus, libdrm,
systemd}:
stdenv.mkDerivation rec {
- name = "spice-vdagent-0.20.0";
+ pname = "spice-vdagent";
+ version = "0.21.0";
src = fetchurl {
- url = "https://www.spice-space.org/download/releases/${name}.tar.bz2";
- sha256 = "0n9k2kna2gd1zi6jv45zsp2jlv439nz5l5jjijirxqaycwi74srf";
+ url = "https://www.spice-space.org/download/releases/${pname}-${version}.tar.bz2";
+ sha256 = "0n8jlc1pv6mkry161y656b1nk9hhhminjq6nymzmmyjl7k95ymzx";
};
- NIX_CFLAGS_COMPILE = [ "-Wno-error=address-of-packed-member" ];
- patchFlags = [ "-uNp1" ];
- # included in the next release.
- patches = [ ./timeout.diff ];
postPatch = ''
substituteInPlace data/spice-vdagent.desktop --replace /usr $out
'';
@@ -29,7 +26,7 @@ stdenv.mkDerivation rec {
* Multiple displays
'';
homepage = "https://www.spice-space.org/";
- license = lib.licenses.gpl3;
+ license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.aboseley ];
platforms = lib.platforms.linux;
};
diff --git a/pkgs/applications/virtualization/spice-vdagent/timeout.diff b/pkgs/applications/virtualization/spice-vdagent/timeout.diff
deleted file mode 100644
index 2021e98e41f..00000000000
--- a/pkgs/applications/virtualization/spice-vdagent/timeout.diff
+++ /dev/null
@@ -1,84 +0,0 @@
-diff --git a/src/udscs.c b/src/udscs.c
-index 4de75f8..7c99eed 100644
---- a/src/udscs.c
-+++ b/src/udscs.c
-@@ -186,6 +186,7 @@ struct udscs_server *udscs_server_new(
- server->read_callback = read_callback;
- server->error_cb = error_cb;
- server->service = g_socket_service_new();
-+ g_socket_service_stop(server->service);
-
- g_signal_connect(server->service, "incoming",
- G_CALLBACK(udscs_server_accept_cb), server);
-@@ -223,6 +224,11 @@ void udscs_server_listen_to_address(struct udscs_server *server,
- g_object_unref(sock_addr);
- }
-
-+void udscs_server_start(struct udscs_server *server)
-+{
-+ g_socket_service_start(server->service);
-+}
-+
- void udscs_server_destroy_connection(struct udscs_server *server,
- UdscsConnection *conn)
- {
-diff --git a/src/udscs.h b/src/udscs.h
-index 45ebd3f..4f7ea36 100644
---- a/src/udscs.h
-+++ b/src/udscs.h
-@@ -98,6 +98,8 @@ void udscs_server_listen_to_address(struct udscs_server *server,
- const gchar *addr,
- GError **err);
-
-+void udscs_server_start(struct udscs_server *server);
-+
- void udscs_server_destroy_connection(struct udscs_server *server,
- UdscsConnection *conn);
-
-diff --git a/src/vdagentd/vdagentd.c b/src/vdagentd/vdagentd.c
-index cfd0a51..753c9bf 100644
---- a/src/vdagentd/vdagentd.c
-+++ b/src/vdagentd/vdagentd.c
-@@ -1184,10 +1184,6 @@ int main(int argc, char *argv[])
- uinput_device = g_strdup(DEFAULT_UINPUT_DEVICE);
- }
-
-- g_unix_signal_add(SIGINT, signal_handler, NULL);
-- g_unix_signal_add(SIGHUP, signal_handler, NULL);
-- g_unix_signal_add(SIGTERM, signal_handler, NULL);
--
- openlog("spice-vdagentd", do_daemonize ? 0 : LOG_PERROR, LOG_USER);
-
- /* Setup communication with vdagent process(es) */
-@@ -1228,9 +1224,6 @@ int main(int argc, char *argv[])
- }
- }
-
-- if (do_daemonize)
-- daemonize();
--
- #ifdef WITH_STATIC_UINPUT
- uinput = vdagentd_uinput_create(uinput_device, 1024, 768, NULL, 0,
- debug > 1, uinput_fake);
-@@ -1240,6 +1233,13 @@ int main(int argc, char *argv[])
- }
- #endif
-
-+ if (do_daemonize)
-+ daemonize();
-+
-+ g_unix_signal_add(SIGINT, signal_handler, NULL);
-+ g_unix_signal_add(SIGHUP, signal_handler, NULL);
-+ g_unix_signal_add(SIGTERM, signal_handler, NULL);
-+
- if (want_session_info)
- session_info = session_info_create(debug);
- if (session_info) {
-@@ -1252,6 +1252,7 @@ int main(int argc, char *argv[])
-
- active_xfers = g_hash_table_new(g_direct_hash, g_direct_equal);
-
-+ udscs_server_start(server);
- loop = g_main_loop_new(NULL, FALSE);
- g_main_loop_run(loop);
-
diff --git a/pkgs/applications/window-managers/fvwm/default.nix b/pkgs/applications/window-managers/fvwm/default.nix
index ae5dad94f2e..07c3573fb2a 100644
--- a/pkgs/applications/window-managers/fvwm/default.nix
+++ b/pkgs/applications/window-managers/fvwm/default.nix
@@ -1,27 +1,37 @@
-{ gestures ? false
-, lib, stdenv, fetchurl, pkg-config
-, cairo, fontconfig, freetype, libXft, libXcursor, libXinerama
-, libXpm, libXt, librsvg, libpng, fribidi, perl
-, libstroke ? null
-}:
-
-assert gestures -> libstroke != null;
+{ autoreconfHook, enableGestures ? false, lib, stdenv, fetchFromGitHub
+, pkg-config, cairo, fontconfig, freetype, libXft, libXcursor, libXinerama
+, libXpm, libXt, librsvg, libpng, fribidi, perl, libstroke, readline, libxslt }:
stdenv.mkDerivation rec {
pname = "fvwm";
version = "2.6.9";
- src = fetchurl {
- url = "https://github.com/fvwmorg/fvwm/releases/download/${version}/${pname}-${version}.tar.gz";
- sha256 = "1bliqcnap7vb3m2rn8wvxyfhbf35h9x34s41fl4301yhrkrlrihv";
+ src = fetchFromGitHub {
+ owner = "fvwmorg";
+ repo = pname;
+ rev = version;
+ sha256 = "14jwckhikc9n4h93m00pzjs7xm2j0dcsyzv3q5vbcnknp6p4w5dh";
};
- nativeBuildInputs = [ pkg-config ];
+ nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [
- cairo fontconfig freetype
- libXft libXcursor libXinerama libXpm libXt
- librsvg libpng fribidi perl
- ] ++ lib.optional gestures libstroke;
+ cairo
+ fontconfig
+ freetype
+ libXft
+ libXcursor
+ libXinerama
+ libXpm
+ libXt
+ librsvg
+ libpng
+ fribidi
+ perl
+ readline
+ libxslt
+ ] ++ lib.optional enableGestures libstroke;
+
+ configureFlags = [ "--enable-mandoc" "--disable-htmldoc" ];
meta = {
homepage = "http://fvwm.org";
diff --git a/pkgs/applications/window-managers/i3/wsr.nix b/pkgs/applications/window-managers/i3/wsr.nix
index 97da815b5d7..6799473470b 100644
--- a/pkgs/applications/window-managers/i3/wsr.nix
+++ b/pkgs/applications/window-managers/i3/wsr.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "i3wsr";
- version = "1.3.1";
+ version = "2.0.0";
src = fetchFromGitHub {
owner = "roosta";
repo = pname;
rev = "v${version}";
- sha256 = "1zpyncg29y8cv5nw0vgd69nywbj1ppxf6qfm4zc6zz0gk0vxy4pn";
+ sha256 = "sha256-PluczllPRlfzoM2y552YJirrX5RQZQAkBQkner7fWhU=";
};
- cargoSha256 = "0snys419d32anf73jcvrq8h9kp1fq0maqcxz6ww04yg2jv6j47nc";
+ cargoSha256 = "sha256-GwRiyAHTcRoByxUViXSwslb+IAP6LK8IWZ0xICQ8qag=";
nativeBuildInputs = [ python3 ];
buildInputs = [ libxcb ];
diff --git a/pkgs/applications/window-managers/neocomp/default.nix b/pkgs/applications/window-managers/neocomp/default.nix
index bf017ae085a..e878f4f088e 100644
--- a/pkgs/applications/window-managers/neocomp/default.nix
+++ b/pkgs/applications/window-managers/neocomp/default.nix
@@ -16,27 +16,30 @@
, libXinerama
, libXrandr
, libXrender
+, libXres
, pcre
, pkg-config
}:
-let
- rev = "v0.6-17-g271e784";
-in
+
stdenv.mkDerivation rec {
- pname = "neocomp-unstable";
- version = "2019-03-12";
+ pname = "neocomp";
+ version = "unstable-2021-04-06";
src = fetchFromGitHub {
- inherit rev;
- owner = "DelusionalLogic";
- repo = "NeoComp";
- sha256 = "1mp338vz1jm5pwf7pi5azx4hzykmvpkwzx1kw6a9anj272f32zpg";
+ owner = "DelusionalLogic";
+ repo = "NeoComp";
+ rev = "ccd340d7b2dcd3f828aff958a638cc23686aee6f";
+ sha256 = "sha256-tLLEwpAGNVTC+N41bM7pfskIli4Yvc95wH2/NT0OZ+8=";
};
- buildInputs = [
+ nativeBuildInputs = [
asciidoc
docbook_xml_dtd_45
docbook_xsl
+ pkg-config
+ ];
+
+ buildInputs = [
freetype
judy
libGL
@@ -50,15 +53,15 @@ stdenv.mkDerivation rec {
libXinerama
libXrandr
libXrender
+ libXres
pcre
- pkg-config
];
makeFlags = [
"PREFIX=${placeholder "out"}"
"CFGDIR=${placeholder "out"}/etc/xdg/neocomp"
"ASTDIR=${placeholder "out"}/share/neocomp/assets"
- "COMPTON_VERSION=git-${rev}-${version}"
+ "COMPTON_VERSION=${version}"
];
postPatch = ''
@@ -72,8 +75,8 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/DelusionalLogic/NeoComp";
- license = licenses.gpl3;
- maintainers = with maintainers; [ twey ];
+ license = licenses.gpl3Only;
+ maintainers = with maintainers; [ twey fortuneteller2k ];
platforms = platforms.linux;
description = "A fork of Compton, a compositor for X11";
longDescription = ''
diff --git a/pkgs/applications/window-managers/sway/lock-effects.nix b/pkgs/applications/window-managers/sway/lock-effects.nix
index eff8710ebfc..25714f1f8a9 100644
--- a/pkgs/applications/window-managers/sway/lock-effects.nix
+++ b/pkgs/applications/window-managers/sway/lock-effects.nix
@@ -1,18 +1,27 @@
-{ lib, stdenv, fetchFromGitHub,
- meson, ninja, pkg-config, scdoc,
- wayland, wayland-protocols, libxkbcommon,
- cairo, gdk-pixbuf, pam
+{ lib
+, stdenv
+, fetchFromGitHub
+, meson
+, ninja
+, pkg-config
+, scdoc
+, wayland
+, wayland-protocols
+, libxkbcommon
+, cairo
+, gdk-pixbuf
+, pam
}:
stdenv.mkDerivation rec {
pname = "swaylock-effects";
- version = "v1.6-2";
+ version = "1.6-3";
src = fetchFromGitHub {
owner = "mortie";
repo = "swaylock-effects";
- rev = version;
- sha256 = "0fs3c4liajgkax0a2pdc7117v1g9k73nv87g3kyv9wsnkfbbz534";
+ rev = "v${version}";
+ sha256 = "sha256-71IX0fC4xCPP6pK63KtvDMb3KoP1rw/Iz3S7BgiLSpg=";
};
postPatch = ''
@@ -23,7 +32,9 @@ stdenv.mkDerivation rec {
buildInputs = [ wayland wayland-protocols libxkbcommon cairo gdk-pixbuf pam ];
mesonFlags = [
- "-Dpam=enabled" "-Dgdk-pixbuf=enabled" "-Dman-pages=enabled"
+ "-Dpam=enabled"
+ "-Dgdk-pixbuf=enabled"
+ "-Dman-pages=enabled"
];
meta = with lib; {
diff --git a/pkgs/build-support/build-fhs-userenv/env.nix b/pkgs/build-support/build-fhs-userenv/env.nix
index 89b567a249f..226904f311b 100644
--- a/pkgs/build-support/build-fhs-userenv/env.nix
+++ b/pkgs/build-support/build-fhs-userenv/env.nix
@@ -81,6 +81,9 @@ let
# compatibility with NixOS
ln -s /host/etc/static static
+ # symlink nix config
+ ln -s /host/etc/nix nix
+
# symlink some NSS stuff
ln -s /host/etc/passwd passwd
ln -s /host/etc/group group
diff --git a/pkgs/data/fonts/andagii/default.nix b/pkgs/data/fonts/andagii/default.nix
index 700680a54b2..6d0b5f483ec 100644
--- a/pkgs/data/fonts/andagii/default.nix
+++ b/pkgs/data/fonts/andagii/default.nix
@@ -20,7 +20,7 @@ in fetchzip {
meta = with lib; {
homepage = "http://www.i18nguy.com/unicode/unicode-font.html";
description = "Unicode Plane 1 Osmanya script font";
- maintainers = with maintainers; [ raskin rycee ];
+ maintainers = with maintainers; [ raskin ];
license = "unknown";
platforms = platforms.all;
};
diff --git a/pkgs/data/fonts/anonymous-pro/default.nix b/pkgs/data/fonts/anonymous-pro/default.nix
index 0f8289fe18a..cb6ec6d8944 100644
--- a/pkgs/data/fonts/anonymous-pro/default.nix
+++ b/pkgs/data/fonts/anonymous-pro/default.nix
@@ -23,7 +23,7 @@ in fetchzip rec {
most Western and Central European Latin-based languages, plus
Greek and Cyrillic. It is designed by Mark Simonson.
'';
- maintainers = with maintainers; [ raskin rycee ];
+ maintainers = with maintainers; [ raskin ];
license = licenses.ofl;
platforms = platforms.all;
};
diff --git a/pkgs/data/fonts/font-awesome-5/default.nix b/pkgs/data/fonts/font-awesome-5/default.nix
index bcf02f1328e..7f251232ebc 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.2";
- sha256 = "0bg28zn2lhrcyj7mbavphkvw3hrbnjsnn84305ax93nj3qd0d4hx";
+ version = "5.15.3";
+ sha256 = "sha256-EDxk/yO3nMmtM/ytrAEgPYSBbep3rA3NrKkiqf3OsU0=";
};
}
diff --git a/pkgs/data/fonts/inconsolata/default.nix b/pkgs/data/fonts/inconsolata/default.nix
index 530bb0380d2..327b7fa2ca5 100644
--- a/pkgs/data/fonts/inconsolata/default.nix
+++ b/pkgs/data/fonts/inconsolata/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
meta = with lib; {
homepage = "https://www.levien.com/type/myfonts/inconsolata.html";
description = "A monospace font for both screen and print";
- maintainers = with maintainers; [ mikoim raskin rycee ];
+ maintainers = with maintainers; [ mikoim raskin ];
license = licenses.ofl;
platforms = platforms.all;
};
diff --git a/pkgs/data/fonts/mononoki/default.nix b/pkgs/data/fonts/mononoki/default.nix
index 195c39c0e81..d48332b4a27 100644
--- a/pkgs/data/fonts/mononoki/default.nix
+++ b/pkgs/data/fonts/mononoki/default.nix
@@ -1,7 +1,7 @@
{ lib, fetchzip }:
let
- version = "1.2";
+ version = "1.3";
in fetchzip {
name = "mononoki-${version}";
@@ -12,7 +12,7 @@ in fetchzip {
unzip -j $downloadedFile -d $out/share/fonts/mononoki
'';
- sha256 = "19y4xg7ilm21h9yynyrwcafdqn05zknpmmjrb37qim6p0cy2glff";
+ sha256 = "sha256-K2uOpJRmQ1NcDZfh6rorCF0MvGHFCsSW8J7Ue9OC/OY=";
meta = with lib; {
homepage = "https://github.com/madmalik/mononoki";
diff --git a/pkgs/data/fonts/oldstandard/default.nix b/pkgs/data/fonts/oldstandard/default.nix
index 5284ec7e119..ddff3666b0b 100644
--- a/pkgs/data/fonts/oldstandard/default.nix
+++ b/pkgs/data/fonts/oldstandard/default.nix
@@ -18,7 +18,7 @@ in fetchzip rec {
meta = with lib; {
homepage = "https://github.com/akryukov/oldstand";
description = "An attempt to revive a specific type of Modern style of serif typefaces";
- maintainers = with maintainers; [ raskin rycee ];
+ maintainers = with maintainers; [ raskin ];
license = licenses.ofl;
platforms = platforms.all;
};
diff --git a/pkgs/data/fonts/undefined-medium/default.nix b/pkgs/data/fonts/undefined-medium/default.nix
index 4c13a297c6f..5773aa94d5b 100644
--- a/pkgs/data/fonts/undefined-medium/default.nix
+++ b/pkgs/data/fonts/undefined-medium/default.nix
@@ -21,7 +21,6 @@ fetchzip rec {
whatever else you can think of … it’s pretty undefined.
'';
license = licenses.ofl;
- maintainers = [ maintainers.rycee ];
platforms = platforms.all;
};
}
diff --git a/pkgs/data/icons/beauty-line-icon-theme/default.nix b/pkgs/data/icons/beauty-line-icon-theme/default.nix
new file mode 100644
index 00000000000..2942315f7da
--- /dev/null
+++ b/pkgs/data/icons/beauty-line-icon-theme/default.nix
@@ -0,0 +1,39 @@
+{ lib, stdenv, fetchzip, breeze-icons, gtk3, gnome-icon-theme, hicolor-icon-theme, mint-x-icons, pantheon }:
+
+stdenv.mkDerivation rec {
+ pname = "BeautyLine";
+ version = "0.0.1";
+
+ src = fetchzip {
+ name = "${pname}-${version}";
+ url = "https://github.com/gvolpe/BeautyLine/releases/download/${version}/BeautyLine.tar.gz";
+ sha256 = "030bjk333fr9wm1nc740q8i31rfsgf3vg6cvz36xnvavx3q363l7";
+ };
+
+ nativeBuildInputs = [ gtk3 ];
+
+ # ubuntu-mono is also required but missing in ubuntu-themes (please add it if it is packaged at some point)
+ propagatedBuildInputs = [
+ breeze-icons
+ gnome-icon-theme
+ hicolor-icon-theme
+ mint-x-icons
+ pantheon.elementary-icon-theme
+ ];
+
+ dontDropIconThemeCache = true;
+
+ installPhase = ''
+ mkdir -p $out/share/icons/${pname}
+ cp -r * $out/share/icons/${pname}/
+ gtk-update-icon-cache $out/share/icons/${pname}
+ '';
+
+ meta = with lib; {
+ description = "BeautyLine icon theme";
+ homepage = "https://www.gnome-look.org/p/1425426/";
+ platforms = platforms.linux;
+ license = [ licenses.publicDomain ];
+ maintainers = with maintainers; [ gvolpe ];
+ };
+}
diff --git a/pkgs/data/icons/luna-icons/default.nix b/pkgs/data/icons/luna-icons/default.nix
index ff907e91bf9..0a0cba1e98e 100644
--- a/pkgs/data/icons/luna-icons/default.nix
+++ b/pkgs/data/icons/luna-icons/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchFromGitHub
, gtk3
, breeze-icons
@@ -8,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "luna-icons";
- version = "1.1";
+ version = "1.2";
src = fetchFromGitHub {
owner = "darkomarko42";
repo = pname;
rev = version;
- sha256 = "11g740x1asy7jbfn52gp1zx7hzhklw6f97m469wgyi9yf954js15";
+ sha256 = "0kjnmclil21m9vgybk958nzzlbwryp286rajlgxg05wgjnby4cxk";
};
nativeBuildInputs = [
diff --git a/pkgs/data/themes/flat-remix-gtk/default.nix b/pkgs/data/themes/flat-remix-gtk/default.nix
new file mode 100644
index 00000000000..afdf478fea0
--- /dev/null
+++ b/pkgs/data/themes/flat-remix-gtk/default.nix
@@ -0,0 +1,33 @@
+{ stdenv
+, lib
+, fetchFromGitHub
+, gtk-engine-murrine
+}:
+
+stdenv.mkDerivation rec {
+ pname = "flat-remix-gtk";
+ version = "20201129";
+
+ src = fetchFromGitHub {
+ owner = "daniruiz";
+ repo = pname;
+ rev = version;
+ hash = "sha256-lAlHRVB/P3A1qWsXQZPZ3uhgctR4FLa+ocUrsbleXJU=";
+ };
+
+ dontBuild = true;
+
+ makeFlags = [ "PREFIX=$(out)" ];
+
+ propagatedUserEnvPkgs = [
+ gtk-engine-murrine
+ ];
+
+ meta = with lib; {
+ description = "GTK application theme inspired by material design";
+ homepage = "https://drasite.com/flat-remix-gtk";
+ license = licenses.gpl3Only;
+ platforms = platforms.all;
+ maintainers = [ maintainers.mkg20001 ];
+ };
+}
diff --git a/pkgs/data/themes/orchis/default.nix b/pkgs/data/themes/orchis/default.nix
index cf479021fb1..a53e2f79f6a 100644
--- a/pkgs/data/themes/orchis/default.nix
+++ b/pkgs/data/themes/orchis/default.nix
@@ -1,18 +1,25 @@
-{ lib, stdenv, fetchFromGitHub, gtk3, gnome-themes-extra, gtk-engine-murrine
-, accentColor ? "default" }:
+{ lib
+, stdenvNoCC
+, fetchFromGitHub
+, gtk3
+, gnome-themes-extra
+, gtk-engine-murrine
+, sassc
+, accentColor ? "default"
+}:
-stdenv.mkDerivation rec {
+stdenvNoCC.mkDerivation rec {
pname = "orchis";
- version = "2021-02-28";
+ version = "2021-04-20";
src = fetchFromGitHub {
repo = "Orchis-theme";
owner = "vinceliuice";
rev = version;
- sha256 = "sha256-HmC2e34n1eThFGgw9OzSgp5VFJOylyozpXgk9SO84+I=";
+ sha256 = "sha256-cCUmainVTqFztZGpL2z2Zj6zcE2SQBWrec6yNFUMo5M=";
};
- nativeBuildInputs = [ gtk3 ];
+ nativeBuildInputs = [ gtk3 sassc ];
buildInputs = [ gnome-themes-extra ];
diff --git a/pkgs/data/themes/vertex/default.nix b/pkgs/data/themes/vertex/default.nix
index d25df29013b..cff886440e3 100644
--- a/pkgs/data/themes/vertex/default.nix
+++ b/pkgs/data/themes/vertex/default.nix
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
description = "Theme for GTK 3, GTK 2, Gnome-Shell, and Cinnamon";
license = licenses.gpl3;
platforms = platforms.unix;
- maintainers = with maintainers; [ rycee romildo ];
+ maintainers = with maintainers; [ romildo ];
};
}
diff --git a/pkgs/desktops/cinnamon/cinnamon-common/default.nix b/pkgs/desktops/cinnamon/cinnamon-common/default.nix
index 11fcdb7452b..127516e58c1 100644
--- a/pkgs/desktops/cinnamon/cinnamon-common/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-common/default.nix
@@ -1,5 +1,4 @@
{ atk
-, autoreconfHook
, cacert
, fetchpatch
, dbus
@@ -42,32 +41,25 @@
, pciutils
, timezonemap
, libnma
+, meson
+, ninja
+, gst_all_1
}:
-let
- libcroco = callPackage ./libcroco.nix { };
-in
stdenv.mkDerivation rec {
pname = "cinnamon-common";
- version = "4.6.1";
+ version = "4.8.6";
src = fetchFromGitHub {
owner = "linuxmint";
repo = "cinnamon";
rev = version;
- sha256 = "149lhg953fa0glm250f76z2jzyaabh97jxiqkjnqvsk6bjk1d0bw";
+ hash = "sha256-4DMXQYH1/RjLhgrn55I7Vkk6+gGsR+OVmiwxVHUIyro=";
};
patches = [
- # remove dbus-glib
- (fetchpatch {
- url = "https://github.com/linuxmint/cinnamon/commit/ce99760fa15c3de2e095b9a5372eeaca646fbed1.patch";
- sha256 = "0p2sbdi5w7sgblqbgisb6f8lcj1syzq5vlk0ilvwaqayxjylg8gz";
- })
- (fetchpatch {
- url = "https://leigh123linux.fedorapeople.org/pub/patches/new_cjs.patch";
- sha256 = "07biv3vkbn3jzijbdrxcw73p8xz2djbsax014mlkvmryrmys0rg4";
- })
+ ./use-sane-install-dir.patch
+ ./libdir.patch
];
buildInputs = [
@@ -84,7 +76,6 @@ stdenv.mkDerivation rec {
glib
gtk3
json-glib
- libcroco
libsoup
libstartup_notification
libXtst
@@ -94,6 +85,7 @@ stdenv.mkDerivation rec {
polkit
libxml2
libgnomekbd
+ gst_all_1.gstreamer
# bindings
cairo
@@ -114,23 +106,16 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
gobject-introspection
- autoreconfHook
+ meson
+ ninja
wrapGAppsHook
intltool
gtk-doc
];
- autoreconfPhase = ''
- GTK_DOC_CHECK=false NOCONFIGURE=1 bash ./autogen.sh
- '';
-
configureFlags = [ "--disable-static" "--with-ca-certificates=${cacert}/etc/ssl/certs/ca-bundle.crt" "--with-libxml=${libxml2.dev}/include/libxml2" "--enable-gtk-doc=no" ];
postPatch = ''
- substituteInPlace src/Makefile.am \
- --replace "\$(libdir)/muffin" "${muffin}/lib/muffin"
- patchShebangs autogen.sh
-
find . -type f -exec sed -i \
-e s,/usr/share/cinnamon,$out/share/cinnamon,g \
-e s,/usr/share/locale,/run/current-system/sw/share/locale,g \
diff --git a/pkgs/desktops/cinnamon/cinnamon-common/libcroco.nix b/pkgs/desktops/cinnamon/cinnamon-common/libcroco.nix
deleted file mode 100644
index d1ec77b7050..00000000000
--- a/pkgs/desktops/cinnamon/cinnamon-common/libcroco.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ lib, stdenv, fetchurl, pkg-config, libxml2, glib, gnome3 }:
-
-stdenv.mkDerivation rec {
- pname = "libcroco";
- version = "0.6.13";
-
- src = fetchurl {
- url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
- sha256 = "1m110rbj5d2raxcdp4iz0qp172284945awrsbdlq99ksmqsc4zkn";
- };
-
- outputs = [ "out" "dev" ];
- outputBin = "dev";
-
- configureFlags = lib.optional stdenv.isDarwin "--disable-Bsymbolic";
-
- nativeBuildInputs = [ pkg-config ];
- buildInputs = [ libxml2 glib ];
-
- passthru = {
- updateScript = gnome3.updateScript {
- packageName = pname;
- };
- };
-
- meta = with lib; {
- description = "GNOME CSS2 parsing and manipulation toolkit";
- homepage = https://gitlab.gnome.org/GNOME/libcroco;
- license = licenses.lgpl2;
- platforms = platforms.unix;
- };
-}
-
diff --git a/pkgs/desktops/cinnamon/cinnamon-common/libdir.patch b/pkgs/desktops/cinnamon/cinnamon-common/libdir.patch
new file mode 100644
index 00000000000..7783d0b3ad1
--- /dev/null
+++ b/pkgs/desktops/cinnamon/cinnamon-common/libdir.patch
@@ -0,0 +1,25 @@
+From 1c99ff9b042d77d97a0841c78fceb7cfbf41aa8b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Maciej=20Kr=C3=BCger?=
+Date: Sun, 28 Feb 2021 05:58:09 +0100
+Subject: [PATCH] libdir patch
+
+---
+ meson.build | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/meson.build b/meson.build
+index 3c1e9a4f..a77d9b3c 100644
+--- a/meson.build
++++ b/meson.build
+@@ -14,7 +14,7 @@ includedir = get_option('includedir')
+ libexecdir = get_option('libexecdir')
+ desktopdir = join_paths(datadir, 'applications')
+ schemadir = join_paths(datadir, 'glib-2.0', 'schemas')
+-pkglibdir = join_paths(libdir, meson.project_name().to_lower())
++pkglibdir = libdir
+ servicedir = join_paths(datadir, 'dbus-1', 'services')
+ pkgdatadir = join_paths(datadir, meson.project_name().to_lower())
+ po_dir = join_paths(meson.source_root(), 'po')
+--
+2.30.0
+
diff --git a/pkgs/desktops/cinnamon/cinnamon-common/use-sane-install-dir.patch b/pkgs/desktops/cinnamon/cinnamon-common/use-sane-install-dir.patch
new file mode 100644
index 00000000000..8cb6949cb2d
--- /dev/null
+++ b/pkgs/desktops/cinnamon/cinnamon-common/use-sane-install-dir.patch
@@ -0,0 +1,33 @@
+From f7e802959d7a5c217ed574cab30404fc769f174d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Maciej=20Kr=C3=BCger?=
+Date: Sat, 6 Feb 2021 14:26:26 +0100
+Subject: [PATCH] use sane install dir
+
+---
+ meson.build | 10 ++++++++--
+ 1 file changed, 8 insertions(+), 2 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index bd803f20..3c1e9a4f 100644
+--- a/meson.build
++++ b/meson.build
+@@ -127,8 +127,14 @@ configure_file(
+ )
+
+ install_subdir(
+- 'files',
+- install_dir: '/',
++ 'files/usr',
++ install_dir: get_option('prefix'),
++ strip_directory: true,
++)
++
++install_subdir(
++ 'files/etc',
++ install_dir: join_paths(get_option('prefix'), 'etc'),
+ strip_directory: true,
+ )
+
+--
+2.30.0
+
diff --git a/pkgs/desktops/cinnamon/cinnamon-control-center/default.nix b/pkgs/desktops/cinnamon/cinnamon-control-center/default.nix
index 4e951bfcc58..c2e50c65557 100644
--- a/pkgs/desktops/cinnamon/cinnamon-control-center/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-control-center/default.nix
@@ -1,11 +1,9 @@
{ lib, stdenv
, fetchFromGitHub
, pkg-config
-, autoreconfHook
, glib
, gettext
, cinnamon-desktop
-, intltool
, gtk3
, libnotify
, libxml2
@@ -20,7 +18,7 @@
, libxklavier
, networkmanager
, libwacom
-, libtool
+, gnome3
, wrapGAppsHook
, tzdata
, glibc
@@ -28,17 +26,19 @@
, modemmanager
, xorg
, gdk-pixbuf
+, meson
+, ninja
}:
stdenv.mkDerivation rec {
pname = "cinnamon-control-center";
- version = "4.6.2";
+ version = "4.8.2";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "0fbgi2r2xikpa04k431qq9akngi9akyflq1kcks8f095qs5gsana";
+ hash = "sha256-vALThDY0uN9bV7b1fga3MK7b2/l5uL33+B2x6oSLPRE=";
};
buildInputs = [
@@ -70,16 +70,11 @@ stdenv.mkDerivation rec {
./panels/datetime/tz.h:34:# define TZ_DATA_FILE "/usr/share/lib/zoneinfo/tab/zone_sun.tab" */
postPatch = ''
- patchShebangs ./autogen.sh
sed 's|TZ_DIR "/usr/share/zoneinfo/"|TZ_DIR "${tzdata}/share/zoneinfo/"|g' -i ./panels/datetime/test-timezone.c
sed 's|TZ_DATA_FILE "/usr/share/zoneinfo/zone.tab"|TZ_DATA_FILE "${tzdata}/share/zoneinfo/zone.tab"|g' -i ./panels/datetime/tz.h
sed 's|"/usr/share/i18n/locales/"|"${glibc}/share/i18n/locales/"|g' -i panels/datetime/test-endianess.c
'';
- autoreconfPhase = ''
- NOCONFIGURE=1 bash ./autogen.sh
- '';
-
# it needs to have access to that file, otherwise we can't run tests after build
preBuild = ''
@@ -87,19 +82,23 @@ stdenv.mkDerivation rec {
ln -s $PWD/panels/datetime $out/share/cinnamon-control-center/
'';
+ mesonFlags = [
+ "-Dc_args=-I${glib.dev}/include/gio-unix-2.0"
+ ];
+
preInstall = ''
- rm -rfv $out
+ rm -r $out
'';
- doCheck = true;
+ # the only test is wacom-calibrator and it seems to need an xserver and prob more services aswell
+ doCheck = false;
nativeBuildInputs = [
pkg-config
- autoreconfHook
+ meson
+ ninja
wrapGAppsHook
gettext
- intltool
- libtool
];
meta = with lib; {
diff --git a/pkgs/desktops/cinnamon/cinnamon-desktop/default.nix b/pkgs/desktops/cinnamon/cinnamon-desktop/default.nix
index cdcabb1261f..25af38d43b5 100644
--- a/pkgs/desktops/cinnamon/cinnamon-desktop/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-desktop/default.nix
@@ -17,13 +17,13 @@
stdenv.mkDerivation rec {
pname = "cinnamon-desktop";
- version = "4.6.4";
+ version = "4.8.1";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "08z5hgc6dwdp9fczm75axwh8q9665iz4y2lxp92xp62r3k0v9fvd";
+ hash = "sha256-FLruY1lxzB3iJ/So3jSjrbv9e8VoN/0+U2YDXju/u3E=";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/desktops/cinnamon/cinnamon-menus/default.nix b/pkgs/desktops/cinnamon/cinnamon-menus/default.nix
index a1771506477..44566a94c6d 100644
--- a/pkgs/desktops/cinnamon/cinnamon-menus/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-menus/default.nix
@@ -10,13 +10,13 @@
stdenv.mkDerivation rec {
pname = "cinnamon-menus";
- version = "4.6.1";
+ version = "4.8.2";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "1qdaql4mknhzvl2qi1pyw4c820lqb7lg07gblh0wzfk4f7h8hddx";
+ hash = "sha256-9VSrqCjC8U3js1gqjl5QFctWYECATxN+AdfMdHLxYUY=";
};
buildInputs = [
diff --git a/pkgs/desktops/cinnamon/cinnamon-screensaver/default.nix b/pkgs/desktops/cinnamon/cinnamon-screensaver/default.nix
index 0e8f6dbf8c3..39dee473cc5 100644
--- a/pkgs/desktops/cinnamon/cinnamon-screensaver/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-screensaver/default.nix
@@ -23,27 +23,19 @@
, xapps
, xorg
, iso-flags-png-320x420
-, fetchpatch
}:
stdenv.mkDerivation rec {
pname = "cinnamon-screensaver";
- version = "4.6.0";
+ version = "4.8.1";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "068lh6wcmznfyvny7hx83q2rf4j96b6mv4a5v79y02k9110m7bsm";
+ hash = "sha256-gvSGxSYKnRqJhj2unRYRHp6qGw/O9SxKPzhw5xjCSSQ=";
};
- patches = [
- (fetchpatch {
- url = "https://github.com/linuxmint/cinnamon-screensaver/pull/349/commits/4a9e5715f406bf2ca1aacddd5fd8f830102a423c.patch";
- sha256 = "0fmkmskry4c88zcw0i8vsmh6q14k3m937hqi77p5xi1p93imr46y";
- })
- ];
-
nativeBuildInputs = [
pkg-config
wrapGAppsHook
diff --git a/pkgs/desktops/cinnamon/cinnamon-session/default.nix b/pkgs/desktops/cinnamon/cinnamon-session/default.nix
index 3d63846026a..ba20bce4100 100644
--- a/pkgs/desktops/cinnamon/cinnamon-session/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-session/default.nix
@@ -27,13 +27,13 @@
stdenv.mkDerivation rec {
pname = "cinnamon-session";
- version = "4.6.2";
+ version = "4.8.0";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "133vpgs0dqr16pvx5wyxhfcargn9wl14z0q99m2pn93hf6zycmsv";
+ hash = "sha256-lrwR8VSdPzHoc9MeBEQPbVfWNhPZDJ2wYizKSVpobmk=";
};
patches = [
diff --git a/pkgs/desktops/cinnamon/cinnamon-settings-daemon/csd-backlight-helper-fix.patch b/pkgs/desktops/cinnamon/cinnamon-settings-daemon/csd-backlight-helper-fix.patch
index 967ba98eb48..a11660bdb11 100644
--- a/pkgs/desktops/cinnamon/cinnamon-settings-daemon/csd-backlight-helper-fix.patch
+++ b/pkgs/desktops/cinnamon/cinnamon-settings-daemon/csd-backlight-helper-fix.patch
@@ -1,4 +1,4 @@
-From 6d71bf9764fb81d437678a603826167850bbf453 Mon Sep 17 00:00:00 2001
+From 7fa408ebd72c9f1ff7ff4e9d7f4a811465a8a41b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Maciej=20Kr=C3=BCger?=
Date: Tue, 21 Jan 2020 03:19:28 +0100
Subject: [PATCH] fix: use an impure path to csd-backlight-helper to fix
@@ -6,35 +6,35 @@ Subject: [PATCH] fix: use an impure path to csd-backlight-helper to fix
---
plugins/power/csd-power-manager.c | 4 ++--
- .../org.cinnamon.settings-daemon.plugins.power.policy.in.in | 2 +-
+ .../org.cinnamon.settings-daemon.plugins.power.policy.in | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/plugins/power/csd-power-manager.c b/plugins/power/csd-power-manager.c
-index b24c456..212c47e 100755
+index 33f4489..84dd98b 100644
--- a/plugins/power/csd-power-manager.c
+++ b/plugins/power/csd-power-manager.c
-@@ -2519,7 +2519,7 @@ backlight_helper_get_value (const gchar *argument, CsdPowerManager* manager,
+@@ -2529,7 +2529,7 @@ backlight_helper_get_value (const gchar *argument, CsdPowerManager* manager,
#endif
-
+
/* get the data */
- command = g_strdup_printf (LIBEXECDIR "/csd-backlight-helper --%s %s",
+ command = g_strdup_printf ("/run/current-system/sw/bin/cinnamon-settings-daemon/csd-backlight-helper --%s %s",
argument,
manager->priv->backlight_helper_preference_args);
ret = g_spawn_command_line_sync (command,
-@@ -2609,7 +2609,7 @@ backlight_helper_set_value (const gchar *argument,
+@@ -2619,7 +2619,7 @@ backlight_helper_set_value (const gchar *argument,
#endif
-
+
/* get the data */
- command = g_strdup_printf ("pkexec " LIBEXECDIR "/csd-backlight-helper --%s %i %s",
+ command = g_strdup_printf ("pkexec " "/run/current-system/sw/bin/cinnamon-settings-daemon/csd-backlight-helper --%s %i %s",
argument, value,
manager->priv->backlight_helper_preference_args);
ret = g_spawn_command_line_sync (command,
-diff --git a/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in.in b/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in.in
-index 2c44e62..c0a2348 100755
---- a/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in.in
-+++ b/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in.in
+diff --git a/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in b/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in
+index 504f017..3569e8c 100644
+--- a/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in
++++ b/plugins/power/org.cinnamon.settings-daemon.plugins.power.policy.in
@@ -25,7 +25,7 @@
no
yes
@@ -42,7 +42,8 @@ index 2c44e62..c0a2348 100755
- @libexecdir@/csd-backlight-helper
+ /run/current-system/sw/bin/cinnamon-settings-daemon/csd-backlight-helper
-
+
---
-2.24.1
+--
+2.30.0
+
diff --git a/pkgs/desktops/cinnamon/cinnamon-settings-daemon/default.nix b/pkgs/desktops/cinnamon/cinnamon-settings-daemon/default.nix
index c5bae4e5767..3df8760c858 100644
--- a/pkgs/desktops/cinnamon/cinnamon-settings-daemon/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-settings-daemon/default.nix
@@ -1,12 +1,9 @@
{ fetchFromGitHub
-, autoconf-archive
-, autoreconfHook
, cinnamon-desktop
, colord
, glib
, gsettings-desktop-schemas
, gtk3
-, intltool
, lcms2
, libcanberra-gtk3
, libgnomekbd
@@ -29,11 +26,15 @@
, tzdata
, nss
, libgudev
+, meson
+, ninja
+, dbus
+, dbus-glib
}:
stdenv.mkDerivation rec {
pname = "cinnamon-settings-daemon";
- version = "4.6.4";
+ version = "4.8.5";
/* csd-power-manager.c:50:10: fatal error: csd-power-proxy.h: No such file or directory
#include "csd-power-proxy.h"
@@ -48,14 +49,15 @@ stdenv.mkDerivation rec {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "1xcjzjfwnzvkv9jiyw8adsjyhz92almzhyfwb91115774zgqnb7m";
+ hash = "sha256-PAWVTjGFs8yKXgNQ2ucDnEDS+n7bp2n3lhGl9gHXfdQ=";
};
patches = [
./csd-backlight-helper-fix.patch
+ ./use-sane-install-dir.patch
];
- NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0"; # TODO: https://github.com/NixOS/nixpkgs/issues/36468
+ mesonFlags = [ "-Dc_args=-I${glib.dev}/include/gio-unix-2.0" ];
buildInputs = [
cinnamon-desktop
@@ -85,13 +87,14 @@ stdenv.mkDerivation rec {
fontconfig
nss
libgudev
+ dbus
+ dbus-glib
];
nativeBuildInputs = [
- autoconf-archive
- autoreconfHook
+ meson
+ ninja
wrapGAppsHook
- intltool
pkg-config
];
diff --git a/pkgs/desktops/cinnamon/cinnamon-settings-daemon/use-sane-install-dir.patch b/pkgs/desktops/cinnamon/cinnamon-settings-daemon/use-sane-install-dir.patch
new file mode 100644
index 00000000000..d980431f81b
--- /dev/null
+++ b/pkgs/desktops/cinnamon/cinnamon-settings-daemon/use-sane-install-dir.patch
@@ -0,0 +1,27 @@
+From be57c01e6595a8e08ecc17de298e30640b532f11 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Maciej=20Kr=C3=BCger?=
+Date: Sat, 6 Feb 2021 13:55:03 +0100
+Subject: [PATCH] use sane install-dir
+
+---
+ meson.build | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index 0e11d50..54f4637 100644
+--- a/meson.build
++++ b/meson.build
+@@ -156,8 +156,8 @@ subdir('cinnamon-settings-daemon')
+ subdir('plugins')
+
+ install_subdir(
+- 'files',
+- install_dir: '/',
++ 'files/usr',
++ install_dir: get_option('prefix'),
+ strip_directory: true,
+ )
+
+--
+2.30.0
+
diff --git a/pkgs/desktops/cinnamon/cinnamon-translations/default.nix b/pkgs/desktops/cinnamon/cinnamon-translations/default.nix
index 24bb3822868..dafb5f4b3fe 100644
--- a/pkgs/desktops/cinnamon/cinnamon-translations/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-translations/default.nix
@@ -1,17 +1,18 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchFromGitHub
, gettext
}:
stdenv.mkDerivation rec {
pname = "cinnamon-translations";
- version = "4.6.2";
+ version = "4.8.3";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "0zaghha62ibhg3rir6mrfy1z3v7p7v83b6glhmj9s51nxd86fyv6";
+ hash = "sha256-o/JFfwloXLUOy9YQzHtMCuzK7yBp/G43VS/RguxiTPY=";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/cinnamon/cjs/default.nix b/pkgs/desktops/cinnamon/cjs/default.nix
index 184c1438196..3c01d003937 100644
--- a/pkgs/desktops/cinnamon/cjs/default.nix
+++ b/pkgs/desktops/cinnamon/cjs/default.nix
@@ -2,7 +2,8 @@
, fetchFromGitHub
, gobject-introspection
, pkg-config
-, lib, stdenv
+, lib
+, stdenv
, wrapGAppsHook
, python3
, cairo
@@ -27,14 +28,14 @@
}:
stdenv.mkDerivation rec {
- pname = "cjs-unstable";
- version = "2020-10-19";
+ pname = "cjs";
+ version = "4.8.2";
src = fetchFromGitHub {
owner = "linuxmint";
repo = "cjs";
- rev = "befc11adb5ba10681464e6fa81b1a79f108ce61c";
- hash = "sha256-F2t8uKV2r29NxX2+3mYp5x1bug2lwihJZTK1dSS8rPg=";
+ rev = version;
+ hash = "sha256-6+zlWL0DmyP+RFp1ECA4XGbgYUlsMqqyTd6z46w99Ug=";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/desktops/cinnamon/muffin/default.nix b/pkgs/desktops/cinnamon/muffin/default.nix
index 93079e21d3d..2df5f875b41 100644
--- a/pkgs/desktops/cinnamon/muffin/default.nix
+++ b/pkgs/desktops/cinnamon/muffin/default.nix
@@ -35,13 +35,13 @@
stdenv.mkDerivation rec {
pname = "muffin";
- version = "4.6.3";
+ version = "4.8.1";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "1p8irzf20wari1id5rfx5sypywih1jsrmn0f83zlyhc5fxg02r5p";
+ hash = "sha256-zRW+hnoaKKTe4zIJpY1D0Ahc8k5zRbvYBF5Y4vZ6Rbs=";
};
buildInputs = [
diff --git a/pkgs/desktops/cinnamon/nemo/default.nix b/pkgs/desktops/cinnamon/nemo/default.nix
index 5017c1ce7d5..482fb402e4d 100644
--- a/pkgs/desktops/cinnamon/nemo/default.nix
+++ b/pkgs/desktops/cinnamon/nemo/default.nix
@@ -20,7 +20,7 @@
stdenv.mkDerivation rec {
pname = "nemo";
- version = "4.6.5";
+ version = "4.8.6";
# TODO: add plugins support (see https://github.com/NixOS/nixpkgs/issues/78327)
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "04rgdph9pxdj5wzzv2i0pgyhg3s74nh9jf1ry9z6v5bvv222ili4";
+ hash = "sha256-OUv7l+klu5l1Y7m+iHiq/dDyxH3/hT4k7F9gDuUiGds=";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/desktops/cinnamon/warpinator/default.nix b/pkgs/desktops/cinnamon/warpinator/default.nix
index efcd20457b3..8b316d37f58 100644
--- a/pkgs/desktops/cinnamon/warpinator/default.nix
+++ b/pkgs/desktops/cinnamon/warpinator/default.nix
@@ -17,7 +17,6 @@ python3.pkgs.buildPythonApplication rec {
version = "1.0.8";
format = "other";
- doCheck = false;
src = fetchFromGitHub {
owner = "linuxmint";
diff --git a/pkgs/desktops/gnome-3/extensions/unite/default.nix b/pkgs/desktops/gnome-3/extensions/unite/default.nix
index efb793cb1bd..a2f4e81924e 100644
--- a/pkgs/desktops/gnome-3/extensions/unite/default.nix
+++ b/pkgs/desktops/gnome-3/extensions/unite/default.nix
@@ -1,13 +1,14 @@
{ lib, stdenv, gnome3, fetchFromGitHub, xprop, glib }:
+
stdenv.mkDerivation rec {
pname = "gnome-shell-extension-unite";
- version = "50";
+ version = "52";
src = fetchFromGitHub {
owner = "hardpixel";
repo = "unite-shell";
rev = "v${version}";
- sha256 = "14n9lrjbxcmvcjnh6zbwlc1paqfhbg81lj0y2d35sh1c2fbsb7d9";
+ sha256 = "1zahng79m2gw27fb2sw8zyk2n07qc0hbn02g5mfqzhwk62g97v4y";
};
uuid = "unite@hardpixel.eu";
diff --git a/pkgs/desktops/lxqt/libfm-qt/default.nix b/pkgs/desktops/lxqt/libfm-qt/default.nix
index be1f8a80e78..c28d069d5f1 100644
--- a/pkgs/desktops/lxqt/libfm-qt/default.nix
+++ b/pkgs/desktops/lxqt/libfm-qt/default.nix
@@ -16,13 +16,13 @@
mkDerivation rec {
pname = "libfm-qt";
- version = "0.16.0";
+ version = "0.17.1";
src = fetchFromGitHub {
owner = "lxqt";
repo = "libfm-qt";
rev = version;
- sha256 = "0b52bczqvw4brxv5fszjrl1375yid6xzjm49ns9rx1jw71422w0p";
+ sha256 = "0jdsqvwp81y4ylabrqdc673x80fp41rpp5w7c1v9zmk9k8z4s5ll";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/liblxqt/default.nix b/pkgs/desktops/lxqt/liblxqt/default.nix
index 959afe1b887..b7aa5d95eaf 100644
--- a/pkgs/desktops/lxqt/liblxqt/default.nix
+++ b/pkgs/desktops/lxqt/liblxqt/default.nix
@@ -15,13 +15,13 @@
mkDerivation rec {
pname = "liblxqt";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "1rp26g1ygzzy1cm7md326sv99zjz4y12pa402nlf2vrf2lzbwfmk";
+ sha256 = "0n0pjz5wihchfcji8qal0lw8kzvv3im50v1lbwww4ymrgacz9h4l";
};
nativeBuildInputs = [
@@ -43,6 +43,10 @@ mkDerivation rec {
patches = [ ./fix-application-path.patch ];
postPatch = ''
+ # https://github.com/NixOS/nixpkgs/issues/119766
+ substituteInPlace lxqtbacklight/linux_backend/driver/libbacklight_backend.c \
+ --replace "pkexec lxqt-backlight_backend" "pkexec $out/bin/lxqt-backlight_backend"
+
sed -i "s|\''${POLKITQT-1_POLICY_FILES_INSTALL_DIR}|''${out}/share/polkit-1/actions|" CMakeLists.txt
'';
diff --git a/pkgs/desktops/lxqt/libqtxdg/default.nix b/pkgs/desktops/lxqt/libqtxdg/default.nix
index adb8b8a1161..7abaed7c09a 100644
--- a/pkgs/desktops/lxqt/libqtxdg/default.nix
+++ b/pkgs/desktops/lxqt/libqtxdg/default.nix
@@ -10,13 +10,13 @@
mkDerivation rec {
pname = "libqtxdg";
- version = "3.6.0";
+ version = "3.7.1";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "0wiannhaydnbqd8ni3nflx2s4036grxs8aklcb95j88v3cgr2gck";
+ sha256 = "1x806hdics3d49ys0a2vkln9znidj82qscjnpcqxclxn26xqzd91";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/libsysstat/default.nix b/pkgs/desktops/lxqt/libsysstat/default.nix
index 6f6e432ad9e..8da7675d485 100644
--- a/pkgs/desktops/lxqt/libsysstat/default.nix
+++ b/pkgs/desktops/lxqt/libsysstat/default.nix
@@ -9,13 +9,13 @@
mkDerivation rec {
pname = "libsysstat";
- version = "0.4.4";
+ version = "0.4.5";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "1pbshhg8pjkzkka5f2rxfxal7rb4fjccpgj07kxvgcnqlah27ydk";
+ sha256 = "14q55iayygmjh63zgsb9qa4af766gj9b0jsrmfn85fdiqb8p8yfz";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lximage-qt/default.nix b/pkgs/desktops/lxqt/lximage-qt/default.nix
index b7e30096b76..10e40f4ed9d 100644
--- a/pkgs/desktops/lxqt/lximage-qt/default.nix
+++ b/pkgs/desktops/lxqt/lximage-qt/default.nix
@@ -16,13 +16,13 @@
mkDerivation rec {
pname = "lximage-qt";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "1z2lvfrw9shpvwxva0vf0rk74nj3mmjgxznsgq8r65645fnj5imb";
+ sha256 = "1xajsblk2954crvligvrgwp7q1pj7124xdfnlq9k9q0ya2xc36lx";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-about/default.nix b/pkgs/desktops/lxqt/lxqt-about/default.nix
index 523092d1782..08e21736125 100644
--- a/pkgs/desktops/lxqt/lxqt-about/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-about/default.nix
@@ -14,13 +14,13 @@
mkDerivation rec {
pname = "lxqt-about";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "0m7gan31byy80k9jqfqxx4drvfx0d9savj4shnrabsb3z3fj9h8h";
+ sha256 = "011jcab47iif741azfgvf52my118nwkny5m0pa7nsqyv8ad1fsiw";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-admin/default.nix b/pkgs/desktops/lxqt/lxqt-admin/default.nix
index 8406b909493..a3fd034e336 100644
--- a/pkgs/desktops/lxqt/lxqt-admin/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-admin/default.nix
@@ -15,13 +15,13 @@
mkDerivation rec {
pname = "lxqt-admin";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "0mi119ji0260idi14980nhmylx3krnfmkj9r81nmbbrg02h158nz";
+ sha256 = "1xi169gz1sarv7584kg33ymckqlx9ddci7r9m0dlm4a7mw7fm0lf";
};
nativeBuildInputs = [
@@ -40,8 +40,11 @@ mkDerivation rec {
];
postPatch = ''
- sed "s|\''${POLKITQT-1_POLICY_FILES_INSTALL_DIR}|''${out}/share/polkit-1/actions|" \
- -i lxqt-admin-user/CMakeLists.txt
+ for f in lxqt-admin-{time,user}/CMakeLists.txt; do
+ substituteInPlace $f --replace \
+ "\''${POLKITQT-1_POLICY_FILES_INSTALL_DIR}" \
+ "$out/share/polkit-1/actions"
+ done
'';
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
diff --git a/pkgs/desktops/lxqt/lxqt-archiver/default.nix b/pkgs/desktops/lxqt/lxqt-archiver/default.nix
index 43896c2d6c4..348ee3423de 100644
--- a/pkgs/desktops/lxqt/lxqt-archiver/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-archiver/default.nix
@@ -14,13 +14,13 @@
mkDerivation rec {
pname = "lxqt-archiver";
- version = "0.3.0";
+ version = "0.4.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = "lxqt-archiver";
rev = version;
- sha256 = "0f4nj598w6qhcrhbab15cpfmrda02jcflxhb15vyv7gnplalkya6";
+ sha256 = "0wpayzcyqcnvzk95bqql7p07l8p7mwdgdj7zlbcsdn0wis4yhjm6";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-build-tools/default.nix b/pkgs/desktops/lxqt/lxqt-build-tools/default.nix
index f45f8c72955..27fda636103 100644
--- a/pkgs/desktops/lxqt/lxqt-build-tools/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-build-tools/default.nix
@@ -6,18 +6,19 @@
, pcre
, qtbase
, glib
+, perl
, lxqtUpdateScript
}:
mkDerivation rec {
pname = "lxqt-build-tools";
- version = "0.8.0";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "1wf6mhcfgk64isy7bk018szlm18xa3hjjnmhpcy2whnnjfq0jal6";
+ sha256 = "0zhcv6cbdn9fr5lpglz26gzssbxkpi824sgc0g7w3hh1z6nqqf8l";
};
nativeBuildInputs = [
@@ -32,6 +33,10 @@ mkDerivation rec {
pcre
];
+ propagatedBuildInputs = [
+ perl # needed by LXQtTranslateDesktop.cmake
+ ];
+
setupHook = ./setup-hook.sh;
# We're dependent on this macro doing add_definitions in most places
diff --git a/pkgs/desktops/lxqt/lxqt-config/default.nix b/pkgs/desktops/lxqt/lxqt-config/default.nix
index c273a7bd859..5913ec7a0d0 100644
--- a/pkgs/desktops/lxqt/lxqt-config/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-config/default.nix
@@ -18,13 +18,13 @@
mkDerivation rec {
pname = "lxqt-config";
- version = "0.16.1";
+ version = "0.17.1";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "1ppkkz7rg5ddlyk1ikh2s3g7nbb0wnpl0lldg9j68l76d61sfm8z";
+ sha256 = "0b9jihmsqgdfdsisz15j3p53fgf1w30s8irj9zjh52fsj58p924p";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-globalkeys/default.nix b/pkgs/desktops/lxqt/lxqt-globalkeys/default.nix
index a54564e062b..6dab1cbf736 100644
--- a/pkgs/desktops/lxqt/lxqt-globalkeys/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-globalkeys/default.nix
@@ -15,13 +15,13 @@
mkDerivation rec {
pname = "lxqt-globalkeys";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "00n02mci0wry9l2prc98liiamshacnj8pvmra5wkmygm581q2r19";
+ sha256 = "135292l8w9sngg437n1zigkap15apifyqd9847ln84bxsmcj8lay";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-notificationd/default.nix b/pkgs/desktops/lxqt/lxqt-notificationd/default.nix
index c02b768d6b7..093706fd6ee 100644
--- a/pkgs/desktops/lxqt/lxqt-notificationd/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-notificationd/default.nix
@@ -15,13 +15,13 @@
mkDerivation rec {
pname = "lxqt-notificationd";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "0ahvjf5102a0pz5bfznjvkg55xix6k9bw381gzv6jqw5553snanc";
+ sha256 = "1r2cmxcjkm9lvb2ilq2winyqndnamsd9x2ynmfiqidby2pcr9i3a";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix b/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix
index 3aac000fb67..a6fbfc2f562 100644
--- a/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix
@@ -15,13 +15,13 @@
mkDerivation rec {
pname = "lxqt-openssh-askpass";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "163mshrwfwp31bjis66l50krsyp184idw9gyp7pdh047psca5129";
+ sha256 = "18pn7kw9aw7859jnwvjnjcvr50pqsi8gqcxsbx9rvsjrybw2qcgc";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-panel/default.nix b/pkgs/desktops/lxqt/lxqt-panel/default.nix
index bb6ed854891..c565c5b4c30 100644
--- a/pkgs/desktops/lxqt/lxqt-panel/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-panel/default.nix
@@ -30,13 +30,13 @@
mkDerivation rec {
pname = "lxqt-panel";
- version = "0.16.1";
+ version = "0.17.1";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "1mm23fys5npm5fi47y3h2mzvlhlcaz7k1p4wwmc012f0hqcrvqik";
+ sha256 = "1wmm4sml7par5z9xcs5qx2y2pdbnnh66zs37jhx9f9ihcmh1sqlw";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-policykit/default.nix b/pkgs/desktops/lxqt/lxqt-policykit/default.nix
index adda2339f36..0a84799d372 100644
--- a/pkgs/desktops/lxqt/lxqt-policykit/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-policykit/default.nix
@@ -19,13 +19,13 @@
mkDerivation rec {
pname = "lxqt-policykit";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "05qi550cjyjzhlma4zxnp1pn8i5cgak2k2mwwh2a5gpicp5axavn";
+ sha256 = "15f0hnif8zs38qgckif63dds9zgpp3dmg9pg3ppgh664lkbxx7n7";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix b/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix
index 3c1350753cf..a1b06806740 100644
--- a/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix
@@ -18,13 +18,13 @@
mkDerivation rec {
pname = "lxqt-powermanagement";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "1pf3z8hymddk1cm5j5lqgah967xsdl37j66gz5bs3dw7871gbdhy";
+ sha256 = "1ikkksg5k7jwph7060h8wyk7bdsywvhl47zp23j5gcig0nk62ggf";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-qtplugin/default.nix b/pkgs/desktops/lxqt/lxqt-qtplugin/default.nix
index d19abcfe952..3095b239926 100644
--- a/pkgs/desktops/lxqt/lxqt-qtplugin/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-qtplugin/default.nix
@@ -15,13 +15,13 @@
mkDerivation rec {
pname = "lxqt-qtplugin";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "14k5icxjkl5znp59y44791brsmwy54jkwr4vn3kg4ggqjdp3vbh9";
+ sha256 = "168ii015j57hkccdh27h2fdh8yzs8nzy8nw20wnx6fbcg5401666";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-runner/default.nix b/pkgs/desktops/lxqt/lxqt-runner/default.nix
index 3f80800310f..32d9194be67 100644
--- a/pkgs/desktops/lxqt/lxqt-runner/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-runner/default.nix
@@ -20,13 +20,13 @@
mkDerivation rec {
pname = "lxqt-runner";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "0bmx5y4l443j8vrzw8967kw5i150braq0pfj8xk0nyz6zz62rrf1";
+ sha256 = "167gzn6aqk7akzbmrnm7nmcpkl0nphr8axbfgwnw552dnk6v8gn0";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-session/default.nix b/pkgs/desktops/lxqt/lxqt-session/default.nix
index 4c29a249dde..b62ca157eeb 100644
--- a/pkgs/desktops/lxqt/lxqt-session/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-session/default.nix
@@ -11,6 +11,7 @@
, kwindowsystem
, liblxqt
, libqtxdg
+, procps
, xorg
, xdg-user-dirs
, lxqtUpdateScript
@@ -18,13 +19,13 @@
mkDerivation rec {
pname = "lxqt-session";
- version = "0.16.0";
+ version = "0.17.1";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "1lmj0cx4crdjl2qih3scm2gvsx3qna0nb6mjjrcx0f2k7h744pik";
+ sha256 = "1nhw3y3dm4crawc1905l6drn0i79fs1dzs8iak0vmmplbiv3fvgg";
};
nativeBuildInputs = [
@@ -41,6 +42,7 @@ mkDerivation rec {
kwindowsystem
liblxqt
libqtxdg
+ procps
xorg.libpthreadstubs
xorg.libXdmcp
xdg-user-dirs
diff --git a/pkgs/desktops/lxqt/lxqt-sudo/default.nix b/pkgs/desktops/lxqt/lxqt-sudo/default.nix
index 79168795c60..4daf40197e8 100644
--- a/pkgs/desktops/lxqt/lxqt-sudo/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-sudo/default.nix
@@ -16,13 +16,13 @@
mkDerivation rec {
pname = "lxqt-sudo";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "0al64v12ddi6bgrr2z86jh21c02wg5l0mxjcmk9xlsvdx0d94cdx";
+ sha256 = "10s8k83mkqiakh18mh1l7idjp95cy49rg8dh14cy159dk8mchcd0";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/lxqt-themes/default.nix b/pkgs/desktops/lxqt/lxqt-themes/default.nix
index 08ba99c9606..985e84d03c2 100644
--- a/pkgs/desktops/lxqt/lxqt-themes/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-themes/default.nix
@@ -8,13 +8,13 @@
mkDerivation rec {
pname = "lxqt-themes";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "12pbba7a2rk0kjn3hl2lvn90di58w0s5psbq51kz39ah3rlp9dzz";
+ sha256 = "13zh5yrq0f96cn5m6i7zdvgb9iw656fad5ps0s2zx6x8mj2mv64f";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/pavucontrol-qt/default.nix b/pkgs/desktops/lxqt/pavucontrol-qt/default.nix
index e996eefc903..662930e4e37 100644
--- a/pkgs/desktops/lxqt/pavucontrol-qt/default.nix
+++ b/pkgs/desktops/lxqt/pavucontrol-qt/default.nix
@@ -13,13 +13,13 @@
mkDerivation rec {
pname = "pavucontrol-qt";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "1d3kp2y3crrmbqak4mn9d6cfbhi5l5xhchhjh44ng8gpww22k5h0";
+ sha256 = "0syc4bc2k7961la2c77787akhcljspq3s2nyqvb7mq7ddq1xn0wx";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/pcmanfm-qt/default.nix b/pkgs/desktops/lxqt/pcmanfm-qt/default.nix
index 2fa7879d58e..ba913cd147f 100644
--- a/pkgs/desktops/lxqt/pcmanfm-qt/default.nix
+++ b/pkgs/desktops/lxqt/pcmanfm-qt/default.nix
@@ -15,13 +15,13 @@
mkDerivation rec {
pname = "pcmanfm-qt";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "09mlv5qkwzpfz5l41pcz0k01kgsikzkghhfkl84hwyjdm4i2vapj";
+ sha256 = "1awyncpypygsrg7d2nc6xh1l4xaln3ypdliy4xmq8bf94sh9rf0y";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/qps/default.nix b/pkgs/desktops/lxqt/qps/default.nix
index be28b589ca1..0a4918190b0 100644
--- a/pkgs/desktops/lxqt/qps/default.nix
+++ b/pkgs/desktops/lxqt/qps/default.nix
@@ -14,13 +14,13 @@
mkDerivation rec {
pname = "qps";
- version = "2.2.0";
+ version = "2.3.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "0gfw7iz7jzyfl9hiq3aivbgkkl61fz319cfg57fgn2kldlcljhwa";
+ sha256 = "0fihhnb7vp6x072spg1fnxaip4sq9mbvhrfqdwnzph5dlyvs54nj";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/qterminal/default.nix b/pkgs/desktops/lxqt/qterminal/default.nix
index 740cc09fca5..d383703199a 100644
--- a/pkgs/desktops/lxqt/qterminal/default.nix
+++ b/pkgs/desktops/lxqt/qterminal/default.nix
@@ -12,13 +12,13 @@
mkDerivation rec {
pname = "qterminal";
- version = "0.16.1";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "0l1jhkyx7ihv3nvqm1gfvzhrhl4l8yvqxly0c9zgl6mzrd39cj3d";
+ sha256 = "0mdcz45faj9ysw725qzg572968kf5sh6zfw7iiksi26s8kiyhbbp";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/qtermwidget/default.nix b/pkgs/desktops/lxqt/qtermwidget/default.nix
index 5970827f458..94a9c651cc8 100644
--- a/pkgs/desktops/lxqt/qtermwidget/default.nix
+++ b/pkgs/desktops/lxqt/qtermwidget/default.nix
@@ -10,13 +10,13 @@
mkDerivation rec {
pname = "qtermwidget";
- version = "0.16.1";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "0kpg4b60h6dads8ncwlk0zj1c8y7xpb0kz28j0v9fqjbmxja7x6w";
+ sha256 = "0pmkk2mba8z6cgfsd8sy4vhf5d9fn9hvxszzyycyy1ndygjrc1v8";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/lxqt/screengrab/default.nix b/pkgs/desktops/lxqt/screengrab/default.nix
index 36174c870df..0ed305403b1 100644
--- a/pkgs/desktops/lxqt/screengrab/default.nix
+++ b/pkgs/desktops/lxqt/screengrab/default.nix
@@ -9,6 +9,7 @@
, qtsvg
, kwindowsystem
, libqtxdg
+, perl
, xorg
, autoPatchelfHook
, lxqtUpdateScript
@@ -16,18 +17,19 @@
mkDerivation rec {
pname = "screengrab";
- version = "2.1.0";
+ version = "2.2.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
- sha256 = "0jy2izgl3jg6mnykpw7ji1fjv7dsivdfi6k6i6glrpa0z1p51gic";
+ sha256 = "16dycq40lbvk6jvpj7zp85m23cgvh8nj38fz99gxjfzn2nz1gy4a";
};
nativeBuildInputs = [
cmake
pkg-config
+ perl # needed by LXQtTranslateDesktop.cmake
autoPatchelfHook # fix libuploader.so and libextedit.so not found
];
diff --git a/pkgs/desktops/xfce/core/xfce4-settings/default.nix b/pkgs/desktops/xfce/core/xfce4-settings/default.nix
index 71645cd1f98..cca80708034 100644
--- a/pkgs/desktops/xfce/core/xfce4-settings/default.nix
+++ b/pkgs/desktops/xfce/core/xfce4-settings/default.nix
@@ -5,9 +5,9 @@
mkXfceDerivation {
category = "xfce";
pname = "xfce4-settings";
- version = "4.16.0";
+ version = "4.16.1";
- sha256 = "0iha3jm7vmgk6hq7z4l2r7w9qm5jraka0z580i8i83704kfx9g0y";
+ sha256 = "0mjhglfsqmiycpv98l09n2556288g2713n4pvxn0srivm017fdir";
postPatch = ''
for f in xfsettingsd/pointers.c dialogs/mouse-settings/main.c; do
diff --git a/pkgs/development/beam-modules/default.nix b/pkgs/development/beam-modules/default.nix
index 6e6da4fab03..6bf9e45e622 100644
--- a/pkgs/development/beam-modules/default.nix
+++ b/pkgs/development/beam-modules/default.nix
@@ -63,6 +63,8 @@ let
debugInfo = true;
};
+ elixir_ls = callPackage ./elixir_ls.nix { inherit elixir fetchMixDeps mixRelease; };
+
# Remove old versions of elixir, when the supports fades out:
# https://hexdocs.pm/elixir/compatibility-and-deprecations.html
diff --git a/pkgs/development/beam-modules/elixir_ls.nix b/pkgs/development/beam-modules/elixir_ls.nix
new file mode 100644
index 00000000000..b61db92584d
--- /dev/null
+++ b/pkgs/development/beam-modules/elixir_ls.nix
@@ -0,0 +1,71 @@
+{ lib, elixir, fetchFromGitHub, fetchMixDeps, mixRelease }:
+# Based on the work of Hauleth
+# None of this would have happened without him
+
+mixRelease rec {
+ pname = "elixir-ls";
+ version = "0.7.0";
+
+ src = fetchFromGitHub {
+ owner = "elixir-lsp";
+ repo = "elixir-ls";
+ rev = "v${version}";
+ sha256 = "0d0hqc35hfjkpm88vz21mnm2a9rxiqfrdi83whhhh6d2ba216b7s";
+ fetchSubmodules = true;
+ };
+
+ mixDeps = fetchMixDeps {
+ pname = "mix-deps-${pname}";
+ inherit src version;
+ sha256 = "0r9x223imq4j9pn9niskyaybvk7jmq8dxcyzk7kwfsi128qig1a1";
+ };
+
+ # elixir_ls is an umbrella app
+ # override configurePhase to not skip umbrella children
+ configurePhase = ''
+ runHook preConfigure
+ mix deps.compile --no-deps-check
+ runHook postConfigure
+ '';
+
+ # elixir_ls require a special step for release
+ # compile and release need to be performed together because
+ # of the no-deps-check requirement
+ buildPhase = ''
+ runHook preBuild
+ mix do compile --no-deps-check, elixir_ls.release
+ runHook postBuild
+ '';
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/bin
+ cp -Rv release $out/lib
+ # Prepare the wrapper script
+ substitute release/language_server.sh $out/bin/elixir-ls \
+ --replace 'exec "''${dir}/launch.sh"' "exec $out/lib/launch.sh"
+ chmod +x $out/bin/elixir-ls
+ # prepare the launcher
+ substituteInPlace $out/lib/launch.sh \
+ --replace "ERL_LIBS=\"\$SCRIPTPATH:\$ERL_LIBS\"" \
+ "ERL_LIBS=$out/lib:\$ERL_LIBS" \
+ --replace "exec elixir" "exec ${elixir}/bin/elixir"
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/elixir-lsp/elixir-ls";
+ description = ''
+ A frontend-independent IDE "smartness" server for Elixir.
+ Implements the "Language Server Protocol" standard and provides debugger support via the "Debug Adapter Protocol"
+ '';
+ longDescription = ''
+ The Elixir Language Server provides a server that runs in the background, providing IDEs, editors, and other tools with information about Elixir Mix projects.
+ It adheres to the Language Server Protocol, a standard for frontend-independent IDE support.
+ Debugger integration is accomplished through the similar VS Code Debug Protocol.
+ '';
+ license = licenses.asl20;
+ platforms = platforms.unix;
+ maintainers = teams.beam.members;
+ };
+}
diff --git a/pkgs/development/beam-modules/hex/default.nix b/pkgs/development/beam-modules/hex/default.nix
index 794b9e5cf22..836740a7933 100644
--- a/pkgs/development/beam-modules/hex/default.nix
+++ b/pkgs/development/beam-modules/hex/default.nix
@@ -8,13 +8,13 @@ let
pkg = self: stdenv.mkDerivation rec {
pname = "hex";
- version = "0.20.5";
+ version = "0.21.2";
src = fetchFromGitHub {
owner = "hexpm";
repo = "hex";
rev = "v${version}";
- sha256 = "1wz6n4qrmsb4kkww6lrdbs99xzwp4dyjjmr8m4drcwn3sd2k9ba6";
+ sha256 = "18vwrc5b7pyi3nifmx5hd5wbz8fy3h6sfvkmskjg5acmz66fys0g";
};
setupHook = writeText "setupHook.sh" ''
diff --git a/pkgs/development/compilers/cudatoolkit/default.nix b/pkgs/development/compilers/cudatoolkit/default.nix
index 5685f178876..da6857f6ab9 100644
--- a/pkgs/development/compilers/cudatoolkit/default.nix
+++ b/pkgs/development/compilers/cudatoolkit/default.nix
@@ -1,8 +1,6 @@
{ lib
, callPackage
, fetchurl
-, gcc48
-, gcc6
, gcc7
, gcc9
}:
@@ -10,67 +8,6 @@
let
common = callPackage ./common.nix;
in rec {
- cudatoolkit_9_0 = common {
- version = "9.0.176.1";
- url = "https://developer.nvidia.com/compute/cuda/9.0/Prod/local_installers/cuda_9.0.176_384.81_linux-run";
- sha256 = "0308rmmychxfa4inb1ird9bpgfppgr9yrfg1qp0val5azqik91ln";
- runPatches = [
- (fetchurl {
- url = "https://developer.nvidia.com/compute/cuda/9.0/Prod/patches/1/cuda_9.0.176.1_linux-run";
- sha256 = "1vbqg97pq9z9c8nqvckiwmq3ljm88m7gaizikzxbvz01izh67gx4";
- })
- (fetchurl {
- url = "https://developer.nvidia.com/compute/cuda/9.0/Prod/patches/2/cuda_9.0.176.2_linux-run";
- sha256 = "1sz5dijbx9yf7drfipdxav5a5g6sxy4w6vi9xav0lb6m2xnmyd7c";
- })
- (fetchurl {
- url = "https://developer.nvidia.com/compute/cuda/9.0/Prod/patches/3/cuda_9.0.176.3_linux-run";
- sha256 = "1jm83bxpscpjhzs5q3qijdgjm0r8qrdlgkj7y08fq8c0v8q2r7j2";
- })
- (fetchurl {
- url = "https://developer.nvidia.com/compute/cuda/9.0/Prod/patches/4/cuda_9.0.176.4_linux-run";
- sha256 = "0pymg3mymsa2n48y0njz3spzlkm15lvjzw8fms1q83zslz4x0lwk";
- })
- ];
- gcc = gcc6;
- };
-
- cudatoolkit_9_1 = common {
- version = "9.1.85.3";
- url = "https://developer.nvidia.com/compute/cuda/9.1/Prod/local_installers/cuda_9.1.85_387.26_linux";
- sha256 = "0lz9bwhck1ax4xf1fyb5nicb7l1kssslj518z64iirpy2qmwg5l4";
- runPatches = [
- (fetchurl {
- url = "https://developer.nvidia.com/compute/cuda/9.1/Prod/patches/1/cuda_9.1.85.1_linux";
- sha256 = "1f53ij5nb7g0vb5pcpaqvkaj1x4mfq3l0mhkfnqbk8sfrvby775g";
- })
- (fetchurl {
- url = "https://developer.nvidia.com/compute/cuda/9.1/Prod/patches/2/cuda_9.1.85.2_linux";
- sha256 = "16g0w09h3bqmas4hy1m0y6j5ffyharslw52fn25gql57bfihg7ym";
- })
- (fetchurl {
- url = "https://developer.nvidia.com/compute/cuda/9.1/Prod/patches/3/cuda_9.1.85.3_linux";
- sha256 = "12mcv6f8z33z8y41ja8bv5p5iqhv2vx91mv3b5z6fcj7iqv98422";
- })
- ];
- gcc = gcc6;
- };
-
- cudatoolkit_9_2 = common {
- version = "9.2.148.1";
- url = "https://developer.nvidia.com/compute/cuda/9.2/Prod2/local_installers/cuda_9.2.148_396.37_linux";
- sha256 = "04c6v9b50l4awsf9w9zj5vnxvmc0hk0ypcfjksbh4vnzrz14wigm";
- runPatches = [
- (fetchurl {
- url = "https://developer.nvidia.com/compute/cuda/9.2/Prod2/patches/1/cuda_9.2.148.1_linux";
- sha256 = "1kx6l4yzsamk6q1f4vllcpywhbfr2j5wfl4h5zx8v6dgfpsjm2lw";
- })
- ];
- gcc = gcc7;
- };
-
- cudatoolkit_9 = cudatoolkit_9_2;
-
cudatoolkit_10_0 = common {
version = "10.0.130";
url = "https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda_10.0.130_410.48_linux";
diff --git a/pkgs/development/compilers/dmd/default.nix b/pkgs/development/compilers/dmd/default.nix
index 51f30dbabda..3ae72e5862f 100644
--- a/pkgs/development/compilers/dmd/default.nix
+++ b/pkgs/development/compilers/dmd/default.nix
@@ -170,6 +170,5 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ ThomasMader lionello ];
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
# many tests are failing
- broken = true;
};
}
diff --git a/pkgs/development/compilers/dotnet/default.nix b/pkgs/development/compilers/dotnet/default.nix
index 143782d9301..f78c546542a 100644
--- a/pkgs/development/compilers/dotnet/default.nix
+++ b/pkgs/development/compilers/dotnet/default.nix
@@ -1,6 +1,9 @@
/*
How to combine packages for use in development:
dotnetCombined = with dotnetCorePackages; combinePackages [ sdk_3_1 sdk_2_2 sdk_3_0 sdk aspnetcore_2_1 ];
+
+Hashes below are retrived from:
+https://dotnet.microsoft.com/download/dotnet
*/
{ callPackage }:
let
@@ -124,11 +127,11 @@ rec {
};
sdk_5_0 = buildNetCoreSdk {
- version = "5.0.200";
+ version = "5.0.202";
sha512 = {
- x86_64-linux = "0g7zcmkcdwc11h42m6hq8d0w55nnvnsmj3dc16829q55cp7l7kggmjljnd9slx7r7nrsyi7yy8brwh8n4kfi5998pdyb09fzhq5w60d";
- aarch64-linux = "2zy6nxiw313g2sbmnkg76r64llbk2w2wcsa6frq535zbviw52zf163jvw2687rpiw4szdizf337l3b0qa0396abw5dhq2czqlxjyjv8";
- x86_64-darwin = "2p0yxplafhi5ks38pq8nyi43kpv4l4npa718rvcvl57qs76j0dqlk1s4wdw7msx8g7xxy1aal47zy9rxvlypmgwx4dnp339cmbd6mf6";
+ x86_64-linux = "Ae1Z8jYYSYdAVnPSSUDVXOKdgw59u8GVVv3AOJMDnmBGcS3m+QHcmREEeg3uT9FTGbfpT4ox32uYH6Nb2T2YOA==";
+ aarch64-linux = "JuwSWgY35xrK0gOGR034mhAemulIkhtd4M00P0vA6EtOeyMY4Vl4cj6zudMh6Jt5DD8EJKQ8KbABX8byuePp2Q==";
+ x86_64-darwin = "jxnfTbQUb0dJ2/NX2pu8Pi/F/e4EaDm2Ta5U+6sSYj/s6nNp6NHxtEn7BzhQ9/EVLszl/oXi3lL0d/BPbzldEA==";
};
};
}
diff --git a/pkgs/development/compilers/gcc/8/default.nix b/pkgs/development/compilers/gcc/8/default.nix
index 6ecf462d54d..4edc034720c 100644
--- a/pkgs/development/compilers/gcc/8/default.nix
+++ b/pkgs/development/compilers/gcc/8/default.nix
@@ -55,6 +55,7 @@ let majorVersion = "8";
patches =
optional (targetPlatform != hostPlatform) ../libstdc++-target.patch
+ ++ optional targetPlatform.isNetBSD ../libstdc++-netbsd-ctypes.patch
++ optional noSysDirs ../no-sys-dirs.patch
/* ++ optional (hostPlatform != buildPlatform) (fetchpatch { # XXX: Refine when this should be applied
url = "https://git.busybox.net/buildroot/plain/package/gcc/${version}/0900-remove-selftests.patch?id=11271540bfe6adafbc133caf6b5b902a816f5f02";
diff --git a/pkgs/development/compilers/gcc/9/default.nix b/pkgs/development/compilers/gcc/9/default.nix
index 7f35f5c7bb9..ca92a8f4845 100644
--- a/pkgs/development/compilers/gcc/9/default.nix
+++ b/pkgs/development/compilers/gcc/9/default.nix
@@ -70,6 +70,7 @@ let majorVersion = "9";
# This patch can most likely be removed by a post 9.3.0-release.
[ ./avoid-cycling-subreg-reloads.patch ]
++ optional (targetPlatform != hostPlatform) ../libstdc++-target.patch
+ ++ optional targetPlatform.isNetBSD ../libstdc++-netbsd-ctypes.patch
++ optional noSysDirs ../no-sys-dirs.patch
/* ++ optional (hostPlatform != buildPlatform) (fetchpatch { # XXX: Refine when this should be applied
url = "https://git.busybox.net/buildroot/plain/package/gcc/${version}/0900-remove-selftests.patch?id=11271540bfe6adafbc133caf6b5b902a816f5f02";
diff --git a/pkgs/development/compilers/gcc/common/configure-flags.nix b/pkgs/development/compilers/gcc/common/configure-flags.nix
index fc4fbb34c50..7f7a40f3368 100644
--- a/pkgs/development/compilers/gcc/common/configure-flags.nix
+++ b/pkgs/development/compilers/gcc/common/configure-flags.nix
@@ -176,6 +176,7 @@ let
# Platform-specific flags
++ lib.optional (targetPlatform == hostPlatform && targetPlatform.isx86_32) "--with-arch=${stdenv.hostPlatform.parsed.cpu.name}"
+ ++ lib.optional targetPlatform.isNetBSD "--disable-libssp" # Provided by libc.
++ lib.optionals hostPlatform.isSunOS [
"--enable-long-long" "--enable-libssp" "--enable-threads=posix" "--disable-nls" "--enable-__cxa_atexit"
# On Illumos/Solaris GNU as is preferred
diff --git a/pkgs/development/compilers/ghcjs-ng/8.6/stage0.nix b/pkgs/development/compilers/ghcjs-ng/8.6/stage0.nix
index e8c4a027520..d6a05091514 100644
--- a/pkgs/development/compilers/ghcjs-ng/8.6/stage0.nix
+++ b/pkgs/development/compilers/ghcjs-ng/8.6/stage0.nix
@@ -108,7 +108,7 @@
base binary bytestring containers ghc-prim ghci-ghcjs
template-haskell-ghcjs
];
- homepage = "http://github.com/ghcjs";
+ homepage = "https://github.com/ghcjs";
license = lib.licenses.mit;
}) {};
diff --git a/pkgs/development/compilers/ghdl/default.nix b/pkgs/development/compilers/ghdl/default.nix
index e7332439439..ec07331dc52 100644
--- a/pkgs/development/compilers/ghdl/default.nix
+++ b/pkgs/development/compilers/ghdl/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, gnat, zlib, llvm, lib
+{ stdenv, fetchFromGitHub, callPackage, gnat, zlib, llvm, lib
, backend ? "mcode" }:
assert backend == "mcode" || backend == "llvm";
@@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
LIBRARY_PATH = "${stdenv.cc.libc}/lib";
buildInputs = [ gnat zlib ] ++ lib.optional (backend == "llvm") [ llvm ];
+ propagatedBuildInputs = lib.optionals (backend == "llvm") [ zlib ];
preConfigure = ''
# If llvm 7.0 works, 7.x releases should work too.
@@ -30,6 +31,15 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
+ passthru = {
+ # run with either of
+ # nix-build -A ghdl-mcode.passthru.tests
+ # nix-build -A ghdl-llvm.passthru.tests
+ tests = {
+ simple = callPackage ./test-simple.nix { inherit backend; };
+ };
+ };
+
meta = with lib; {
homepage = "https://github.com/ghdl/ghdl";
description = "VHDL 2008/93/87 simulator";
diff --git a/pkgs/development/compilers/ghdl/expected-output.txt b/pkgs/development/compilers/ghdl/expected-output.txt
new file mode 100644
index 00000000000..0396b0c2787
--- /dev/null
+++ b/pkgs/development/compilers/ghdl/expected-output.txt
@@ -0,0 +1,8 @@
+simple-tb.vhd:71:5:@700ms:(report note): 32
+simple-tb.vhd:71:5:@900ms:(report note): 78
+simple-tb.vhd:71:5:@1100ms:(report note): 105
+simple-tb.vhd:71:5:@1300ms:(report note): 120
+simple-tb.vhd:71:5:@1500ms:(report note): 79
+simple-tb.vhd:71:5:@1700ms:(report note): 83
+simple-tb.vhd:71:5:@1900ms:(report note): 32
+simple-tb.vhd:75:1:@2100ms:(report note): All tests passed.
diff --git a/pkgs/development/compilers/ghdl/simple-tb.vhd b/pkgs/development/compilers/ghdl/simple-tb.vhd
new file mode 100644
index 00000000000..65e4d0967c5
--- /dev/null
+++ b/pkgs/development/compilers/ghdl/simple-tb.vhd
@@ -0,0 +1,78 @@
+library ieee;
+use IEEE.STD_LOGIC_1164.all;
+use ieee.numeric_std.all;
+
+library STD;
+use STD.textio.all;
+
+entity tb is
+end tb;
+
+architecture beh of tb is
+
+component simple
+port (
+ CLK, RESET : in std_ulogic;
+ DATA_OUT : out std_ulogic_vector(7 downto 0);
+ DONE_OUT : out std_ulogic
+);
+end component;
+
+signal data : std_ulogic_vector(7 downto 0) := "00100000";
+signal clk : std_ulogic;
+signal RESET : std_ulogic := '0';
+signal done : std_ulogic := '0';
+signal cyclecount : integer := 0;
+
+constant cycle_time_c : time := 200 ms;
+constant maxcycles : integer := 100;
+
+begin
+
+simple1 : simple
+port map (
+ CLK => clk,
+ RESET => RESET,
+ DATA_OUT => data,
+ DONE_OUT => done
+);
+
+clk_process : process
+begin
+ clk <= '0';
+ wait for cycle_time_c/2;
+ clk <= '1';
+ wait for cycle_time_c/2;
+end process;
+
+count_process : process(CLK)
+begin
+ if (CLK'event and CLK ='1') then
+ if (RESET = '1') then
+ cyclecount <= 0;
+ else
+ cyclecount <= cyclecount + 1;
+ end if;
+ end if;
+end process;
+
+test : process
+
+begin
+
+RESET <= '1';
+wait until (clk'event and clk='1');
+wait until (clk'event and clk='1');
+RESET <= '0';
+wait until (clk'event and clk='1');
+for cyclecnt in 1 to maxcycles loop
+ exit when done = '1';
+ wait until (clk'event and clk='1');
+ report integer'image(to_integer(unsigned(data)));
+end loop;
+wait until (clk'event and clk='1');
+
+report "All tests passed." severity NOTE;
+wait;
+end process;
+end beh;
diff --git a/pkgs/development/compilers/ghdl/simple.vhd b/pkgs/development/compilers/ghdl/simple.vhd
new file mode 100644
index 00000000000..f10cf73d067
--- /dev/null
+++ b/pkgs/development/compilers/ghdl/simple.vhd
@@ -0,0 +1,45 @@
+library IEEE;
+use IEEE.STD_LOGIC_1164.all;
+use IEEE.NUMERIC_STD.ALL;
+use IEEE.STD_LOGIC_MISC.or_reduce;
+
+entity simple is
+
+port (
+ CLK, RESET : in std_ulogic;
+ DATA_OUT : out std_ulogic_vector(7 downto 0);
+ DONE_OUT : out std_ulogic
+);
+end simple;
+
+architecture beh of simple is
+
+signal data : std_ulogic_vector(7 downto 0);
+signal done: std_ulogic;
+
+begin
+
+proc_ctr : process(CLK)
+begin
+if (CLK = '1' and CLK'event) then
+ if (RESET = '1') then
+ data <= "01011111";
+ done <= '0';
+ else
+ case data is
+ when "00100000" => data <= "01001110";
+ when "01001110" => data <= "01101001";
+ when "01101001" => data <= "01111000";
+ when "01111000" => data <= "01001111";
+ when "01001111" => data <= "01010011";
+ when others => data <= "00100000";
+ end case;
+ done <= not or_reduce(data xor "01010011");
+ end if;
+end if;
+end process;
+
+DATA_OUT <= data;
+DONE_OUT <= done;
+
+end beh;
diff --git a/pkgs/development/compilers/ghdl/test-simple.nix b/pkgs/development/compilers/ghdl/test-simple.nix
new file mode 100644
index 00000000000..8d3c3d3095f
--- /dev/null
+++ b/pkgs/development/compilers/ghdl/test-simple.nix
@@ -0,0 +1,23 @@
+{ stdenv, ghdl-llvm, ghdl-mcode, backend }:
+
+let
+ ghdl = if backend == "llvm" then ghdl-llvm else ghdl-mcode;
+in
+stdenv.mkDerivation {
+ name = "ghdl-test-simple";
+ meta.timeout = 300;
+ nativeBuildInputs = [ ghdl ];
+ buildCommand = ''
+ cp ${./simple.vhd} simple.vhd
+ cp ${./simple-tb.vhd} simple-tb.vhd
+ mkdir -p ghdlwork
+ ghdl -a --workdir=ghdlwork --ieee=synopsys simple.vhd simple-tb.vhd
+ ghdl -e --workdir=ghdlwork --ieee=synopsys -o sim-simple tb
+ '' + (if backend == "llvm" then ''
+ ./sim-simple --assert-level=warning > output.txt
+ '' else ''
+ ghdl -r --workdir=ghdlwork --ieee=synopsys tb > output.txt
+ '') + ''
+ diff output.txt ${./expected-output.txt} && touch $out
+ '';
+}
diff --git a/pkgs/development/compilers/go/1.16.nix b/pkgs/development/compilers/go/1.16.nix
index d6690a71088..f82a0d72b7a 100644
--- a/pkgs/development/compilers/go/1.16.nix
+++ b/pkgs/development/compilers/go/1.16.nix
@@ -11,7 +11,7 @@ let
inherit (lib) optionals optionalString;
- version = "1.16.2";
+ version = "1.16.3";
go_bootstrap = buildPackages.callPackage ./bootstrap.nix { };
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://dl.google.com/go/go${version}.src.tar.gz";
- sha256 = "1sl33wkhp6pi9f15f6khp5a7l7xwmpc3sp1zmji8pjr3g8l19jip";
+ sha256 = "sha256-spjSnekjbKR6Aj44IxO8wtLu0x36cGtgoEEDzoOnGiU=";
};
# perl is used for testing go vet
diff --git a/pkgs/development/compilers/haxe/default.nix b/pkgs/development/compilers/haxe/default.nix
index 73b82ff48db..c9e5a097de1 100644
--- a/pkgs/development/compilers/haxe/default.nix
+++ b/pkgs/development/compilers/haxe/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, coreutils, ocaml-ng, zlib, pcre, neko, mbedtls }:
+{ lib, stdenv, fetchFromGitHub, coreutils, ocaml-ng, zlib, pcre, neko, mbedtls, Security }:
let
ocamlDependencies = version:
@@ -13,7 +13,8 @@ let
sha
dune_2
luv
- ocaml_extlib
+ (if lib.versionAtLeast version "4.2"
+ then ocaml_extlib else ocaml_extlib-1-7-7)
] else with ocaml-ng.ocamlPackages_4_05; [
ocaml
camlp4
@@ -30,7 +31,8 @@ let
inherit version;
buildInputs = [ zlib pcre neko ]
- ++ lib.optional (lib.versionAtLeast version "4.1") [ mbedtls ]
+ ++ lib.optional (lib.versionAtLeast version "4.1") mbedtls
+ ++ lib.optional (lib.versionAtLeast version "4.1" && stdenv.isDarwin) Security
++ ocamlDependencies version;
src = fetchFromGitHub {
@@ -125,6 +127,14 @@ in {
sed -i -re 's!(let +prefix_path += +).*( +in)!\1"'"$out/"'"\2!' src/main.ml
'';
};
+ haxe_4_0 = generic {
+ version = "4.0.5";
+ sha256 = "0f534pchdx0m057ixnk07ab4s518ica958pvpd0vfjsrxg5yjkqa";
+ };
+ haxe_4_1 = generic {
+ version = "4.1.5";
+ sha256 = "0rns6d28qzkbai6yyws08yzbyvxfn848nj0fsji7chdi0y7pzzj0";
+ };
haxe_4_2 = generic {
version = "4.2.1";
sha256 = "sha256-0j6M21dh8DB1gC/bPYNJrVuDbJyqQbP+61ItO5RBUcA=";
diff --git a/pkgs/development/compilers/llvm/12/llvm/default.nix b/pkgs/development/compilers/llvm/12/llvm/default.nix
index 0d0075fddc7..33bb7b931f1 100644
--- a/pkgs/development/compilers/llvm/12/llvm/default.nix
+++ b/pkgs/development/compilers/llvm/12/llvm/default.nix
@@ -55,6 +55,12 @@ in stdenv.mkDerivation (rec {
propagatedBuildInputs = [ ncurses zlib ];
+ patches = [
+ # Force a test to evaluate the saved benchmark for a CPU for which LLVM has
+ # an execution model. See NixOS/nixpkgs#119673.
+ ../../exegesis-force-bdver2.patch
+ ];
+
postPatch = optionalString stdenv.isDarwin ''
substituteInPlace cmake/modules/AddLLVM.cmake \
--replace 'set(_install_name_dir INSTALL_NAME_DIR "@rpath")' "set(_install_name_dir)" \
diff --git a/pkgs/development/compilers/llvm/exegesis-force-bdver2.patch b/pkgs/development/compilers/llvm/exegesis-force-bdver2.patch
new file mode 100644
index 00000000000..c2654153ed5
--- /dev/null
+++ b/pkgs/development/compilers/llvm/exegesis-force-bdver2.patch
@@ -0,0 +1,11 @@
+diff --git a/test/tools/llvm-exegesis/X86/uops-CMOV16rm-noreg.s b/test/tools/llvm-exegesis/X86/uops-CMOV16rm-noreg.s
+index 3fc1f31d54dc..a4c9bdd92131 100644
+--- a/test/tools/llvm-exegesis/X86/uops-CMOV16rm-noreg.s
++++ b/test/tools/llvm-exegesis/X86/uops-CMOV16rm-noreg.s
+@@ -1,5 +1,6 @@
+ # RUN: llvm-exegesis -mode=uops -opcode-name=CMOV16rm -benchmarks-file=%t.CMOV16rm-uops.yaml
+ # RUN: FileCheck -check-prefixes=CHECK-YAML -input-file=%t.CMOV16rm-uops.yaml %s
++# RUN: sed -i 's,cpu_name:.*,cpu_name: bdver2,g' %t.CMOV16rm-uops.yaml
+ # RUN: llvm-exegesis -mcpu=bdver2 -mode=analysis -benchmarks-file=%t.CMOV16rm-uops.yaml -analysis-clusters-output-file=- -analysis-clustering-epsilon=0.1 -analysis-inconsistency-epsilon=0.1 -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check-prefixes=CHECK-CLUSTERS %s
+
+ # https://bugs.llvm.org/show_bug.cgi?id=41448
diff --git a/pkgs/development/compilers/mrustc/bootstrap.nix b/pkgs/development/compilers/mrustc/bootstrap.nix
new file mode 100644
index 00000000000..35e7daaf210
--- /dev/null
+++ b/pkgs/development/compilers/mrustc/bootstrap.nix
@@ -0,0 +1,153 @@
+{ lib, stdenv
+, fetchurl
+, mrustc
+, mrustc-minicargo
+, rust
+, llvm_7
+, llvmPackages_7
+, libffi
+, cmake
+, python3
+, zlib
+, libxml2
+, openssl
+, pkg-config
+, curl
+, which
+, time
+}:
+
+let
+ rustcVersion = "1.29.0";
+ rustcSrc = fetchurl {
+ url = "https://static.rust-lang.org/dist/rustc-${rustcVersion}-src.tar.gz";
+ sha256 = "1sb15znckj8pc8q3g7cq03pijnida6cg64yqmgiayxkzskzk9sx4";
+ };
+ rustcDir = "rustc-${rustcVersion}-src";
+in
+
+stdenv.mkDerivation rec {
+ pname = "mrustc-bootstrap";
+ version = "${mrustc.version}_${rustcVersion}";
+
+ inherit (mrustc) src;
+ postUnpack = "tar -xf ${rustcSrc} -C source/";
+
+ # the rust build system complains that nix alters the checksums
+ dontFixLibtool = true;
+
+ patches = [
+ ./patches/0001-use-shared-llvm.patch
+ ./patches/0002-dont-build-llvm.patch
+ ./patches/0003-echo-newlines.patch
+ ./patches/0004-increase-parallelism.patch
+ ];
+
+ postPatch = ''
+ echo "applying patch ./rustc-${rustcVersion}-src.patch"
+ patch -p0 -d ${rustcDir}/ < rustc-${rustcVersion}-src.patch
+
+ for p in ${lib.concatStringsSep " " llvmPackages_7.compiler-rt.patches}; do
+ echo "applying patch $p"
+ patch -p1 -d ${rustcDir}/src/libcompiler_builtins/compiler-rt < $p
+ done
+ '';
+
+ # rustc unfortunately needs cmake to compile llvm-rt but doesn't
+ # use it for the normal build. This disables cmake in Nix.
+ dontUseCmakeConfigure = true;
+
+ strictDeps = true;
+ nativeBuildInputs = [
+ cmake
+ mrustc
+ mrustc-minicargo
+ pkg-config
+ python3
+ time
+ which
+ ];
+ buildInputs = [
+ # for rustc
+ llvm_7 libffi zlib libxml2
+ # for cargo
+ openssl curl
+ ];
+
+ makeFlags = [
+ # Use shared mrustc/minicargo/llvm instead of rebuilding them
+ "MRUSTC=${mrustc}/bin/mrustc"
+ "MINICARGO=${mrustc-minicargo}/bin/minicargo"
+ "LLVM_CONFIG=${llvm_7}/bin/llvm-config"
+ "RUSTC_TARGET=${rust.toRustTarget stdenv.targetPlatform}"
+ ];
+
+ buildPhase = ''
+ runHook preBuild
+
+ local flagsArray=(
+ PARLEVEL=$NIX_BUILD_CORES
+ ${toString makeFlags}
+ )
+
+ echo minicargo.mk: libs
+ make -f minicargo.mk "''${flagsArray[@]}" LIBS
+
+ echo minicargo.mk: deps
+ mkdir -p output/cargo-build
+ # minicargo has concurrency issues when running these; let's build them
+ # without parallelism
+ for crate in regex regex-0.2.11 curl-sys
+ do
+ echo "building $crate"
+ minicargo ${rustcDir}/src/vendor/$crate \
+ --vendor-dir ${rustcDir}/src/vendor \
+ --output-dir output/cargo-build -L output/
+ done
+
+ echo minicargo.mk: rustc
+ make -f minicargo.mk "''${flagsArray[@]}" output/rustc
+
+ echo minicargo.mk: cargo
+ make -f minicargo.mk "''${flagsArray[@]}" output/cargo
+
+ echo run_rustc
+ make -C run_rustc "''${flagsArray[@]}"
+
+ unset flagsArray
+
+ runHook postBuild
+ '';
+
+ doCheck = true;
+ checkPhase = ''
+ runHook preCheck
+ run_rustc/output/prefix/bin/hello_world | grep "hello, world"
+ runHook postCheck
+ '';
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/bin/ $out/lib/
+ cp run_rustc/output/prefix/bin/cargo $out/bin/cargo
+ cp run_rustc/output/prefix/bin/rustc_binary $out/bin/rustc
+
+ cp -r run_rustc/output/prefix/lib/* $out/lib/
+ cp $out/lib/rustlib/${rust.toRustTarget stdenv.targetPlatform}/lib/*.so $out/lib/
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ inherit (src.meta) homepage;
+ description = "A minimal build of Rust";
+ longDescription = ''
+ A minimal build of Rust, built from source using mrustc.
+ This is useful for bootstrapping the main Rust compiler without
+ an initial binary toolchain download.
+ '';
+ maintainers = with maintainers; [ progval r-burns ];
+ license = with licenses; [ mit asl20 ];
+ platforms = [ "x86_64-linux" ];
+ };
+}
+
diff --git a/pkgs/development/compilers/mrustc/default.nix b/pkgs/development/compilers/mrustc/default.nix
new file mode 100644
index 00000000000..4c813d88b76
--- /dev/null
+++ b/pkgs/development/compilers/mrustc/default.nix
@@ -0,0 +1,53 @@
+{ lib, stdenv
+, fetchFromGitHub
+, zlib
+}:
+
+let
+ version = "0.9";
+ tag = "v${version}";
+ rev = "15773561e40ca5c8cffe0a618c544b6cfdc5ad7e";
+in
+
+stdenv.mkDerivation rec {
+ pname = "mrustc";
+ inherit version;
+
+ # Always update minicargo.nix and bootstrap.nix in lockstep with this
+ src = fetchFromGitHub {
+ owner = "thepowersgang";
+ repo = "mrustc";
+ rev = tag;
+ sha256 = "194ny7vsks5ygiw7d8yxjmp1qwigd71ilchis6xjl6bb2sj97rd2";
+ };
+
+ postPatch = ''
+ sed -i 's/\$(shell git show --pretty=%H -s)/${rev}/' Makefile
+ sed -i 's/\$(shell git symbolic-ref -q --short HEAD || git describe --tags --exact-match)/${tag}/' Makefile
+ sed -i 's/\$(shell git diff-index --quiet HEAD; echo $$?)/0/' Makefile
+ '';
+
+ strictDeps = true;
+ buildInputs = [ zlib ];
+ enableParallelBuilding = true;
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/bin
+ cp bin/mrustc $out/bin
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ description = "Mutabah's Rust Compiler";
+ longDescription = ''
+ In-progress alternative rust compiler, written in C++.
+ Capable of building a fully-working copy of rustc,
+ but not yet suitable for everyday use.
+ '';
+ inherit (src.meta) homepage;
+ license = licenses.mit;
+ maintainers = with maintainers; [ progval r-burns ];
+ platforms = [ "x86_64-linux" ];
+ };
+}
diff --git a/pkgs/development/compilers/mrustc/minicargo.nix b/pkgs/development/compilers/mrustc/minicargo.nix
new file mode 100644
index 00000000000..8505e5b8d7c
--- /dev/null
+++ b/pkgs/development/compilers/mrustc/minicargo.nix
@@ -0,0 +1,39 @@
+{ lib, stdenv
+, makeWrapper
+, mrustc
+}:
+
+stdenv.mkDerivation rec {
+ pname = "mrustc-minicargo";
+ inherit (mrustc) src version;
+
+ strictDeps = true;
+ nativeBuildInputs = [ makeWrapper ];
+
+ enableParallelBuilding = true;
+ makefile = "minicargo.mk";
+ makeFlags = [ "tools/bin/minicargo" ];
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/bin
+ cp tools/bin/minicargo $out/bin
+
+ # without it, minicargo defaults to "/../../bin/mrustc"
+ wrapProgram "$out/bin/minicargo" --set MRUSTC_PATH ${mrustc}/bin/mrustc
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ description = "A minimalist builder for Rust";
+ longDescription = ''
+ A minimalist builder for Rust, similar to Cargo but written in C++.
+ Designed to work with mrustc to build Rust projects
+ (like the Rust compiler itself).
+ '';
+ inherit (src.meta) homepage;
+ license = licenses.mit;
+ maintainers = with maintainers; [ progval r-burns ];
+ platforms = [ "x86_64-linux" ];
+ };
+}
diff --git a/pkgs/development/compilers/mrustc/patches/0001-use-shared-llvm.patch b/pkgs/development/compilers/mrustc/patches/0001-use-shared-llvm.patch
new file mode 100644
index 00000000000..e8c57ae2541
--- /dev/null
+++ b/pkgs/development/compilers/mrustc/patches/0001-use-shared-llvm.patch
@@ -0,0 +1,12 @@
+--- a/rustc-1.29.0-src/src/librustc_llvm/lib.rs
+--- b/rustc-1.29.0-src/src/librustc_llvm/lib.rs
+@@ -23,6 +23,9 @@
+ #![feature(link_args)]
+ #![feature(static_nobundle)]
+
++// https://github.com/rust-lang/rust/issues/34486
++#[link(name = "ffi")] extern {}
++
+ // See librustc_cratesio_shim/Cargo.toml for a comment explaining this.
+ #[allow(unused_extern_crates)]
+ extern crate rustc_cratesio_shim;
diff --git a/pkgs/development/compilers/mrustc/patches/0002-dont-build-llvm.patch b/pkgs/development/compilers/mrustc/patches/0002-dont-build-llvm.patch
new file mode 100644
index 00000000000..7ae8d191d87
--- /dev/null
+++ b/pkgs/development/compilers/mrustc/patches/0002-dont-build-llvm.patch
@@ -0,0 +1,14 @@
+--- a/minicargo.mk
++++ b/minicargo.mk
+@@ -116,11 +116,6 @@
+ LLVM_CMAKE_OPTS += CMAKE_BUILD_TYPE=RelWithDebInfo
+
+
+-$(LLVM_CONFIG): $(RUSTCSRC)build/Makefile
+- $Vcd $(RUSTCSRC)build && $(MAKE)
+-$(RUSTCSRC)build/Makefile: $(RUSTCSRC)src/llvm/CMakeLists.txt
+- @mkdir -p $(RUSTCSRC)build
+- $Vcd $(RUSTCSRC)build && cmake $(addprefix -D , $(LLVM_CMAKE_OPTS)) ../src/llvm
+
+
+ #
diff --git a/pkgs/development/compilers/mrustc/patches/0003-echo-newlines.patch b/pkgs/development/compilers/mrustc/patches/0003-echo-newlines.patch
new file mode 100644
index 00000000000..f4a4acca857
--- /dev/null
+++ b/pkgs/development/compilers/mrustc/patches/0003-echo-newlines.patch
@@ -0,0 +1,13 @@
+--- a/run_rustc/Makefile
++++ b/run_rustc/Makefile
+@@ -103,7 +103,9 @@
+ else
+ cp $(OUTDIR)build-rustc/release/rustc_binary $(BINDIR)rustc_binary
+ endif
+- echo '#!/bin/sh\nd=$$(dirname $$0)\nLD_LIBRARY_PATH="$(abspath $(LIBDIR))" $$d/rustc_binary $$@' >$@
++ echo '#!$(shell which bash)' > $@
++ echo 'd=$$(dirname $$0)' >> $@
++ echo 'LD_LIBRARY_PATH="$(abspath $(LIBDIR))" $$d/rustc_binary $$@' >> $@
+ chmod +x $@
+
+ $(BINDIR)hello_world: $(RUST_SRC)test/run-pass/hello.rs $(LIBDIR)libstd.rlib $(BINDIR)rustc
diff --git a/pkgs/development/compilers/mrustc/patches/0004-increase-parallelism.patch b/pkgs/development/compilers/mrustc/patches/0004-increase-parallelism.patch
new file mode 100644
index 00000000000..ce1fec57262
--- /dev/null
+++ b/pkgs/development/compilers/mrustc/patches/0004-increase-parallelism.patch
@@ -0,0 +1,28 @@
+--- a/run_rustc/Makefile
++++ b/run_rustc/Makefile
+@@ -79,14 +79,14 @@
+ @mkdir -p $(OUTDIR)build-std
+ @mkdir -p $(LIBDIR)
+ @echo [CARGO] $(RUST_SRC)libstd/Cargo.toml
+- $VCARGO_TARGET_DIR=$(OUTDIR)build-std RUSTC=$(BINDIR_S)rustc $(CARGO_ENV) $(BINDIR)cargo build --manifest-path $(RUST_SRC)libstd/Cargo.toml -j 1 --release --features panic-unwind
++ $VCARGO_TARGET_DIR=$(OUTDIR)build-std RUSTC=$(BINDIR_S)rustc $(CARGO_ENV) $(BINDIR)cargo build --manifest-path $(RUST_SRC)libstd/Cargo.toml -j $(NIX_BUILD_CORES) --release --features panic-unwind
+ $Vcp --remove-destination $(OUTDIR)build-std/release/deps/*.rlib $(LIBDIR)
+ $Vcp --remove-destination $(OUTDIR)build-std/release/deps/*.so $(LIBDIR)
+ # libtest
+ $(LIBDIR)libtest.rlib: $(BINDIR)rustc_m $(LIBDIR)libstd.rlib $(CARGO_HOME)config
+ @mkdir -p $(OUTDIR)build-test
+ @echo [CARGO] $(RUST_SRC)libtest/Cargo.toml
+- $VCARGO_TARGET_DIR=$(OUTDIR)build-test RUSTC=$(BINDIR)rustc_m $(CARGO_ENV) $(BINDIR)cargo build --manifest-path $(RUST_SRC)libtest/Cargo.toml -j 1 --release
++ $VCARGO_TARGET_DIR=$(OUTDIR)build-test RUSTC=$(BINDIR)rustc_m $(CARGO_ENV) $(BINDIR)cargo build --manifest-path $(RUST_SRC)libtest/Cargo.toml -j $(NIX_BUILD_CORES) --release
+ @mkdir -p $(LIBDIR)
+ $Vcp --remove-destination $(OUTDIR)build-test/release/deps/*.rlib $(LIBDIR)
+ $Vcp --remove-destination $(OUTDIR)build-test/release/deps/*.so $(LIBDIR)
+@@ -95,7 +95,7 @@
+ $(BINDIR)rustc: $(BINDIR)rustc_m $(BINDIR)cargo $(CARGO_HOME)config $(LIBDIR)libtest.rlib
+ @mkdir -p $(PREFIX)tmp
+ @echo [CARGO] $(RUST_SRC)rustc/Cargo.toml
+- $V$(RUSTC_ENV_VARS) TMPDIR=$(abspath $(PREFIX)tmp) CARGO_TARGET_DIR=$(OUTDIR)build-rustc RUSTC=$(BINDIR)rustc_m RUSTC_ERROR_METADATA_DST=$(abspath $(PREFIX)) $(CARGO_ENV) $(BINDIR)cargo build --manifest-path $(RUST_SRC)rustc/Cargo.toml --release -j 1
++ $V$(RUSTC_ENV_VARS) TMPDIR=$(abspath $(PREFIX)tmp) CARGO_TARGET_DIR=$(OUTDIR)build-rustc RUSTC=$(BINDIR)rustc_m RUSTC_ERROR_METADATA_DST=$(abspath $(PREFIX)) $(CARGO_ENV) $(BINDIR)cargo build --manifest-path $(RUST_SRC)rustc/Cargo.toml --release -j $(NIX_BUILD_CORES)
+ cp $(OUTDIR)build-rustc/release/deps/*.so $(LIBDIR)
+ cp $(OUTDIR)build-rustc/release/deps/*.rlib $(LIBDIR)
+ ifeq ($(RUSTC_VERSION),1.19.0)
diff --git a/pkgs/development/compilers/openjdk/jre.nix b/pkgs/development/compilers/openjdk/jre.nix
index 817cdf9c26a..436bd0468c5 100644
--- a/pkgs/development/compilers/openjdk/jre.nix
+++ b/pkgs/development/compilers/openjdk/jre.nix
@@ -1,19 +1,34 @@
-{ jdk
-, runCommand
-, patchelf
+{ stdenv
+, jdk
, lib
, modules ? [ "java.base" ]
}:
let
- jre = runCommand "${jdk.name}-jre" {
- nativeBuildInputs = [ patchelf ];
+ jre = stdenv.mkDerivation {
+ name = "${jdk.name}-minimal-jre";
+ version = jdk.version;
+
buildInputs = [ jdk ];
+
+ dontUnpack = true;
+
+ # Strip more heavily than the default '-S', since if you're
+ # using this derivation you probably care about this.
+ stripDebugFlags = [ "--strip-unneeded" ];
+
+ buildPhase = ''
+ runHook preBuild
+
+ jlink --module-path ${jdk}/lib/openjdk/jmods --add-modules ${lib.concatStringsSep "," modules} --output $out
+
+ runHook postBuild
+ '';
+
+ dontInstall = true;
+
passthru = {
home = "${jre}";
};
- } ''
- jlink --module-path ${jdk}/lib/openjdk/jmods --add-modules ${lib.concatStringsSep "," modules} --output $out
- patchelf --shrink-rpath $out/bin/* $out/lib/jexec $out/lib/jspawnhelper $out/lib/*.so $out/lib/*/*.so
- '';
+ };
in jre
diff --git a/pkgs/development/compilers/roslyn/deps.nix b/pkgs/development/compilers/roslyn/deps.nix
index 0afb482350b..deb72e522cd 100644
--- a/pkgs/development/compilers/roslyn/deps.nix
+++ b/pkgs/development/compilers/roslyn/deps.nix
@@ -137,10 +137,10 @@
}
{
name = "microsoft.netcore.app.host.linux-x64";
- version = "3.1.12";
+ version = "3.1.14";
src = fetchurl {
- url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.host.linux-x64/3.1.12/microsoft.netcore.app.host.linux-x64.3.1.12.nupkg";
- sha256 = "1kp1sb7n1sb012v4k1xfv97n0x7k5r2rn0za8y8nbxjb2a4i4a8n";
+ url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.host.linux-x64/3.1.14/microsoft.netcore.app.host.linux-x64.3.1.14.nupkg";
+ sha256 = "11rqnascx9asfyxgxzwgxgr9gxxndm552k4dn4p1s57ciz7vkg9h";
};
}
{
diff --git a/pkgs/development/compilers/sdcc/default.nix b/pkgs/development/compilers/sdcc/default.nix
index 500c0b4d395..d0ebb57920b 100644
--- a/pkgs/development/compilers/sdcc/default.nix
+++ b/pkgs/development/compilers/sdcc/default.nix
@@ -10,14 +10,16 @@ in
stdenv.mkDerivation rec {
pname = "sdcc";
- version = "4.0.0";
+ version = "4.1.0";
src = fetchurl {
url = "mirror://sourceforge/sdcc/sdcc-src-${version}.tar.bz2";
- sha256 = "042fxw5mnsfhpc0z9lxfsw88kdkm32pwrxacp88kj2n2dy0814a8";
+ sha256 = "0gskzli17ghnn5qllvn4d56qf9bvvclqjh63nnj63p52smvggvc1";
};
- buildInputs = [ autoconf bison boost flex gputils texinfo zlib ];
+ buildInputs = [ boost gputils texinfo zlib ];
+
+ nativeBuildInputs = [ autoconf bison flex ];
configureFlags = map (f: "--disable-${f}-port") excludedPorts;
@@ -32,7 +34,7 @@ stdenv.mkDerivation rec {
PIC18 targets. It can be retargeted for other microprocessors.
'';
homepage = "http://sdcc.sourceforge.net/";
- license = with licenses; if (gputils == null) then gpl2 else unfreeRedistributable;
+ license = with licenses; if (gputils == null) then gpl2Plus else unfreeRedistributable;
maintainers = with maintainers; [ bjornfor yorickvp ];
platforms = platforms.all;
};
diff --git a/pkgs/development/coq-modules/coq-elpi/default.nix b/pkgs/development/coq-modules/coq-elpi/default.nix
index f945096ee9a..0aff0e3b54d 100644
--- a/pkgs/development/coq-modules/coq-elpi/default.nix
+++ b/pkgs/development/coq-modules/coq-elpi/default.nix
@@ -4,7 +4,7 @@ with builtins; with lib; let
elpi = coq.ocamlPackages.elpi.override (lib.switch coq.coq-version [
{ case = "8.11"; out = { version = "1.11.4"; };}
{ case = "8.12"; out = { version = "1.12.0"; };}
- { case = "8.13"; out = { version = "1.13.0"; };}
+ { case = "8.13"; out = { version = "1.13.1"; };}
] {});
in mkCoqDerivation {
pname = "elpi";
@@ -12,19 +12,24 @@ in mkCoqDerivation {
owner = "LPCIC";
inherit version;
defaultVersion = lib.switch coq.coq-version [
- { case = "8.13"; out = "1.9.5"; }
- { case = "8.12"; out = "1.8.2_8.12"; }
- { case = "8.11"; out = "1.6.2_8.11"; }
+ { case = "8.13"; out = "1.9.7"; }
+ { case = "8.12"; out = "1.8.3_8.12"; }
+ { case = "8.11"; out = "1.6.3_8.11"; }
] null;
+ release."1.9.7".sha256 = "0rvn12h9dpk9s4pxy32p8j0a1h7ib7kg98iv1cbrdg25y5vs85n1";
release."1.9.5".sha256 = "0gjdwmb6bvb5gh0a6ra48bz5fb3pr5kpxijb7a8mfydvar5i9qr6";
release."1.9.4".sha256 = "0nii7238mya74f9g6147qmpg6gv6ic9b54x5v85nb6q60d9jh0jq";
release."1.9.3".sha256 = "198irm800fx3n8n56vx1c6f626cizp1d7jfkrc6ba4iqhb62ma0z";
release."1.9.2".sha256 = "1rr2fr8vjkc0is7vh1461aidz2iwkigdkp6bqss4hhv0c3ijnn07";
+ release."1.8.3_8.12".sha256 = "15z2l4zy0qpw0ws7bvsmpmyv543aqghrfnl48nlwzn9q0v89p557";
+ release."1.8.3_8.12".version = "1.8.3";
release."1.8.2_8.12".sha256 = "1n6jwcdazvjgj8vsv2r9zgwpw5yqr5a1ndc2pwhmhqfl04b5dk4y";
release."1.8.2_8.12".version = "1.8.2";
release."1.8.1".sha256 = "1fbbdccdmr8g4wwpihzp4r2xacynjznf817lhijw6kqfav75zd0r";
release."1.8.0".sha256 = "13ywjg94zkbki22hx7s4gfm9rr87r4ghsgan23xyl3l9z8q0idd1";
release."1.7.0".sha256 = "1ws5cqr0xawv69prgygbl3q6dgglbaw0vc397h9flh90kxaqgyh8";
+ release."1.6.3_8.11".sha256 = "1j340cr2bv95clzzkkfmsjkklham1mj84cmiyprzwv20q89zr1hp";
+ release."1.6.3_8.11".version = "1.6.3";
release."1.6.2_8.11".sha256 = "06xrx0ljilwp63ik2sxxr7h617dgbch042xfcnfpy5x96br147rn";
release."1.6.2_8.11".version = "1.6.2";
release."1.6.1_8.11".sha256 = "0yyyh35i1nb3pg4hw7cak15kj4y6y9l84nwar9k1ifdsagh5zq53";
diff --git a/pkgs/development/guile-modules/guile-cairo/default.nix b/pkgs/development/guile-modules/guile-cairo/default.nix
index 15e3ccbb972..1ea76cb237d 100644
--- a/pkgs/development/guile-modules/guile-cairo/default.nix
+++ b/pkgs/development/guile-modules/guile-cairo/default.nix
@@ -1,23 +1,38 @@
-{ lib, stdenv, fetchurl, pkg-config, guile, guile-lib, cairo, expat }:
+{ lib
+, stdenv
+, fetchurl
+, cairo
+, expat
+, guile
+, guile-lib
+, pkg-config
+}:
stdenv.mkDerivation rec {
pname = "guile-cairo";
version = "1.11.2";
src = fetchurl {
- url = "mirror://savannah/guile-cairo/${pname}-${version}.tar.gz";
- sha256 = "0yx0844p61ljd4d3d63qrawiygiw6ks02fwv2cqx7nav5kfd8ck2";
+ url = "mirror://savannah/${pname}/${pname}-${version}.tar.gz";
+ hash = "sha256-YjLU3Cxb2dMxE5s7AfQ0PD4fucp4mDYaaZIGcwlBoHs=";
};
- nativeBuildInputs = [ pkg-config ];
+ nativeBuildInputs = [
+ pkg-config
+ ];
+ buildInputs = [
+ cairo
+ expat
+ guile
+ ];
- buildInputs = [ guile cairo expat ];
enableParallelBuilding = true;
doCheck = false; # Cannot find unit-test module from guile-lib
checkInputs = [ guile-lib ];
meta = with lib; {
+ homepage = "https://www.nongnu.org/guile-cairo/";
description = "Cairo bindings for GNU Guile";
longDescription = ''
Guile-Cairo wraps the Cairo graphics library for Guile Scheme.
@@ -28,7 +43,6 @@ stdenv.mkDerivation rec {
maintained graphics library with all of the benefits of Scheme: memory
management, exceptions, macros, and a dynamic programming environment.
'';
- homepage = "https://www.nongnu.org/guile-cairo/";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.linux;
diff --git a/pkgs/development/guile-modules/guile-commonmark/default.nix b/pkgs/development/guile-modules/guile-commonmark/default.nix
new file mode 100644
index 00000000000..113fad13600
--- /dev/null
+++ b/pkgs/development/guile-modules/guile-commonmark/default.nix
@@ -0,0 +1,42 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+, guile
+, pkg-config
+}:
+
+stdenv.mkDerivation rec {
+ pname = "guile-commonmark";
+ version = "0.1.2";
+
+ src = fetchFromGitHub {
+ owner = "OrangeShark";
+ repo = pname;
+ rev = "v${version}";
+ hash = "sha256-qYDcIiObKOU8lmcfk327LMPx/2Px9ecI3QLrSWWLxMo=";
+ };
+
+ nativeBuildInputs = [
+ autoreconfHook
+ pkg-config
+ ];
+ buildInputs = [
+ guile
+ ];
+
+ # https://github.com/OrangeShark/guile-commonmark/issues/20
+ doCheck = false;
+
+ makeFlags = [
+ "GUILE_AUTO_COMPILE=0"
+ ];
+
+ meta = with lib; {
+ homepage = "https://github.com/OrangeShark/guile-commonmark";
+ description = "Implementation of CommonMark for Guile";
+ license = licenses.lgpl3Plus;
+ maintainers = with maintainers; [ AndersonTorres ];
+ platforms = guile.meta.platforms;
+ };
+}
diff --git a/pkgs/development/guile-modules/guile-fibers/default.nix b/pkgs/development/guile-modules/guile-fibers/default.nix
index 3521853187c..ccc51a5a769 100644
--- a/pkgs/development/guile-modules/guile-fibers/default.nix
+++ b/pkgs/development/guile-modules/guile-fibers/default.nix
@@ -1,26 +1,37 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, guile, texinfo }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+, guile
+, pkg-config
+, texinfo
+}:
-let
+stdenv.mkDerivation rec {
+ pname = "guile-fibers";
version = "1.0.0";
- name = "guile-fibers-${version}";
-in stdenv.mkDerivation {
- inherit name;
src = fetchFromGitHub {
owner = "wingo";
repo = "fibers";
rev = "v${version}";
- sha256 = "1r47m1m112kxf23xny99f0qkqsk6626iyc5jp7vzndfiyp5yskwi";
+ hash = "sha256-kU/ty/XRNfv3ubIwH40wZmo8MXApeduHcH2KEGqoh+Q=";
};
- nativeBuildInputs = [ autoreconfHook pkg-config ];
- buildInputs = [ guile texinfo ];
+ nativeBuildInputs = [
+ autoreconfHook
+ pkg-config
+ ];
+ buildInputs = [
+ guile
+ texinfo
+ ];
autoreconfPhase = "./autogen.sh";
meta = with lib; {
- description = "Concurrent ML-like concurrency for Guile";
homepage = "https://github.com/wingo/fibers";
+ description = "Concurrent ML-like concurrency for Guile";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.linux;
diff --git a/pkgs/development/guile-modules/guile-gnome/default.nix b/pkgs/development/guile-modules/guile-gnome/default.nix
index 2dc07deac5c..ead08ce0231 100644
--- a/pkgs/development/guile-modules/guile-gnome/default.nix
+++ b/pkgs/development/guile-modules/guile-gnome/default.nix
@@ -1,7 +1,21 @@
-{ fetchurl, lib, stdenv, guile, guile-lib, gwrap
-, pkg-config, gconf, glib, gnome_vfs, gtk2
-, libglade, libgnome, libgnomecanvas, libgnomeui
-, pango, guile-cairo, texinfo
+{ lib
+, stdenv
+, fetchurl
+, gconf
+, glib
+, gnome_vfs
+, gtk2
+, guile
+, guile-cairo
+, guile-lib
+, gwrap
+, libglade
+, libgnome
+, libgnomecanvas
+, libgnomeui
+, pango
+, pkg-config
+, texinfo
}:
stdenv.mkDerivation rec {
@@ -10,20 +24,37 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://gnu/guile-gnome/${pname}/${pname}-${version}.tar.gz";
- sha256 = "adabd48ed5993d8528fd604e0aa0d96ad81a61d06da6cdd68323572ad6c216c3";
+ hash = "sha256-ravUjtWZPYUo/WBOCqDZatgaYdBtps3WgyNXKtbCFsM=";
};
+ nativeBuildInputs = [
+ pkg-config
+ texinfo
+ ];
buildInputs = [
- texinfo guile gwrap pkg-config gconf glib gnome_vfs gtk2
- libglade libgnome libgnomecanvas libgnomeui pango guile-cairo
+ gconf
+ glib
+ gnome_vfs
+ gtk2
+ guile
+ guile-cairo
+ gwrap
+ libglade
+ libgnome
+ libgnomecanvas
+ libgnomeui
+ pango
] ++ lib.optional doCheck guile-lib;
# The test suite tries to open an X display, which fails.
doCheck = false;
- GUILE_AUTO_COMPILE = 0;
+ makeFlags = [
+ "GUILE_AUTO_COMPILE=0"
+ ];
meta = with lib; {
+ homepage = "https://www.gnu.org/software/guile-gnome/";
description = "GNOME bindings for GNU Guile";
longDescription = ''
GNU guile-gnome brings the power of Scheme to your graphical application.
@@ -32,7 +63,6 @@ stdenv.mkDerivation rec {
guile-gnome a comprehensive environment for developing modern
applications.
'';
- homepage = "https://www.gnu.org/software/guile-gnome/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.linux;
diff --git a/pkgs/development/guile-modules/guile-lib/default.nix b/pkgs/development/guile-modules/guile-lib/default.nix
index 34299b345ee..50c6a1daefb 100644
--- a/pkgs/development/guile-modules/guile-lib/default.nix
+++ b/pkgs/development/guile-modules/guile-lib/default.nix
@@ -1,20 +1,29 @@
-{ lib, stdenv, fetchurl, guile, texinfo, pkg-config }:
+{ lib
+, stdenv
+, fetchurl
+, guile
+, pkg-config
+, texinfo
+}:
assert stdenv ? cc && stdenv.cc.isGNU;
-let
- name = "guile-lib-${version}";
+stdenv.mkDerivation rec {
+ pname = "guile-lib";
version = "0.2.6.1";
-in stdenv.mkDerivation {
- inherit name;
src = fetchurl {
- url = "mirror://savannah/guile-lib/${name}.tar.gz";
- sha256 = "0aizxdif5dpch9cvs8zz5g8ds5s4xhfnwza2il5ji7fv2h7ks7bd";
+ url = "mirror://savannah/${pname}/${pname}-${version}.tar.gz";
+ hash = "sha256-bR09DxTbnSgLjUJ9bh3sRBfd0Cv/I71Zguy24mLrPyo=";
};
- nativeBuildInputs = [ pkg-config ];
- buildInputs = [ guile texinfo ];
+ nativeBuildInputs = [
+ pkg-config
+ ];
+ buildInputs = [
+ guile
+ texinfo
+ ];
doCheck = true;
@@ -25,6 +34,7 @@ in stdenv.mkDerivation {
'';
meta = with lib; {
+ homepage = "https://www.nongnu.org/guile-lib/";
description = "A collection of useful Guile Scheme modules";
longDescription = ''
guile-lib is intended as an accumulation place for pure-scheme Guile
@@ -32,7 +42,6 @@ in stdenv.mkDerivation {
modules into a coherent library. Think "a down-scaled, limited-scope CPAN
for Guile".
'';
- homepage = "https://www.nongnu.org/guile-lib/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.gnu ++ platforms.linux;
diff --git a/pkgs/development/guile-modules/guile-ncurses/default.nix b/pkgs/development/guile-modules/guile-ncurses/default.nix
index 8f879249a23..1e6418b0c3c 100644
--- a/pkgs/development/guile-modules/guile-ncurses/default.nix
+++ b/pkgs/development/guile-modules/guile-ncurses/default.nix
@@ -1,18 +1,29 @@
-{ lib, stdenv, fetchurl, pkg-config, guile, ncurses, libffi }:
+{ lib
+, stdenv
+, fetchurl
+, pkg-config
+, guile
+, libffi
+, ncurses
+}:
-let
- name = "guile-ncurses-${version}";
+stdenv.mkDerivation rec {
+ pname = "guile-ncurses";
version = "1.7";
-in stdenv.mkDerivation {
- inherit name;
src = fetchurl {
- url = "mirror://gnu/guile-ncurses/${name}.tar.gz";
- sha256 = "153vv75gb7l62sp3666rc97i63rnaqbx2rjar7d9b5w81fhwv4r5";
+ url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
+ hash = "sha256-JZPNoQuIl5XayUpm0RdWNg8TT2LZGDOuFoae9crZe5Q=";
};
- nativeBuildInputs = [ pkg-config ];
- buildInputs = [ guile ncurses libffi ];
+ nativeBuildInputs = [
+ pkg-config
+ ];
+ buildInputs = [
+ guile
+ libffi
+ ncurses
+ ];
preConfigure = ''
configureFlags="$configureFlags --with-guilesitedir=$out/share/guile/site"
@@ -29,6 +40,7 @@ in stdenv.mkDerivation {
doCheck = false;
meta = with lib; {
+ homepage = "https://www.gnu.org/software/guile-ncurses/";
description = "Scheme interface to the NCurses libraries";
longDescription = ''
GNU Guile-Ncurses is a library for the Guile Scheme interpreter that
@@ -36,7 +48,6 @@ in stdenv.mkDerivation {
interface functionality is built on the ncurses libraries: curses, form,
panel, and menu.
'';
- homepage = "https://www.gnu.org/software/guile-ncurses/";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.gnu ++ platforms.linux;
diff --git a/pkgs/development/guile-modules/guile-opengl/default.nix b/pkgs/development/guile-modules/guile-opengl/default.nix
index 5ada5d41c7d..437af0f4edf 100644
--- a/pkgs/development/guile-modules/guile-opengl/default.nix
+++ b/pkgs/development/guile-modules/guile-opengl/default.nix
@@ -1,21 +1,27 @@
-{ lib, stdenv, fetchurl, pkg-config, guile }:
+{ lib
+, stdenv
+, fetchurl
+, guile
+, pkg-config
+}:
-let
- name = "guile-opengl-${version}";
+stdenv.mkDerivation rec {
+ pname = "guile-opengl";
version = "0.1.0";
-in stdenv.mkDerivation {
- inherit name;
src = fetchurl {
- url = "mirror://gnu/guile-opengl/${name}.tar.gz";
- sha256 = "13qfx4xh8baryxqrv986l848ygd0piqwm6s2s90pxk9c0m9vklim";
+ url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
+ hash = "sha256-NdK5UwUszX5B0kKbynG8oD2PCKIGpZ1x91ktBDvpDo8=";
};
- nativeBuildInputs = [ pkg-config guile ];
+ nativeBuildInputs = [
+ pkg-config
+ guile
+ ];
meta = with lib; {
- description = "Guile bindings for the OpenGL graphics API";
homepage = "https://www.gnu.org/software/guile-opengl/";
+ description = "Guile bindings for the OpenGL graphics API";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.unix;
diff --git a/pkgs/development/guile-modules/guile-reader/default.nix b/pkgs/development/guile-modules/guile-reader/default.nix
index eaf402a8605..1675ac0e333 100644
--- a/pkgs/development/guile-modules/guile-reader/default.nix
+++ b/pkgs/development/guile-modules/guile-reader/default.nix
@@ -1,36 +1,49 @@
-{ lib, stdenv, fetchurl, fetchpatch, pkg-config
-, gperf, guile, guile-lib, libffi }:
+{ lib
+, stdenv
+, fetchurl
+, fetchpatch
+, gperf
+, guile
+, guile-lib
+, libffi
+, pkg-config
+}:
stdenv.mkDerivation rec {
-
pname = "guile-reader";
version = "0.6.3";
src = fetchurl {
- url = "http://download.savannah.nongnu.org/releases/guile-reader/${pname}-${version}.tar.gz";
- sha256 = "sha256-OMK0ROrbuMDKt42QpE7D6/9CvUEMW4SpEBjO5+tk0rs=";
+ url = "http://download.savannah.nongnu.org/releases/${pname}/${pname}-${version}.tar.gz";
+ hash = "sha256-OMK0ROrbuMDKt42QpE7D6/9CvUEMW4SpEBjO5+tk0rs=";
};
- nativeBuildInputs = [ pkg-config ];
- buildInputs = [ gperf guile guile-lib libffi ];
+ nativeBuildInputs = [
+ pkg-config
+ ];
+ buildInputs = [
+ gperf
+ guile
+ guile-lib
+ libffi
+ ];
GUILE_SITE="${guile-lib}/share/guile/site";
configureFlags = [ "--with-guilemoduledir=$(out)/share/guile/site" ];
meta = with lib; {
+ homepage = "https://www.nongnu.org/guile-reader/";
description = "A simple framework for building readers for GNU Guile";
longDescription = ''
- Guile-Reader is a simple framework for building readers for GNU
- Guile.
+ Guile-Reader is a simple framework for building readers for GNU Guile.
- The idea is to make it easy to build procedures that extend
- Guile's read procedure. Readers supporting various syntax
- variants can easily be written, possibly by re-using existing
- "token readers" of a standard Scheme readers. For example, it
- is used to implement Skribilo's R5RS-derived document syntax.
+ The idea is to make it easy to build procedures that extend Guile's read
+ procedure. Readers supporting various syntax variants can easily be
+ written, possibly by re-using existing "token readers" of a standard
+ Scheme readers. For example, it is used to implement Skribilo's
+ R5RS-derived document syntax.
'';
- homepage = "https://www.nongnu.org/guile-reader/";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.gnu;
diff --git a/pkgs/development/guile-modules/guile-sdl/default.nix b/pkgs/development/guile-modules/guile-sdl/default.nix
index 8816e7b4ffc..c6e250e6d71 100644
--- a/pkgs/development/guile-modules/guile-sdl/default.nix
+++ b/pkgs/development/guile-modules/guile-sdl/default.nix
@@ -1,5 +1,13 @@
-{ lib, stdenv, fetchurl, pkg-config, guile, buildEnv
-, SDL, SDL_image, SDL_ttf, SDL_mixer
+{ lib
+, stdenv
+, fetchurl
+, SDL
+, SDL_image
+, SDL_mixer
+, SDL_ttf
+, buildEnv
+, guile
+, pkg-config
}:
stdenv.mkDerivation rec {
@@ -8,25 +16,33 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz";
- sha256 = "0cjgs012a9922hn6xqwj66w6qmfs3nycnm56hyykx5n3g5p7ag01";
+ hash = "sha256-ATx1bnnDlj69h6ZUy7wd2lVsuDGS424sFCIlJQLQTzI=";
};
- nativeBuildInputs = [ pkg-config guile ];
-
- buildInputs = [ SDL.dev SDL_image SDL_ttf SDL_mixer ];
-
- GUILE_AUTO_COMPILE = 0;
+ nativeBuildInputs = [
+ guile
+ pkg-config
+ ];
+ buildInputs = [
+ SDL.dev
+ SDL_image
+ SDL_mixer
+ SDL_ttf
+ ];
makeFlags = let
- sdl = buildEnv {
+ sdl-env = buildEnv {
name = "sdl-env";
paths = buildInputs;
};
- in [ "SDLMINUSI=-I${sdl}/include/SDL" ];
+ in [
+ "GUILE_AUTO_COMPILE=0"
+ "SDLMINUSI=-I${sdl-env}/include/SDL"
+ ];
meta = with lib; {
- description = "Guile bindings for SDL";
homepage = "https://www.gnu.org/software/guile-sdl/";
+ description = "Guile bindings for SDL";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.linux;
diff --git a/pkgs/development/guile-modules/guile-sdl2/default.nix b/pkgs/development/guile-modules/guile-sdl2/default.nix
index c3f5fdaefbd..c6fbba93de4 100644
--- a/pkgs/development/guile-modules/guile-sdl2/default.nix
+++ b/pkgs/development/guile-modules/guile-sdl2/default.nix
@@ -1,36 +1,50 @@
-{ lib, stdenv, fetchurl, guile, libtool, pkg-config
-, SDL2, SDL2_image, SDL2_ttf, SDL2_mixer
+{ lib
+, stdenv
+, fetchurl
+, SDL2
+, SDL2_image
+, SDL2_mixer
+, SDL2_ttf
+, guile
+, libtool
+, pkg-config
}:
-let
- name = "${pname}-${version}";
+stdenv.mkDerivation rec {
pname = "guile-sdl2";
version = "0.5.0";
-in stdenv.mkDerivation {
- inherit name;
src = fetchurl {
- url = "https://files.dthompson.us/${pname}/${name}.tar.gz";
- sha256 = "118x0cg7fzbsyrfhy5f9ab7dqp9czgia0ycgzp6sn3nlsdrcnr4m";
+ url = "https://files.dthompson.us/${pname}/${pname}-${version}.tar.gz";
+ hash = "sha256-lWTLctPUDqvN/Y95oOL7LF3czlLJFQ9d9np9dx4DHYU=";
};
- nativeBuildInputs = [ libtool pkg-config ];
+ nativeBuildInputs = [
+ pkg-config
+ libtool
+ ];
buildInputs = [
- guile SDL2 SDL2_image SDL2_ttf SDL2_mixer
+ SDL2
+ SDL2_image
+ SDL2_mixer
+ SDL2_ttf
+ guile
];
configureFlags = [
- "--with-libsdl2-prefix=${SDL2}"
"--with-libsdl2-image-prefix=${SDL2_image}"
- "--with-libsdl2-ttf-prefix=${SDL2_ttf}"
"--with-libsdl2-mixer-prefix=${SDL2_mixer}"
+ "--with-libsdl2-prefix=${SDL2}"
+ "--with-libsdl2-ttf-prefix=${SDL2_ttf}"
];
- makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
+ makeFlags = [
+ "GUILE_AUTO_COMPILE=0"
+ ];
meta = with lib; {
- description = "Bindings to SDL2 for GNU Guile";
homepage = "https://dthompson.us/projects/guile-sdl2.html";
+ description = "Bindings to SDL2 for GNU Guile";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ seppeljordan vyp ];
platforms = platforms.all;
diff --git a/pkgs/development/guile-modules/guile-xcb/default.nix b/pkgs/development/guile-modules/guile-xcb/default.nix
index 2de44524425..72066313eca 100644
--- a/pkgs/development/guile-modules/guile-xcb/default.nix
+++ b/pkgs/development/guile-modules/guile-xcb/default.nix
@@ -1,29 +1,36 @@
-{ lib, stdenv, fetchurl, pkg-config, guile, texinfo }:
+{ lib
+, stdenv
+, fetchurl
+, guile
+, pkg-config
+, texinfo
+}:
-let
- name = "guile-xcb-${version}";
+stdenv.mkDerivation rec {
+ pname = "guile-xcb";
version = "1.3";
-in stdenv.mkDerivation {
- inherit name;
src = fetchurl {
- url = "http://www.markwitmer.com/dist/${name}.tar.gz";
- sha256 = "04dvbqdrrs67490gn4gkq9zk8mqy3mkls2818ha4p0ckhh0pm149";
+ url = "http://www.markwitmer.com/dist/${pname}-${version}.tar.gz";
+ hash = "sha256-iYR6AYSTgUsURAEJTWcdHlc0f8LzEftAIsfonBteuxE=";
};
- nativeBuildInputs = [ pkg-config ];
- buildInputs = [ guile texinfo ];
+ nativeBuildInputs = [
+ pkg-config
+ ];
+ buildInputs = [
+ guile
+ texinfo
+ ];
- preConfigure = ''
- configureFlags="
- --with-guile-site-dir=$out/share/guile/site
- --with-guile-site-ccache-dir=$out/share/guile/site
- ";
- '';
+ configureFlags = [
+ "--with-guile-site-dir=$out/share/guile/site"
+ "--with-guile-site-ccache-dir=$out/share/guile/site"
+ ];
meta = with lib; {
- description = "XCB bindings for Guile";
homepage = "http://www.markwitmer.com/guile-xcb/guile-xcb.html";
+ description = "XCB bindings for Guile";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.linux;
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index d06840865bb..9585af3605e 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1244,15 +1244,6 @@ self: super: {
# Tests disabled and broken override needed because of missing lib chrome-test-utils: https://github.com/reflex-frp/reflex-dom/issues/392
reflex-dom-core = doDistribute (unmarkBroken (dontCheck (doJailbreak super.reflex-dom-core)));
- # Tests disabled and broken override needed because of missing lib chrome-test-utils: https://github.com/reflex-frp/reflex-dom/issues/392
- reflex-dom = appendPatch super.reflex-dom (pkgs.fetchpatch {
- url = https://github.com/reflex-frp/reflex-dom/commit/6aed7b7ebb70372778f1a29a724fcb4de815ba04.patch;
- sha256 = "1ndqw5r85axynmx55ld6qr8ik1i1mkh6wrnkzpxbwyil2ms8mxn0";
- stripLen = 2;
- extraPrefix = "";
- includes = ["reflex-dom.cabal" ];
- });
-
# add unreleased commit fixing version constraint as a patch
# Can be removed if https://github.com/lpeterse/haskell-utc/issues/8 is resolved
utc = appendPatch super.utc (pkgs.fetchpatch {
diff --git a/pkgs/development/interpreters/clojure/babashka.nix b/pkgs/development/interpreters/clojure/babashka.nix
index 8fee25b104c..774bcbe11b2 100644
--- a/pkgs/development/interpreters/clojure/babashka.nix
+++ b/pkgs/development/interpreters/clojure/babashka.nix
@@ -2,17 +2,17 @@
stdenv.mkDerivation rec {
pname = "babashka";
- version = "0.3.1";
+ version = "0.3.5";
reflectionJson = fetchurl {
name = "reflection.json";
- url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-reflection.json";
- sha256 = "0ar2ry07axgrmdb6nsc0786v1a1nwlyvapgxncaaympvn38qk8qf";
+ url = "https://github.com/babashka/${pname}/releases/download/v${version}/${pname}-${version}-reflection.json";
+ sha256 = "sha256-TVFdGFXclJE9GpolKzTGSmeianBdb2Yp3kbNUWlddPw=";
};
src = fetchurl {
- url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar";
- sha256 = "1fapkyq7fcgydy8sls6jzxagfkhgxhwp1rdvjqxdmqk4d82jwrh2";
+ url = "https://github.com/babashka/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar";
+ sha256 = "sha256-tOLT5W5kK38fb9XL9jOQpw0LjHPjbn+BarckbCuwQAc=";
};
dontUnpack = true;
diff --git a/pkgs/development/libraries/SDL2/default.nix b/pkgs/development/libraries/SDL2/default.nix
index 92bd85b1e8c..f70a46e2f8e 100644
--- a/pkgs/development/libraries/SDL2/default.nix
+++ b/pkgs/development/libraries/SDL2/default.nix
@@ -2,7 +2,7 @@
, libGLSupported ? lib.elem stdenv.hostPlatform.system lib.platforms.mesaPlatforms
, openglSupport ? libGLSupported, libGL
, alsaSupport ? stdenv.isLinux && !stdenv.hostPlatform.isAndroid, alsaLib
-, x11Support ? !stdenv.isCygwin && !stdenv.hostPlatform.isAndroid
+, x11Support ? !stdenv.targetPlatform.isWindows && !stdenv.hostPlatform.isAndroid
, libX11, xorgproto, libICE, libXi, libXScrnSaver, libXcursor
, libXinerama, libXext, libXxf86vm, libXrandr
, waylandSupport ? stdenv.isLinux && !stdenv.hostPlatform.isAndroid
@@ -79,6 +79,7 @@ stdenv.mkDerivation rec {
"--disable-oss"
] ++ optional (!x11Support) "--without-x"
++ optional alsaSupport "--with-alsa-prefix=${alsaLib.out}/lib"
+ ++ optional stdenv.targetPlatform.isWindows "--disable-video-opengles"
++ optional stdenv.isDarwin "--disable-sdltest";
# We remove libtool .la files when static libs are requested,
diff --git a/pkgs/development/libraries/ace/default.nix b/pkgs/development/libraries/ace/default.nix
index 85df0b43353..8210bdb4425 100644
--- a/pkgs/development/libraries/ace/default.nix
+++ b/pkgs/development/libraries/ace/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "ace";
- version = "6.5.11";
+ version = "7.0.1";
src = fetchurl {
- url = "http://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
- sha256 = "0fbbysy6aymys30zh5m2bygs84dwwjnbsdl9ipj1rvfrhq8jbylb";
+ url = "https://download.dre.vanderbilt.edu/previous_versions/ACE-${version}.tar.bz2";
+ sha256 = "sha256-5nH5a0tBOcGfA07eeh9EjH0vgT3gTRWYHXoeO+QFQjQ=";
};
enableParallelBuilding = true;
@@ -18,8 +18,9 @@ stdenv.mkDerivation rec {
"-Wno-error=format-security"
];
- patchPhase = ''substituteInPlace ./MPC/prj_install.pl \
- --replace /usr/bin/perl "${perl}/bin/perl"'';
+ postPatch = ''
+ patchShebangs ./MPC/prj_install.pl
+ '';
preConfigure = ''
export INSTALL_PREFIX=$out
@@ -31,10 +32,10 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
+ homepage = "https://www.dre.vanderbilt.edu/~schmidt/ACE.html";
description = "ADAPTIVE Communication Environment";
- homepage = "http://www.dre.vanderbilt.edu/~schmidt/ACE.html";
license = licenses.doc;
+ maintainers = with maintainers; [ nico202 ];
platforms = platforms.linux;
- maintainers = [ maintainers.nico202 ];
};
}
diff --git a/pkgs/development/libraries/afflib/default.nix b/pkgs/development/libraries/afflib/default.nix
index b89683ac053..94970c5a308 100644
--- a/pkgs/development/libraries/afflib/default.nix
+++ b/pkgs/development/libraries/afflib/default.nix
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, zlib, curl, expat, fuse, openssl
-, autoreconfHook, python3
+, autoreconfHook, python3, libiconv
}:
stdenv.mkDerivation rec {
@@ -15,7 +15,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ zlib curl expat openssl python3 ]
- ++ lib.optionals stdenv.isLinux [ fuse ];
+ ++ lib.optionals (with stdenv; isLinux || isDarwin) [ fuse ]
+ ++ lib.optionals stdenv.isDarwin [ libiconv ];
meta = {
homepage = "http://afflib.sourceforge.net/";
diff --git a/pkgs/development/libraries/attr/default.nix b/pkgs/development/libraries/attr/default.nix
index b7c9287b68b..b81afc24ee9 100644
--- a/pkgs/development/libraries/attr/default.nix
+++ b/pkgs/development/libraries/attr/default.nix
@@ -31,7 +31,15 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://savannah.nongnu.org/projects/attr/";
description = "Library and tools for manipulating extended attributes";
- platforms = platforms.linux;
+ platforms = platforms.unix;
license = licenses.gpl2Plus;
+
+ # The build failure on Darwin will likely be solved after upgrading the
+ # macOS SDK in nixpkgs. Check the current SDK version in
+ # ../../../../os-specific/darwin/apple-sdk/default.nix to see if it has
+ # been updated to 10.13 or later. Once the requirements are met, building
+ # it should be straightforward as Homebrew was able to build it without
+ # patching.
+ broken = stdenv.isDarwin;
};
}
diff --git a/pkgs/development/libraries/bootil/default.nix b/pkgs/development/libraries/bootil/default.nix
index 20ca175d7b8..a2045e38143 100644
--- a/pkgs/development/libraries/bootil/default.nix
+++ b/pkgs/development/libraries/bootil/default.nix
@@ -1,24 +1,20 @@
-{ lib, stdenv, fetchFromGitHub, fetchpatch, premake4 }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, premake4
+}:
stdenv.mkDerivation {
pname = "bootil";
- version = "unstable-2015-12-17";
+ version = "unstable-2019-11-18";
src = fetchFromGitHub {
owner = "garrynewman";
repo = "bootil";
- rev = "1d3e321fc2be359e2350205b8c7f1cad2164ee0b";
- sha256 = "03wq526r80l2px797hd0n5m224a6jibwipcbsvps6l9h740xabzg";
+ rev = "beb4cec8ad29533965491b767b177dc549e62d23";
+ sha256 = "1njdj6nvmwf7j2fwqbyvd1cf5l52797vk2wnsliylqdzqcjmfpij";
};
- patches = [
- (fetchpatch {
- url = "https://github.com/garrynewman/bootil/pull/22.patch";
- name = "github-pull-request-22.patch";
- sha256 = "1qf8wkv00pb9w1aa0dl89c8gm4rmzkxfl7hidj4gz0wpy7a24qa2";
- })
- ];
-
# Avoid guessing where files end up. Just use current directory.
postPatch = ''
substituteInPlace projects/premake4.lua \
@@ -28,6 +24,7 @@ stdenv.mkDerivation {
'';
nativeBuildInputs = [ premake4 ];
+
premakefile = "projects/premake4.lua";
installPhase = ''
@@ -40,8 +37,7 @@ stdenv.mkDerivation {
homepage = "https://github.com/garrynewman/bootil";
# License unsure - see https://github.com/garrynewman/bootil/issues/21
license = licenses.free;
- maintainers = [ maintainers.abigailbuccaneer ];
- platforms = platforms.all;
+ maintainers = with maintainers; [ abigailbuccaneer ];
# Build uses `-msse` and `-mfpmath=sse`
badPlatforms = [ "aarch64-linux" ];
};
diff --git a/pkgs/development/libraries/boringssl/default.nix b/pkgs/development/libraries/boringssl/default.nix
index aa3eeef48a5..f8c27f96dcc 100644
--- a/pkgs/development/libraries/boringssl/default.nix
+++ b/pkgs/development/libraries/boringssl/default.nix
@@ -1,22 +1,39 @@
-{ lib, stdenv, fetchgit, cmake, perl, go }:
+{ lib
+, stdenv
+, fetchgit
+, cmake
+, ninja
+, perl
+, buildGoModule
+}:
# reference: https://boringssl.googlesource.com/boringssl/+/2661/BUILDING.md
-stdenv.mkDerivation {
+buildGoModule {
pname = "boringssl";
- version = "2019-12-04";
+ version = "2021-04-18";
src = fetchgit {
url = "https://boringssl.googlesource.com/boringssl";
- rev = "243b5cc9e33979ae2afa79eaa4e4c8d59db161d4";
- sha256 = "1ak27dln0zqy2vj4llqsb99g03sk0sg25wlp09b58cymrh3gccvl";
+ rev = "468cde90ca58421d63f4dfeaebcf8bb3fccb4127";
+ sha256 = "0gaqcbvp6r5fq265mckmg0i0rjab0bhxkxcvfxp3ar5dm7q88w39";
};
- nativeBuildInputs = [ cmake perl go ];
+ nativeBuildInputs = [ cmake ninja perl ];
- makeFlags = [ "GOCACHE=$(TMPDIR)/go-cache" ];
+ vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
+
+ # hack to get both go and cmake configure phase
+ # (if we use postConfigure then cmake will loop runHook postConfigure)
+ preBuild = ''
+ cmakeConfigurePhase
+ '';
+
+ buildPhase = ''
+ ninjaBuildPhase
+ '';
# CMAKE_OSX_ARCHITECTURES is set to x86_64 by Nix, but it confuses boringssl on aarch64-linux.
- cmakeFlags = lib.optionals (stdenv.isLinux) [ "-DCMAKE_OSX_ARCHITECTURES=" ];
+ cmakeFlags = [ "-GNinja" ] ++ lib.optionals (stdenv.isLinux) [ "-DCMAKE_OSX_ARCHITECTURES=" ];
installPhase = ''
mkdir -p $bin/bin $out/include $out/lib
diff --git a/pkgs/development/libraries/caf/default.nix b/pkgs/development/libraries/caf/default.nix
index 944b5276c5a..a5baef8af1e 100644
--- a/pkgs/development/libraries/caf/default.nix
+++ b/pkgs/development/libraries/caf/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "actor-framework";
- version = "0.18.0";
+ version = "0.18.1";
src = fetchFromGitHub {
owner = "actor-framework";
repo = "actor-framework";
rev = version;
- sha256 = "1c3spd6vm1h9qhlk5c4fdwi6nbqx5vwz2zvv6qp0rj1hx6xpq3cx";
+ sha256 = "sha256-tRR+YFI/Ikf4rov4dzt59nDqaooALNspKEQehHP6sKU=";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/libraries/cxxopts/default.nix b/pkgs/development/libraries/cxxopts/default.nix
index ddbc845e3b4..1df570d7d29 100644
--- a/pkgs/development/libraries/cxxopts/default.nix
+++ b/pkgs/development/libraries/cxxopts/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "cxxopts";
- version = "2.2.1";
+ version = "unstable-2020-12-14";
src = fetchFromGitHub {
owner = "jarro2783";
repo = name;
- rev = "v${version}";
- sha256 = "0d3y747lsh1wkalc39nxd088rbypxigm991lk3j91zpn56whrpha";
+ rev = "2d8e17c4f88efce80e274cb03eeb902e055a91d3";
+ sha256 = "0pwrac81zfqjs17g3hx8r3ds2xf04npb6mz111qjy4bx17314ib7";
};
buildInputs = lib.optional enableUnicodeHelp [ icu.dev ];
diff --git a/pkgs/development/libraries/eigen/2.0.nix b/pkgs/development/libraries/eigen/2.0.nix
index a2b1ba47e2d..a1633594636 100644
--- a/pkgs/development/libraries/eigen/2.0.nix
+++ b/pkgs/development/libraries/eigen/2.0.nix
@@ -6,19 +6,18 @@ stdenv.mkDerivation rec {
src = fetchFromGitLab {
owner = "libeigen";
- repo = "eigen";
+ repo = pname;
rev = version;
- sha256 = "0d4knrcz04pxmxaqs5r3wv092950kl1z9wsw87vdzi9kgvc6wl0b";
+ hash = "sha256-C1Bu2H4zxd/2QVzz9AOdoCSRwOYjF41Vr/0S8Fm2kzQ=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
+ homepage = "https://eigen.tuxfamily.org";
description = "C++ template library for linear algebra: vectors, matrices, and related algorithms";
license = licenses.lgpl3Plus;
- homepage = "https://eigen.tuxfamily.org";
- maintainers = with lib.maintainers; [ sander raskin ];
- branch = "2";
- platforms = with lib.platforms; unix;
+ maintainers = with maintainers; [ sander raskin ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/eigen/default.nix b/pkgs/development/libraries/eigen/default.nix
index 079269521c7..a16cb628008 100644
--- a/pkgs/development/libraries/eigen/default.nix
+++ b/pkgs/development/libraries/eigen/default.nix
@@ -1,4 +1,8 @@
-{ lib, stdenv, fetchFromGitLab, cmake }:
+{ lib
+, stdenv
+, fetchFromGitLab
+, cmake
+}:
stdenv.mkDerivation rec {
pname = "eigen";
@@ -6,9 +10,9 @@ stdenv.mkDerivation rec {
src = fetchFromGitLab {
owner = "libeigen";
- repo = "eigen";
+ repo = pname;
rev = version;
- sha256 = "1i3cvg8d70dk99fl3lrv3wqhfpdnm5kx01fl7r2bz46sk9bphwm1";
+ hash = "sha256-oXJ4V5rakL9EPtQF0Geptl0HMR8700FdSrOB09DbbMQ=";
};
patches = [
@@ -18,11 +22,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
meta = with lib; {
+ homepage = "https://eigen.tuxfamily.org";
description = "C++ template library for linear algebra: vectors, matrices, and related algorithms";
license = licenses.lgpl3Plus;
- homepage = "https://eigen.tuxfamily.org";
+ maintainers = with maintainers; [ sander raskin ];
platforms = platforms.unix;
- maintainers = with lib.maintainers; [ sander raskin ];
- inherit version;
};
}
diff --git a/pkgs/development/libraries/freeimage/default.nix b/pkgs/development/libraries/freeimage/default.nix
index 5714131416d..b50783e2719 100644
--- a/pkgs/development/libraries/freeimage/default.nix
+++ b/pkgs/development/libraries/freeimage/default.nix
@@ -29,6 +29,10 @@ stdenv.mkDerivation {
preInstall = ''
mkdir -p $INCDIR $INSTALLDIR
+ ''
+ # Workaround for Makefiles.osx not using ?=
+ + lib.optionalString stdenv.isDarwin ''
+ makeFlagsArray+=( "INCDIR=$INCDIR" "INSTALLDIR=$INSTALLDIR" )
'';
postInstall = lib.optionalString (!stdenv.isDarwin) ''
diff --git a/pkgs/development/libraries/igraph/default.nix b/pkgs/development/libraries/igraph/default.nix
index bcd0fcee92c..86b8b7130ff 100644
--- a/pkgs/development/libraries/igraph/default.nix
+++ b/pkgs/development/libraries/igraph/default.nix
@@ -1,7 +1,6 @@
{ stdenv
, lib
, fetchFromGitHub
-, fetchpatch
, arpack
, bison
, blas
@@ -22,23 +21,15 @@
stdenv.mkDerivation rec {
pname = "igraph";
- version = "0.9.1";
+ version = "0.9.2";
src = fetchFromGitHub {
owner = "igraph";
repo = pname;
rev = version;
- sha256 = "sha256-i6Zg6bfHZ9NHwqCouX9m9YqD0VtiWW8DEkxS0hdUyIE=";
+ sha256 = "sha256-Ylw02Mz9H4wIWfq59za/X7xfhgW9o0DNU55nLFqeUeo=";
};
- patches = [
- (fetchpatch {
- name = "pkg-config-paths.patch";
- url = "https://github.com/igraph/igraph/commit/980521cc948777df471893f7b6de8f3e3916a3c0.patch";
- sha256 = "0mbq8v5h90c3dhgmyjazjvva3rn57qhnv7pkc9hlbqdln9gpqg0g";
- })
- ];
-
# Normally, igraph wants us to call bootstrap.sh, which will call
# tools/getversion.sh. Instead, we're going to put the version directly
# where igraph wants, and then let autoreconfHook do the rest of the
@@ -55,7 +46,9 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" "doc" ];
nativeBuildInputs = [
+ bison
cmake
+ flex
fop
libxml2
libxslt
@@ -67,9 +60,7 @@ stdenv.mkDerivation rec {
buildInputs = [
arpack
- bison
blas
- flex
glpk
gmp
lapack
diff --git a/pkgs/development/libraries/intel-media-sdk/default.nix b/pkgs/development/libraries/intel-media-sdk/default.nix
index dd605aaae5c..715e5621458 100644
--- a/pkgs/development/libraries/intel-media-sdk/default.nix
+++ b/pkgs/development/libraries/intel-media-sdk/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
pname = "intel-media-sdk";
- version = "20.4.1";
+ version = "20.5.1";
src = fetchFromGitHub {
owner = "Intel-Media-SDK";
repo = "MediaSDK";
rev = "intel-mediasdk-${version}";
- sha256 = "0qnq43qjcmzkn6v2aymzi3kycndk9xw6m5f5g5sz5x53nz556bp0";
+ sha256 = "0l5m7r8585ycifbbi5i0bs63c9sb8rsmk43ik97mhfl1ivswf1mv";
};
nativeBuildInputs = [ cmake pkg-config ];
diff --git a/pkgs/development/libraries/iodash/0001-Add-cmake-install-directives.patch b/pkgs/development/libraries/iodash/0001-Add-cmake-install-directives.patch
new file mode 100644
index 00000000000..1868a741920
--- /dev/null
+++ b/pkgs/development/libraries/iodash/0001-Add-cmake-install-directives.patch
@@ -0,0 +1,44 @@
+From 89c7c160f897f64e17fb74efffccfd1fc16f8b7d Mon Sep 17 00:00:00 2001
+From: Jappie Klooster
+Date: Fri, 2 Apr 2021 14:22:02 -0400
+Subject: [PATCH] Add cmake install directives.
+
+To make nix builds work, it expect a `make install` command to
+be available.
+Adding these directives seems to fix the build.
+
+If it's no trouble to you, please add them.
+
+Maybe don't need endian
+---
+ CMakeLists.txt | 10 ++++++++++
+ 1 file changed, 10 insertions(+)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 06e416f..8d6f489 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -6,6 +6,8 @@ set(CMAKE_CXX_STANDARD 17)
+ add_library(IODash INTERFACE)
+ target_include_directories(IODash INTERFACE .)
+
++include(GNUInstallDirs)
++
+ add_executable(IODash_Test test.cpp)
+ target_link_libraries(IODash_Test IODash)
+
+@@ -20,3 +22,11 @@ if (DEFINED BUILD_BENCHMARKS AND (${BUILD_BENCHMARKS}))
+ target_link_libraries(boost_Benchmark_HTTP boost_system pthread)
+ endif()
+
++install(TARGETS IODash
++ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
++install(FILES IODash.hpp
++ DESTINATION include/)
++
++install(FILES
++ IODash/Buffer.hpp IODash/SocketAddress.hpp IODash/File.hpp IODash/Socket.hpp IODash/EventLoop.hpp IODash/Serial.hpp IODash/Timer.hpp
++ DESTINATION include/IODash)
+--
+2.29.2
+
diff --git a/pkgs/development/libraries/iodash/default.nix b/pkgs/development/libraries/iodash/default.nix
new file mode 100644
index 00000000000..d8982f0f8c0
--- /dev/null
+++ b/pkgs/development/libraries/iodash/default.nix
@@ -0,0 +1,27 @@
+{ lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
+
+stdenv.mkDerivation rec {
+ pname = "iodash";
+ version = "0.1.7";
+
+ src = fetchFromGitHub {
+ owner = "YukiWorkshop";
+ repo = "IODash";
+ rev = "9dcb26621a9c17dbab704b5bab0c3a5fc72624cb";
+ sha256 = "0db5y2206fwh3h1pzjm9hy3m76inm0xpm1c5gvrladz6hiqfp7bx";
+ fetchSubmodules = true;
+ };
+ # adds missing cmake install directives
+ # https://github.com/YukiWorkshop/IODash/pull/2
+ patches = [ ./0001-Add-cmake-install-directives.patch];
+
+ nativeBuildInputs = [ cmake pkg-config ];
+
+ meta = with lib; {
+ homepage = "https://github.com/YukiWorkshop/IODash";
+ description = "Lightweight C++ I/O library for POSIX operation systems";
+ license = licenses.mit;
+ maintainers = with maintainers; [ jappie ];
+ platforms = with platforms; linux;
+ };
+}
diff --git a/pkgs/development/libraries/kissfft/0001-pkgconfig-darwin.patch b/pkgs/development/libraries/kissfft/0001-pkgconfig-darwin.patch
new file mode 100644
index 00000000000..534d46f0c8b
--- /dev/null
+++ b/pkgs/development/libraries/kissfft/0001-pkgconfig-darwin.patch
@@ -0,0 +1,48 @@
+From c0dc376be9154d143574a818417ceed23308b5f2 Mon Sep 17 00:00:00 2001
+From: OPNA2608
+Date: Sun, 18 Apr 2021 01:45:20 +0200
+Subject: [PATCH] pkgconfig darwin
+
+---
+ Makefile | 4 ----
+ 1 file changed, 4 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index 971c6d6..0f4be0c 100644
+--- a/Makefile
++++ b/Makefile
+@@ -153,7 +153,6 @@ endif
+ # -DKISS_FFT_BUILD to TYPEFLAGS
+ #
+
+-ifneq ($(shell uname -s),Darwin)
+ PKGCONFIG_KISSFFT_VERSION = $(KFVER_MAJOR).$(KFVER_MINOR).$(KFVER_PATCH)
+ PKGCONFIG_KISSFFT_OUTPUT_NAME = $(KISSFFTLIB_SHORTNAME)
+ PKGCONFIG_PKG_KISSFFT_DEFS = $(TYPEFLAGS)
+@@ -170,7 +169,6 @@ ifneq ($(shell uname -s),Darwin)
+ PKGCONFIG_KISSFFT_LIBDIR = $(ABS_LIBDIR)
+ endif
+ PKGCONFIG_KISSFFT_PKGINCLUDEDIR = $${includedir}/kissfft
+-endif
+
+ export TYPEFLAGS
+
+@@ -226,7 +224,6 @@ ifneq ($(KISSFFT_STATIC), 1)
+ ln -sf $(KISSFFTLIB_NAME) $(KISSFFTLIB_SODEVELNAME)
+ endif
+ endif
+-ifneq ($(shell uname -s),Darwin)
+ mkdir "$(ABS_LIBDIR)/pkgconfig"
+ sed \
+ -e 's+@PKGCONFIG_KISSFFT_VERSION@+$(PKGCONFIG_KISSFFT_VERSION)+' \
+@@ -238,7 +235,6 @@ ifneq ($(shell uname -s),Darwin)
+ -e 's+@PKGCONFIG_KISSFFT_LIBDIR@+$(PKGCONFIG_KISSFFT_LIBDIR)+' \
+ -e 's+@PKGCONFIG_KISSFFT_PKGINCLUDEDIR@+$(PKGCONFIG_KISSFFT_PKGINCLUDEDIR)+' \
+ kissfft.pc.in 1>"$(ABS_LIBDIR)/pkgconfig/$(KISSFFT_PKGCONFIG)"
+-endif
+ ifneq ($(KISSFFT_TOOLS), 0)
+ make -C tools install
+ endif
+--
+2.29.3
+
diff --git a/pkgs/development/libraries/kissfft/default.nix b/pkgs/development/libraries/kissfft/default.nix
index fe52adfa20d..abc96a40a97 100644
--- a/pkgs/development/libraries/kissfft/default.nix
+++ b/pkgs/development/libraries/kissfft/default.nix
@@ -1,45 +1,80 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchFromGitHub
-, fetchpatch
+, fftw
+, fftwFloat
+, python3
+, datatype ? "double"
+, withTools ? false
+, libpng
+, enableStatic ? stdenv.hostPlatform.isStatic
+, enableOpenmp ? false
+, llvmPackages
}:
-
+let
+ py = python3.withPackages (ps: with ps; [ numpy ]);
+ option = cond: if cond then "1" else "0";
+in
stdenv.mkDerivation rec {
- pname = "kissfft";
- version = "131";
+ pname = "kissfft-${datatype}${lib.optionalString enableOpenmp "-openmp"}";
+ version = "131.1.0";
src = fetchFromGitHub {
owner = "mborgerding";
- repo = pname;
- rev = "v${version}";
- sha256 = "0axmqav2rclw02mix55cch9xl5py540ac15xbmq7xq6n3k492ng2";
+ repo = "kissfft";
+ rev = version;
+ sha256 = "1yfws5bn4kh62yk6hdyp9h9775l6iz7wsfisbn58jap6b56s8j5s";
};
patches = [
- # Allow installation into our prefix
- # Fix installation on Darwin
- # Create necessary directories
- # Make datatype configurable
- (fetchpatch {
- url = "https://github.com/mborgerding/kissfft/pull/38.patch";
- sha256 = "0cp1awl7lr2vqmcwm9lfjs4b4dv9da8mg4hfd821r5ryadpyijj6";
- })
- # Install headers as well
- (fetchpatch {
- url = "https://github.com/mborgerding/kissfft/commit/71df949992d2dbbe15ce707cf56c3fa1e43b1080.patch";
- sha256 = "13h4kzsj388mxxv6napp4gx2ymavz9xk646mnyp1i852dijpmapm";
- })
+ ./0001-pkgconfig-darwin.patch
];
- postPatch = ''
- substituteInPlace Makefile \
- --replace "gcc" "${stdenv.cc.targetPrefix}cc" \
- --replace "ar" "${stdenv.cc.targetPrefix}ar"
+ # https://bugs.llvm.org/show_bug.cgi?id=45034
+ postPatch = lib.optionalString (stdenv.hostPlatform.isLinux && stdenv.cc.isClang && lib.versionOlder stdenv.cc.version "10") ''
+ substituteInPlace test/Makefile \
+ --replace "-ffast-math" ""
+ ''
+ + lib.optionalString (stdenv.hostPlatform.isDarwin) ''
+ substituteInPlace test/Makefile \
+ --replace "LD_LIBRARY_PATH" "DYLD_LIBRARY_PATH"
+ # Don't know how to make math.h's double long constants available
+ substituteInPlace test/testcpp.cc \
+ --replace "M_PIl" "M_PI"
'';
+
makeFlags = [
"PREFIX=${placeholder "out"}"
- "DATATYPE=double"
+ "KISSFFT_DATATYPE=${datatype}"
+ "KISSFFT_TOOLS=${option withTools}"
+ "KISSFFT_STATIC=${option enableStatic}"
+ "KISSFFT_OPENMP=${option enableOpenmp}"
];
+ buildInputs = lib.optionals (withTools && datatype != "simd") [ libpng ]
+ # TODO: This may mismatch the LLVM version in the stdenv, see #79818.
+ ++ lib.optional (enableOpenmp && stdenv.cc.isClang) llvmPackages.openmp;
+
+ doCheck = true;
+
+ checkInputs = [
+ py
+ (if datatype == "float" then fftwFloat else fftw)
+ ];
+
+ checkFlags = [ "testsingle" ];
+
+ postInstall = ''
+ ln -s ${pname}.pc $out/lib/pkgconfig/kissfft.pc
+ '';
+
+ # Tools can't find kissfft libs on Darwin
+ postFixup = lib.optionalString (withTools && stdenv.hostPlatform.isDarwin) ''
+ for bin in $out/bin/*; do
+ install_name_tool -change lib${pname}.dylib $out/lib/lib${pname}.dylib $bin
+ done
+ '';
+
meta = with lib; {
description = "A mixed-radix Fast Fourier Transform based up on the KISS principle";
homepage = "https://github.com/mborgerding/kissfft";
diff --git a/pkgs/development/libraries/libcaca/default.nix b/pkgs/development/libraries/libcaca/default.nix
index ca879a60c7a..f12409f271f 100644
--- a/pkgs/development/libraries/libcaca/default.nix
+++ b/pkgs/development/libraries/libcaca/default.nix
@@ -1,40 +1,75 @@
-{ lib, stdenv, fetchurl, ncurses, zlib, pkg-config, imlib2
-, x11Support ? !stdenv.isDarwin, libX11, libXext
+{ lib
+, stdenv
+, fetchurl
+, imlib2
+, libX11
+, libXext
+, ncurses
+, pkg-config
+, x11Support ? !stdenv.isDarwin
+, zlib
}:
stdenv.mkDerivation rec {
- name = "libcaca-0.99.beta19";
+ pname = "libcaca";
+ version = "0.99.beta19";
src = fetchurl {
urls = [
- "http://fossies.org/linux/privat/${name}.tar.gz"
- "http://caca.zoy.org/files/libcaca/${name}.tar.gz"
+ "http://fossies.org/linux/privat/${pname}-${version}.tar.gz"
+ "http://caca.zoy.org/files/libcaca/${pname}-${version}.tar.gz"
];
- sha256 = "1x3j6yfyxl52adgnabycr0n38j9hx2j74la0hz0n8cnh9ry4d2qj";
+ hash = "sha256-EotGfE7QMmTBh0BRcqToMEk0LMjML2VfU6LQ7p03cvQ=";
};
outputs = [ "bin" "dev" "out" "man" ];
configureFlags = [
(if x11Support then "--enable-x11" else "--disable-x11")
- ];
+ ];
NIX_CFLAGS_COMPILE = lib.optionalString (!x11Support) "-DX_DISPLAY_MISSING";
enableParallelBuilding = true;
- propagatedBuildInputs = [ ncurses zlib pkg-config (imlib2.override { inherit x11Support; }) ]
- ++ lib.optionals x11Support [ libX11 libXext ];
+ nativeBuildInputs = [
+ pkg-config
+ ];
+ buildInputs = [
+ ncurses
+ zlib
+ (imlib2.override { inherit x11Support; })
+ ] ++ lib.optionals x11Support [
+ libX11
+ libXext
+ ];
postInstall = ''
mkdir -p $dev/bin
mv $bin/bin/caca-config $dev/bin/caca-config
'';
- meta = {
- homepage = "http://libcaca.zoy.org/";
+ meta = with lib; {
+ homepage = "http://caca.zoy.org/wiki/libcaca";
description = "A graphics library that outputs text instead of pixels";
- license = lib.licenses.wtfpl;
- platforms = lib.platforms.unix;
+ longDescription = ''
+ libcaca is a graphics library that outputs text instead of pixels, so that
+ it can work on older video cards or text terminals. It is not unlike the
+ famous AAlib library, with the following improvements:
+
+ - Unicode support
+ - 2048 available colours (some devices can only handle 16)
+ - dithering of colour images
+ - advanced text canvas operations (blitting, rotations)
+
+ Libcaca works in a text terminal (and should thus work on all Unix systems
+ including Mac OS X) using the S-Lang or ncurses libraries. It also works
+ natively on DOS and Windows.
+
+ Libcaca was written by Sam Hocevar and Jean-Yves Lamoureux.
+ '';
+ license = licenses.wtfpl;
+ maintainers = with maintainers; [ AndersonTorres ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/libconfig/default.nix b/pkgs/development/libraries/libconfig/default.nix
index ae5f1176463..7387e9edc5b 100644
--- a/pkgs/development/libraries/libconfig/default.nix
+++ b/pkgs/development/libraries/libconfig/default.nix
@@ -11,11 +11,13 @@ stdenv.mkDerivation rec {
doCheck = true;
+ configureFlags = lib.optional stdenv.targetPlatform.isWindows "--disable-examples";
+
meta = with lib; {
homepage = "http://www.hyperrealm.com/libconfig";
description = "A simple library for processing structured configuration files";
license = licenses.lgpl3;
maintainers = [ maintainers.goibhniu ];
- platforms = platforms.linux ++ platforms.darwin;
+ platforms = with platforms; linux ++ darwin ++ windows;
};
}
diff --git a/pkgs/development/libraries/libevdevplus/0001-Add-cmake-install-directives.patch b/pkgs/development/libraries/libevdevplus/0001-Add-cmake-install-directives.patch
new file mode 100644
index 00000000000..2635d6ab829
--- /dev/null
+++ b/pkgs/development/libraries/libevdevplus/0001-Add-cmake-install-directives.patch
@@ -0,0 +1,41 @@
+From 7f208aaf21aa468013fc41e67c32f6a6c8c08249 Mon Sep 17 00:00:00 2001
+From: Jappie Klooster
+Date: Fri, 2 Apr 2021 16:01:05 -0400
+Subject: [PATCH] Add cmake install directives
+
+To make nix builds work, it expect a make install command to
+be available.
+Adding these directives seems to fix the build.
+
+If it's no trouble to you, please add them.
+---
+ CMakeLists.txt | 9 ++++++++-
+ 1 file changed, 8 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index f9db618..425d391 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -4,10 +4,17 @@ project(libevdevPlus)
+ set(SOURCE_FILES
+ evdevPlus.cpp evdevPlus.hpp CommonIncludes.hpp InputEvent.hpp Resource.cpp)
+
++include(GNUInstallDirs)
++
+ add_library(evdevPlus ${SOURCE_FILES})
+ target_include_directories(evdevPlus PUBLIC .)
+
+ add_executable(evdevPlus_test test.cpp)
+ target_link_libraries(evdevPlus_test evdevPlus)
+
+-configure_file(evdevPlus.pc.in evdevPlus.pc @ONLY)
+\ No newline at end of file
++configure_file(evdevPlus.pc.in evdevPlus.pc @ONLY)
++
++install(TARGETS evdevPlus
++ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
++install(FILES evdevPlus.hpp CommonIncludes.hpp InputEvent.hpp
++ DESTINATION include/)
+--
+2.29.2
+
diff --git a/pkgs/development/libraries/libevdevplus/default.nix b/pkgs/development/libraries/libevdevplus/default.nix
index 66c5f1b0696..11d644cd90d 100644
--- a/pkgs/development/libraries/libevdevplus/default.nix
+++ b/pkgs/development/libraries/libevdevplus/default.nix
@@ -2,13 +2,17 @@
stdenv.mkDerivation rec {
pname = "libevdevplus";
- version = "unstable-2019-10-01";
+ version = "unstable-2021-04-02";
+
+ # adds missing cmake install directives
+ # https://github.com/YukiWorkshop/libevdevPlus/pull/10
+ patches = [ ./0001-Add-cmake-install-directives.patch];
src = fetchFromGitHub {
owner = "YukiWorkshop";
repo = "libevdevPlus";
- rev = "e863df2ade43e2c7d7748cc33ca27fb3eed325ca";
- sha256 = "18z6pn4j7fhmwwh0q22ip5nn7sc1hfgwvkdzqhkja60i8cw2cvvj";
+ rev = "b4d4b3143056424a3da9f0516ca02a47209ef757";
+ sha256 = "09y65s16gch0w7fy1s9yjk9gz3bjzxix36h5wmwww6lkj2i1z3rj";
};
nativeBuildInputs = [ cmake pkg-config ];
diff --git a/pkgs/development/libraries/libpcap/default.nix b/pkgs/development/libraries/libpcap/default.nix
index c04d4a001a1..a44fde01860 100644
--- a/pkgs/development/libraries/libpcap/default.nix
+++ b/pkgs/development/libraries/libpcap/default.nix
@@ -17,10 +17,7 @@ stdenv.mkDerivation rec {
# We need to force the autodetection because detection doesn't
# work in pure build environments.
configureFlags = [
- ("--with-pcap=" + {
- linux = "linux";
- darwin = "bpf";
- }.${stdenv.hostPlatform.parsed.kernel.name})
+ "--with-pcap=${if stdenv.isLinux then "linux" else "bpf"}"
] ++ optionals stdenv.isDarwin [
"--disable-universal"
] ++ optionals (stdenv.hostPlatform == stdenv.buildPlatform)
diff --git a/pkgs/development/libraries/libplacebo/default.nix b/pkgs/development/libraries/libplacebo/default.nix
index 210542e0c98..478e01f3575 100644
--- a/pkgs/development/libraries/libplacebo/default.nix
+++ b/pkgs/development/libraries/libplacebo/default.nix
@@ -16,14 +16,14 @@
stdenv.mkDerivation rec {
pname = "libplacebo";
- version = "3.120.1";
+ version = "3.120.2";
src = fetchFromGitLab {
domain = "code.videolan.org";
owner = "videolan";
repo = pname;
rev = "v${version}";
- sha256 = "0x7jyzsdf884jrky4yci151pk4nzsz1w88wz8sk0cqing7bpaq16";
+ sha256 = "0wh5w7bx789ynnzr27xi0csql4jaxq80csawg6znabw3ld54wb86";
};
nativeBuildInputs = [
diff --git a/pkgs/development/libraries/libraspberrypi/default.nix b/pkgs/development/libraries/libraspberrypi/default.nix
index d4d69ed6aff..8ffe8f488b2 100644
--- a/pkgs/development/libraries/libraspberrypi/default.nix
+++ b/pkgs/development/libraries/libraspberrypi/default.nix
@@ -35,6 +35,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/raspberrypi/userland";
license = licenses.bsd3;
platforms = [ "armv6l-linux" "armv7l-linux" "aarch64-linux" "x86_64-linux" ];
- maintainers = with maintainers; [ dezgeg tavyc tkerber ];
+ maintainers = with maintainers; [ dezgeg tkerber ];
};
}
diff --git a/pkgs/development/libraries/librtlsdr/default.nix b/pkgs/development/libraries/librtlsdr/default.nix
index d0bb379a70d..61f4045b785 100644
--- a/pkgs/development/libraries/librtlsdr/default.nix
+++ b/pkgs/development/libraries/librtlsdr/default.nix
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Turns your Realtek RTL2832 based DVB dongle into a SDR receiver";
- homepage = "http://github.com/librtlsdr/librtlsdr";
+ homepage = "https://github.com/librtlsdr/librtlsdr";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ bjornfor ];
platforms = platforms.linux ++ platforms.darwin;
diff --git a/pkgs/development/libraries/libspectrum/default.nix b/pkgs/development/libraries/libspectrum/default.nix
index 011531b1a23..09aa03e6f67 100644
--- a/pkgs/development/libraries/libspectrum/default.nix
+++ b/pkgs/development/libraries/libspectrum/default.nix
@@ -13,12 +13,13 @@ stdenv.mkDerivation rec {
buildInputs = [ audiofile bzip2 glib libgcrypt zlib ];
enableParallelBuilding = true;
+ doCheck = true;
meta = with lib; {
homepage = "http://fuse-emulator.sourceforge.net/libspectrum.php";
description = "ZX Spectrum input and output support library";
license = licenses.gpl2Plus;
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = with maintainers; [ orivej ];
};
}
diff --git a/pkgs/development/libraries/libtorrent-rasterbar/default.nix b/pkgs/development/libraries/libtorrent-rasterbar/default.nix
index d17303bbb0e..90c14c6fdf9 100644
--- a/pkgs/development/libraries/libtorrent-rasterbar/default.nix
+++ b/pkgs/development/libraries/libtorrent-rasterbar/default.nix
@@ -41,7 +41,6 @@ in stdenv.mkDerivation {
description = "A C++ BitTorrent implementation focusing on efficiency and scalability";
license = licenses.bsd3;
maintainers = [ maintainers.phreedom ];
- broken = stdenv.isDarwin;
platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/libuinputplus/0001-Add-cmake-install-directives.patch b/pkgs/development/libraries/libuinputplus/0001-Add-cmake-install-directives.patch
new file mode 100644
index 00000000000..cd6f43d3770
--- /dev/null
+++ b/pkgs/development/libraries/libuinputplus/0001-Add-cmake-install-directives.patch
@@ -0,0 +1,40 @@
+From 265e406e254c8d84016b12b344d8df71d1765dd1 Mon Sep 17 00:00:00 2001
+From: Jappie Klooster
+Date: Fri, 2 Apr 2021 16:33:18 -0400
+Subject: [PATCH] Add cmake install directives
+
+To make nix builds work, it expect a make install command to
+be available.
+Adding these directives seems to fix the build.
+
+If it's no trouble to you, please consider adding them.
+---
+ CMakeLists.txt | 8 ++++++++
+ 1 file changed, 8 insertions(+)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index cbfc9c1..948c432 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -7,6 +7,8 @@ set(SOURCE_FILES
+ uInput.cpp uInputSetup.cpp uInputResource.cpp
+ uInput.hpp CommonIncludes.hpp uInputSetup.hpp)
+
++include(GNUInstallDirs)
++
+ add_library(uInputPlus ${SOURCE_FILES})
+ target_include_directories(uInputPlus PUBLIC .)
+
+@@ -15,3 +17,9 @@ target_link_libraries(uInputPlus_test uInputPlus)
+
+ configure_file(uInputPlus.pc.in uInputPlus.pc @ONLY)
+
++
++install(TARGETS uInputPlus
++ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
++install(FILES uInput.hpp CommonIncludes.hpp uInputSetup.hpp
++ DESTINATION include/)
++
+--
+2.29.2
+
diff --git a/pkgs/development/libraries/libuinputplus/default.nix b/pkgs/development/libraries/libuinputplus/default.nix
index 9085b861078..28110b57704 100644
--- a/pkgs/development/libraries/libuinputplus/default.nix
+++ b/pkgs/development/libraries/libuinputplus/default.nix
@@ -1,14 +1,17 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
-
stdenv.mkDerivation rec {
pname = "libuinputplus";
- version = "2019-10-01";
+ version = "2021-04-02";
+
+ # adds missing cmake install directives
+ # https://github.com/YukiWorkshop/libuInputPlus/pull/7
+ patches = [ ./0001-Add-cmake-install-directives.patch];
src = fetchFromGitHub {
owner = "YukiWorkshop";
repo = "libuInputPlus";
- rev = "962f180b4cc670e1f5cc73c2e4d5d196ae52d630";
- sha256 = "0jy5i7bmjad7hw1qcyjl4swqribp2027s9g3609zwj7lj8z5x0bg";
+ rev = "f7f18eb339bba61a43f2cad481a9b1a453a66957";
+ sha256 = "0sind2ghhy4h9kfkr5hsmhcq0di4ifwqyv4gac96rgj5mwvs33lp";
};
nativeBuildInputs = [ cmake pkg-config ];
diff --git a/pkgs/development/libraries/libxc/default.nix b/pkgs/development/libraries/libxc/default.nix
index f78cd09c0ae..d4f6391fe6f 100644
--- a/pkgs/development/libraries/libxc/default.nix
+++ b/pkgs/development/libraries/libxc/default.nix
@@ -1,7 +1,7 @@
{ lib, stdenv, fetchFromGitLab, cmake, gfortran, perl }:
let
- version = "5.1.2";
+ version = "5.1.3";
in stdenv.mkDerivation {
pname = "libxc";
@@ -11,7 +11,7 @@ in stdenv.mkDerivation {
owner = "libxc";
repo = "libxc";
rev = version;
- sha256 = "1bcj7x0kaal62m41v9hxb4h1d2cxs2ynvsfqqg7c5yi7829nvapb";
+ sha256 = "14czspifznsmvvix5hcm1rk18iy590qk8p5m00p0y032gmn9i2zj";
};
buildInputs = [ gfortran ];
@@ -28,7 +28,6 @@ in stdenv.mkDerivation {
'';
doCheck = true;
- enableParallelBuilding = true;
meta = with lib; {
description = "Library of exchange-correlation functionals for density-functional theory";
diff --git a/pkgs/development/libraries/libxlsxwriter/default.nix b/pkgs/development/libraries/libxlsxwriter/default.nix
new file mode 100644
index 00000000000..849ebcf3c86
--- /dev/null
+++ b/pkgs/development/libraries/libxlsxwriter/default.nix
@@ -0,0 +1,46 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, minizip
+, python3
+, zlib
+}:
+
+stdenv.mkDerivation rec {
+ pname = "libxlsxwriter";
+ version = "1.0.3";
+
+ src = fetchFromGitHub {
+ owner = "jmcnamara";
+ repo = "libxlsxwriter";
+ rev = "RELEASE_${version}";
+ sha256 = "14c5rgx87nhzasr0j7mcfr1w7ifz0gmdiqy2xq59di5xvcdrpxpv";
+ };
+
+ nativeBuildInputs = [
+ python3.pkgs.pytest
+ ];
+
+ buildInputs = [
+ minizip
+ zlib
+ ];
+
+ makeFlags = [
+ "PREFIX=${placeholder "out"}"
+ "USE_SYSTEM_MINIZIP=1"
+ ];
+
+ doCheck = true;
+
+ checkTarget = "test";
+
+ meta = with lib; {
+ description = "C library for creating Excel XLSX files";
+ homepage = "https://libxlsxwriter.github.io/";
+ changelog = "https://github.com/jmcnamara/libxlsxwriter/blob/${src.rev}/Changes.txt";
+ license = licenses.bsd2;
+ maintainers = with maintainers; [ dotlambda ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/libraries/lief/default.nix b/pkgs/development/libraries/lief/default.nix
index 953eee3b8bd..872327ed4b8 100644
--- a/pkgs/development/libraries/lief/default.nix
+++ b/pkgs/development/libraries/lief/default.nix
@@ -1,8 +1,64 @@
-{ lib, fetchzip }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, python
+, cmake
+}:
-fetchzip {
- url = "https://github.com/lief-project/LIEF/releases/download/0.9.0/LIEF-0.9.0-Linux.tar.gz";
- sha256 = "1c47hwd00bp4mqd4p5b6xjfl89c3wwk9ccyc3a2gk658250g2la6";
+let
+ pyEnv = python.withPackages (ps: [ ps.setuptools ]);
+in
+stdenv.mkDerivation rec {
+ pname = "lief";
+ version = "0.11.4";
+
+ src = fetchFromGitHub {
+ owner = "lief-project";
+ repo = "LIEF";
+ rev = version;
+ sha256 = "DgsTrJ2+zdXJK6CdDOan7roakaaxQiwrVeiQnzJnk0A=";
+ };
+
+ outputs = [ "out" "py" ];
+
+ nativeBuildInputs = [
+ cmake
+ ];
+
+ # Not a propagatedBuildInput because only the $py output needs it; $out is
+ # just the library itself (e.g. C/C++ headers).
+ buildInputs = [
+ python
+ ];
+
+ dontUseCmakeConfigure = true;
+
+ buildPhase = ''
+ runHook preBuild
+
+ substituteInPlace setup.py \
+ --replace 'cmake_args = []' "cmake_args = [ \"-DCMAKE_INSTALL_PREFIX=$prefix\" ]"
+ ${pyEnv.interpreter} setup.py --sdk build --parallel=$NIX_BUILD_CORES
+
+ runHook postBuild
+ '';
+
+ # I was unable to find a way to build the library itself and have it install
+ # to $out, while also installing the Python bindings to $py without building
+ # the project twice (using cmake), so this is the best we've got. It uses
+ # something called CPack to create the tarball, but it's not obvious to me
+ # *how* that happens, or how to intercept it to just get the structured
+ # library output.
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out $py/nix-support
+ echo "${python}" >> $py/nix-support/propagated-build-inputs
+ tar xf build/*.tar.gz --directory $out --strip-components 1
+ ${pyEnv.interpreter} setup.py install --skip-build --root=/ --prefix=$py
+
+ runHook postInstall
+ '';
meta = with lib; {
description = "Library to Instrument Executable Formats";
diff --git a/pkgs/development/libraries/matio/default.nix b/pkgs/development/libraries/matio/default.nix
index b6330f69e30..0b8143b6911 100644
--- a/pkgs/development/libraries/matio/default.nix
+++ b/pkgs/development/libraries/matio/default.nix
@@ -1,9 +1,9 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "matio-1.5.19";
+ name = "matio-1.5.20";
src = fetchurl {
url = "mirror://sourceforge/matio/${name}.tar.gz";
- sha256 = "0vr8c1mz1k6mz0sgh6n3scl5c3a71iqmy5fnydrgq504icj4vym4";
+ sha256 = "sha256-XR9yofUav2qc0j6qgS+xe4YQlwWQlfSMdoxINcWqJZg=";
};
meta = with lib; {
diff --git a/pkgs/development/libraries/mbedtls/default.nix b/pkgs/development/libraries/mbedtls/default.nix
index 2e25399d979..90e2c9bd9a7 100644
--- a/pkgs/development/libraries/mbedtls/default.nix
+++ b/pkgs/development/libraries/mbedtls/default.nix
@@ -11,13 +11,17 @@
stdenv.mkDerivation rec {
pname = "mbedtls";
- version = "2.16.9"; # nixpkgs-update: no auto update
+ # Auto updates are disabled due to repology listing dev releases as release
+ # versions. See
+ # * https://github.com/NixOS/nixpkgs/pull/119838#issuecomment-822100428
+ # * https://github.com/NixOS/nixpkgs/commit/0ee02a9d42b5fe1825b0f7cee7a9986bb4ba975d
+ version = "2.26.0"; # nixpkgs-update: no auto update
src = fetchFromGitHub {
owner = "ARMmbed";
repo = "mbedtls";
rev = "${pname}-${version}";
- sha256 = "0mz7n373b8d287crwi6kq2hb8ryyi228j38h25744lqai23qj5cf";
+ sha256 = "0scwpmrgvg6q7rvqkc352d2fqlsx0aylcbyibcp1f1rsn8iiif2m";
};
nativeBuildInputs = [ cmake ninja perl python3 ];
@@ -30,6 +34,10 @@ stdenv.mkDerivation rec {
'';
cmakeFlags = [ "-DUSE_SHARED_MBEDTLS_LIBRARY=on" ];
+ NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isGNU [
+ "-Wno-error=format"
+ "-Wno-error=format-truncation"
+ ];
meta = with lib; {
homepage = "https://tls.mbed.org/";
diff --git a/pkgs/development/libraries/mpir/default.nix b/pkgs/development/libraries/mpir/default.nix
index 7f7df407e4e..5e68ad80fc2 100644
--- a/pkgs/development/libraries/mpir/default.nix
+++ b/pkgs/development/libraries/mpir/default.nix
@@ -7,11 +7,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ m4 which yasm ];
src = fetchurl {
- url = "http://mpir.org/mpir-${version}.tar.bz2";
+ url = "https://mpir.org/mpir-${version}.tar.bz2";
sha256 = "1fvmhrqdjs925hzr2i8bszm50h00gwsh17p2kn2pi51zrxck9xjj";
};
- configureFlags = [ "--enable-cxx" ];
+ configureFlags = [ "--enable-cxx" "--enable-fat" ];
meta = {
inherit version;
@@ -19,8 +19,8 @@ stdenv.mkDerivation rec {
license = lib.licenses.lgpl3Plus;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.unix;
- downloadPage = "http://mpir.org/downloads.html";
- homepage = "http://mpir.org/";
+ downloadPage = "https://mpir.org/downloads.html";
+ homepage = "https://mpir.org/";
updateWalker = true;
};
}
diff --git a/pkgs/development/libraries/nanopb/default.nix b/pkgs/development/libraries/nanopb/default.nix
index e71d1c6a54c..ca078a3f9d2 100644
--- a/pkgs/development/libraries/nanopb/default.nix
+++ b/pkgs/development/libraries/nanopb/default.nix
@@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "nanopb";
- version = "0.4.4";
+ version = "0.4.5";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
- sha256 = "0nqfi1b0szjmm1z8wd3ks64h10jblv9ip01kfggxgz6qjjfwgvq7";
+ sha256 = "0cjfkwwzi018kc0b7lia7z2jdfgibqc99mf8rvj2xq2pfapp9kf1";
};
nativeBuildInputs = [ cmake python3 python3.pkgs.wrapPython ];
diff --git a/pkgs/development/libraries/opencascade-occt/default.nix b/pkgs/development/libraries/opencascade-occt/default.nix
index 59c1f0ef7db..f2a9833d77d 100644
--- a/pkgs/development/libraries/opencascade-occt/default.nix
+++ b/pkgs/development/libraries/opencascade-occt/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
pname = "opencascade-occt";
- version = "7.5.0";
+ version = "7.5.1";
commit = "V${builtins.replaceStrings ["."] ["_"] version}";
src = fetchurl {
name = "occt-${commit}.tar.gz";
url = "https://git.dev.opencascade.org/gitweb/?p=occt.git;a=snapshot;h=${commit};sf=tgz";
- sha256 = "0bpzpaqki3k6i7xmhan0f1c1fr05smpcmgrp4vh572j61lwpq1r3";
+ sha256 = "sha256-1whKU+7AMVYabfs15x8MabohKonn5oM54ZEtxF93wAo=";
};
nativeBuildInputs = [ cmake ninja ];
diff --git a/pkgs/development/libraries/opencv/4.x.nix b/pkgs/development/libraries/opencv/4.x.nix
index c9ac76b6554..15c8d46b613 100644
--- a/pkgs/development/libraries/opencv/4.x.nix
+++ b/pkgs/development/libraries/opencv/4.x.nix
@@ -1,54 +1,91 @@
-{ lib, stdenv
-, fetchurl, fetchFromGitHub, fetchpatch
-, cmake, pkg-config, unzip, zlib, pcre, hdf5
-, glog, boost, gflags, protobuf
+{ lib
+, stdenv
+, fetchurl
+, fetchFromGitHub
+, cmake
+, pkg-config
+, unzip
+, zlib
+, pcre
+, hdf5
+, boost
+, gflags
+, protobuf
, config
-, enableJPEG ? true, libjpeg
-, enablePNG ? true, libpng
-, enableTIFF ? true, libtiff
-, enableWebP ? true, libwebp
-, enableEXR ? !stdenv.isDarwin, openexr, ilmbase
-, enableEigen ? true, eigen
-, enableOpenblas ? true, openblas, blas, lapack
-, enableContrib ? true
+, enableJPEG ? true
+, libjpeg
+, enablePNG ? true
+, libpng
+, enableTIFF ? true
+, libtiff
+, enableWebP ? true
+, libwebp
+, enableEXR ? !stdenv.isDarwin
+, openexr
+, ilmbase
+, enableEigen ? true
+, eigen
+, enableOpenblas ? true
+, openblas
+, enableContrib ? true
-, enableCuda ? (config.cudaSupport or false) &&
- stdenv.hostPlatform.isx86_64, cudatoolkit, nvidia-optical-flow-sdk
+, enableCuda ? (config.cudaSupport or false) && stdenv.hostPlatform.isx86_64
+, cudatoolkit
+, nvidia-optical-flow-sdk
-, enableUnfree ? false
-, enableIpp ? false
-, enablePython ? false, pythonPackages
-, enableGtk2 ? false, gtk2
-, enableGtk3 ? false, gtk3
-, enableVtk ? false, vtk
-, enableFfmpeg ? false, ffmpeg_3
-, enableGStreamer ? false, gst_all_1
-, enableTesseract ? false, tesseract, leptonica
-, enableTbb ? false, tbb
-, enableOvis ? false, ogre
-, enableGPhoto2 ? false, libgphoto2
-, enableDC1394 ? false, libdc1394
-, enableDocs ? false, doxygen, graphviz-nox
+, enableUnfree ? false
+, enableIpp ? false
+, enablePython ? false
+, pythonPackages
+, enableGtk2 ? false
+, gtk2
+, enableGtk3 ? false
+, gtk3
+, enableVtk ? false
+, vtk
+, enableFfmpeg ? true
+, ffmpeg_3
+, enableGStreamer ? true
+, gst_all_1
+, enableTesseract ? false
+, tesseract
+, leptonica
+, enableTbb ? false
+, tbb
+, enableOvis ? false
+, ogre
+, enableGPhoto2 ? false
+, libgphoto2
+, enableDC1394 ? false
+, libdc1394
+, enableDocs ? false
+, doxygen
+, graphviz-nox
-, AVFoundation, Cocoa, VideoDecodeAcceleration, CoreMedia, MediaToolbox, bzip2
+, AVFoundation
+, Cocoa
+, VideoDecodeAcceleration
+, CoreMedia
+, MediaToolbox
+, bzip2
}:
let
- version = "4.3.0";
+ version = "4.5.2";
src = fetchFromGitHub {
- owner = "opencv";
- repo = "opencv";
- rev = version;
- sha256 = "1r9bq9p1x99g2y8jvj9428sgqvljz75dm5vrfsma7hh5wjhz9775";
+ owner = "opencv";
+ repo = "opencv";
+ rev = version;
+ sha256 = "sha256-pxi1VBF4txvRqspdqvCsAQ3XKzl633/o3wyOgD9wid4=";
};
contribSrc = fetchFromGitHub {
- owner = "opencv";
- repo = "opencv_contrib";
- rev = version;
- sha256 = "068b4f95rlryab3mffxs2w6dnbmbhrnpsdgl007rxk4bwnz29y49";
+ owner = "opencv";
+ repo = "opencv_contrib";
+ rev = version;
+ sha256 = "sha256-iMenRTY+qeL7WRgnRuQbsHflYDakE7pWWSHeIjrg0Iw=";
};
# Contrib must be built in order to enable Tesseract support:
@@ -57,35 +94,35 @@ let
# See opencv/3rdparty/ippicv/ippicv.cmake
ippicv = {
src = fetchFromGitHub {
- owner = "opencv";
- repo = "opencv_3rdparty";
- rev = "a56b6ac6f030c312b2dce17430eef13aed9af274";
+ owner = "opencv";
+ repo = "opencv_3rdparty";
+ rev = "a56b6ac6f030c312b2dce17430eef13aed9af274";
sha256 = "1msbkc3zixx61rcg6a04i1bcfhw1phgsrh93glq1n80hgsk3nbjq";
} + "/ippicv";
- files = let name = platform : "ippicv_2019_${platform}_general_20180723.tgz"; in
+ files = let name = platform: "ippicv_2019_${platform}_general_20180723.tgz"; in
if stdenv.hostPlatform.system == "x86_64-linux" then
- { ${name "lnx_intel64"} = "c0bd78adb4156bbf552c1dfe90599607"; }
+ { ${name "lnx_intel64"} = "c0bd78adb4156bbf552c1dfe90599607"; }
else if stdenv.hostPlatform.system == "i686-linux" then
- { ${name "lnx_ia32"} = "4f38432c30bfd6423164b7a24bbc98a0"; }
+ { ${name "lnx_ia32"} = "4f38432c30bfd6423164b7a24bbc98a0"; }
else if stdenv.hostPlatform.system == "x86_64-darwin" then
- { ${name "mac_intel64"} = "fe6b2bb75ae0e3f19ad3ae1a31dfa4a2"; }
+ { ${name "mac_intel64"} = "fe6b2bb75ae0e3f19ad3ae1a31dfa4a2"; }
else
- throw "ICV is not available for this platform (or not yet supported by this package)";
+ throw "ICV is not available for this platform (or not yet supported by this package)";
dst = ".cache/ippicv";
};
# See opencv_contrib/modules/xfeatures2d/cmake/download_vgg.cmake
vgg = {
src = fetchFromGitHub {
- owner = "opencv";
- repo = "opencv_3rdparty";
- rev = "fccf7cd6a4b12079f73bbfb21745f9babcd4eb1d";
+ owner = "opencv";
+ repo = "opencv_3rdparty";
+ rev = "fccf7cd6a4b12079f73bbfb21745f9babcd4eb1d";
sha256 = "0r9fam8dplyqqsd3qgpnnfgf9l7lj44di19rxwbm8mxiw0rlcdvy";
};
files = {
- "vgg_generated_48.i" = "e8d0dcd54d1bcfdc29203d011a797179";
- "vgg_generated_64.i" = "7126a5d9a8884ebca5aea5d63d677225";
- "vgg_generated_80.i" = "7cd47228edec52b6d82f46511af325c5";
+ "vgg_generated_48.i" = "e8d0dcd54d1bcfdc29203d011a797179";
+ "vgg_generated_64.i" = "7126a5d9a8884ebca5aea5d63d677225";
+ "vgg_generated_80.i" = "7cd47228edec52b6d82f46511af325c5";
"vgg_generated_120.i" = "151805e03568c9f490a5e3a872777b75";
};
dst = ".cache/xfeatures2d/vgg";
@@ -94,19 +131,19 @@ let
# See opencv_contrib/modules/xfeatures2d/cmake/download_boostdesc.cmake
boostdesc = {
src = fetchFromGitHub {
- owner = "opencv";
- repo = "opencv_3rdparty";
- rev = "34e4206aef44d50e6bbcd0ab06354b52e7466d26";
+ owner = "opencv";
+ repo = "opencv_3rdparty";
+ rev = "34e4206aef44d50e6bbcd0ab06354b52e7466d26";
sha256 = "13yig1xhvgghvxspxmdidss5lqiikpjr0ddm83jsi0k85j92sn62";
};
files = {
- "boostdesc_bgm.i" = "0ea90e7a8f3f7876d450e4149c97c74f";
- "boostdesc_bgm_bi.i" = "232c966b13651bd0e46a1497b0852191";
- "boostdesc_bgm_hd.i" = "324426a24fa56ad9c5b8e3e0b3e5303e";
+ "boostdesc_bgm.i" = "0ea90e7a8f3f7876d450e4149c97c74f";
+ "boostdesc_bgm_bi.i" = "232c966b13651bd0e46a1497b0852191";
+ "boostdesc_bgm_hd.i" = "324426a24fa56ad9c5b8e3e0b3e5303e";
"boostdesc_binboost_064.i" = "202e1b3e9fec871b04da31f7f016679f";
"boostdesc_binboost_128.i" = "98ea99d399965c03d555cef3ea502a0b";
"boostdesc_binboost_256.i" = "e6dcfa9f647779eb1ce446a8d759b6ea";
- "boostdesc_lbgm.i" = "0ae0675534aa318d9668f2a179c2a052";
+ "boostdesc_lbgm.i" = "0ae0675534aa318d9668f2a179c2a052";
};
dst = ".cache/xfeatures2d/boostdesc";
};
@@ -114,9 +151,9 @@ let
# See opencv_contrib/modules/face/CMakeLists.txt
face = {
src = fetchFromGitHub {
- owner = "opencv";
- repo = "opencv_3rdparty";
- rev = "8afa57abc8229d611c4937165d20e2a2d9fc5a12";
+ owner = "opencv";
+ repo = "opencv_3rdparty";
+ rev = "8afa57abc8229d611c4937165d20e2a2d9fc5a12";
sha256 = "061lsvqdidq9xa2hwrcvwi9ixflr2c2lfpc8drr159g68zi8bp4v";
};
files = {
@@ -136,10 +173,27 @@ let
dst = ".cache/ade";
};
+ # See opencv/modules/wechat_qrcode/CMakeLists.txt
+ wechat_qrcode = {
+ src = fetchFromGitHub {
+ owner = "opencv";
+ repo = "opencv_3rdparty";
+ rev = "a8b69ccc738421293254aec5ddb38bd523503252";
+ sha256 = "sha256-/n6zHwf0Rdc4v9o4rmETzow/HTv+81DnHP+nL56XiTY=";
+ };
+ files = {
+ "detect.caffemodel" = "238e2b2d6f3c18d6c3a30de0c31e23cf";
+ "detect.prototxt" = "6fb4976b32695f9f5c6305c19f12537d";
+ "sr.caffemodel" = "cbfcd60361a73beb8c583eea7e8e6664";
+ "sr.prototxt" = "69db99927a70df953b471daaba03fbef";
+ };
+ dst = ".cache/wechat_qrcode";
+ };
+
# See opencv/cmake/OpenCVDownload.cmake
- installExtraFiles = extra : with lib; ''
+ installExtraFiles = extra: with lib; ''
mkdir -p "${extra.dst}"
- '' + concatStrings (flip mapAttrsToList extra.files (name : md5 : ''
+ '' + concatStrings (flip mapAttrsToList extra.files (name: md5: ''
ln -s "${extra.src}/${name}" "${extra.dst}/${md5}-${name}"
''));
installExtraFile = extra: ''
@@ -149,7 +203,7 @@ let
opencvFlag = name: enabled: "-DWITH_${name}=${printEnabled enabled}";
- printEnabled = enabled : if enabled then "ON" else "OFF";
+ printEnabled = enabled: if enabled then "ON" else "OFF";
in
stdenv.mkDerivation {
@@ -172,13 +226,15 @@ stdenv.mkDerivation {
preConfigure =
installExtraFile ade +
lib.optionalString enableIpp (installExtraFiles ippicv) + (
- lib.optionalString buildContrib ''
- cmakeFlagsArray+=("-DOPENCV_EXTRA_MODULES_PATH=$NIX_BUILD_TOP/source/opencv_contrib")
+ lib.optionalString buildContrib ''
+ cmakeFlagsArray+=("-DOPENCV_EXTRA_MODULES_PATH=$NIX_BUILD_TOP/source/opencv_contrib")
- ${installExtraFiles vgg}
- ${installExtraFiles boostdesc}
- ${installExtraFiles face}
- '');
+ ${installExtraFiles vgg}
+ ${installExtraFiles boostdesc}
+ ${installExtraFiles face}
+ ${installExtraFiles wechat_qrcode}
+ ''
+ );
postConfigure = ''
[ -e modules/core/version_string.inc ]
@@ -186,7 +242,7 @@ stdenv.mkDerivation {
'';
buildInputs =
- [ zlib pcre hdf5 glog boost gflags protobuf ]
+ [ zlib pcre hdf5 boost gflags protobuf ]
++ lib.optional enablePython pythonPackages.python
++ lib.optional enableGtk2 gtk2
++ lib.optional enableGtk3 gtk3
@@ -198,7 +254,7 @@ stdenv.mkDerivation {
++ lib.optionals enableEXR [ openexr ilmbase ]
++ lib.optional enableFfmpeg ffmpeg_3
++ lib.optionals (enableFfmpeg && stdenv.isDarwin)
- [ VideoDecodeAcceleration bzip2 ]
+ [ VideoDecodeAcceleration bzip2 ]
++ lib.optionals enableGStreamer (with gst_all_1; [ gstreamer gst-plugins-base ])
++ lib.optional enableOvis ogre
++ lib.optional enableGPhoto2 libgphoto2
@@ -274,15 +330,13 @@ stdenv.mkDerivation {
"$out/lib/pkgconfig/opencv4.pc"
'';
- hardeningDisable = [ "bindnow" "relro" ];
-
- passthru = lib.optionalAttrs enablePython { pythonPath = []; };
+ passthru = lib.optionalAttrs enablePython { pythonPath = [ ]; };
meta = with lib; {
description = "Open Computer Vision Library with more than 500 algorithms";
homepage = "https://opencv.org/";
license = with licenses; if enableUnfree then unfree else bsd3;
- maintainers = with maintainers; [mdaiter basvandijk];
+ maintainers = with maintainers; [ mdaiter basvandijk ];
platforms = with platforms; linux ++ darwin;
};
}
diff --git a/pkgs/development/libraries/opencv/cmake-don-t-use-OpenCVFindOpenEXR.patch b/pkgs/development/libraries/opencv/cmake-don-t-use-OpenCVFindOpenEXR.patch
index dc80b09b646..bb398f7546b 100644
--- a/pkgs/development/libraries/opencv/cmake-don-t-use-OpenCVFindOpenEXR.patch
+++ b/pkgs/development/libraries/opencv/cmake-don-t-use-OpenCVFindOpenEXR.patch
@@ -1,40 +1,17 @@
-From 6d988c08e852379a163ecd20df8639196d84d014 Mon Sep 17 00:00:00 2001
-From: Bernardo Meurer
-Date: Sun, 26 Apr 2020 14:50:25 -0700
-Subject: [PATCH] cmake: don't use OpenCVFindOpenEXR
-
-Use find_package for this.
----
- CMakeLists.txt | 2 ++
- cmake/OpenCVFindLibsGrfmt.cmake | 15 +++------------
- 2 files changed, 5 insertions(+), 12 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 4c0b3880fc..0360469350 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -14,6 +14,8 @@ FATAL: In-source builds are not allowed.
- ")
- endif()
-
-+# the future!
-+include(FindPkgConfig)
-
- include(cmake/OpenCVMinDepVersions.cmake)
-
diff --git a/cmake/OpenCVFindLibsGrfmt.cmake b/cmake/OpenCVFindLibsGrfmt.cmake
-index 0beaf19317..4c5e46e615 100644
+index 23a6ca6959..27e121943a 100644
--- a/cmake/OpenCVFindLibsGrfmt.cmake
+++ b/cmake/OpenCVFindLibsGrfmt.cmake
-@@ -227,20 +227,11 @@ endif()
+@@ -255,21 +255,12 @@ endif()
# --- OpenEXR (optional) ---
if(WITH_OPENEXR)
ocv_clear_vars(HAVE_OPENEXR)
- if(NOT BUILD_OPENEXR)
+- ocv_clear_internal_cache_vars(OPENEXR_INCLUDE_PATHS OPENEXR_LIBRARIES OPENEXR_ILMIMF_LIBRARY OPENEXR_VERSION)
- include("${OpenCV_SOURCE_DIR}/cmake/OpenCVFindOpenEXR.cmake")
- endif()
--
+ pkg_check_modules(OPENEXR OpenEXR)
+
if(OPENEXR_FOUND)
set(HAVE_OPENEXR YES)
- else()
@@ -50,6 +27,3 @@ index 0beaf19317..4c5e46e615 100644
endif()
endif()
---
-2.26.1
-
diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix
index fda0c71655a..f6d45f66b1a 100644
--- a/pkgs/development/libraries/openssl/default.nix
+++ b/pkgs/development/libraries/openssl/default.nix
@@ -72,14 +72,18 @@ let
}.${stdenv.hostPlatform.system} or (
if stdenv.hostPlatform == stdenv.buildPlatform
then "./config"
+ else if stdenv.hostPlatform.isBSD && stdenv.hostPlatform.isx86_64
+ then "./Configure BSD-x86_64"
+ else if stdenv.hostPlatform.isBSD && stdenv.hostPlatform.isx86_32
+ then "./Configure BSD-x86" + lib.optionalString (stdenv.hostPlatform.parsed.kernel.execFormat.name == "elf") "-elf"
+ else if stdenv.hostPlatform.isBSD
+ then "./Configure BSD-generic${toString stdenv.hostPlatform.parsed.cpu.bits}"
else if stdenv.hostPlatform.isMinGW
then "./Configure mingw${optionalString
(stdenv.hostPlatform.parsed.cpu.bits != 32)
(toString stdenv.hostPlatform.parsed.cpu.bits)}"
else if stdenv.hostPlatform.isLinux
- then (if stdenv.hostPlatform.isx86_64
- then "./Configure linux-x86_64"
- else "./Configure linux-generic${toString stdenv.hostPlatform.parsed.cpu.bits}")
+ then "./Configure linux-generic${toString stdenv.hostPlatform.parsed.cpu.bits}"
else if stdenv.hostPlatform.isiOS
then "./Configure ios${toString stdenv.hostPlatform.parsed.cpu.bits}-cross"
else
diff --git a/pkgs/development/libraries/pupnp/default.nix b/pkgs/development/libraries/pupnp/default.nix
index de62bde1877..4b80b7ba5a7 100644
--- a/pkgs/development/libraries/pupnp/default.nix
+++ b/pkgs/development/libraries/pupnp/default.nix
@@ -6,15 +6,15 @@
stdenv.mkDerivation rec {
pname = "libupnp";
- version = "1.14.4";
+ version = "1.14.6";
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
- owner = "mrjimenez";
+ owner = "pupnp";
repo = "pupnp";
rev = "release-${version}";
- sha256 = "sha256-4VuTbcEjr9Ffrowb3eOtXFU8zPNu1NXS531EOZpI07A=";
+ sha256 = "1f9861q5dicp6rx3jnp1j788xfjfaf3k4620p9r0b0k0lj2gk38c";
};
nativeBuildInputs = [
diff --git a/pkgs/development/libraries/science/biology/bicpl/default.nix b/pkgs/development/libraries/science/biology/bicpl/default.nix
index 0bdcbf5a828..5cf63e34224 100644
--- a/pkgs/development/libraries/science/biology/bicpl/default.nix
+++ b/pkgs/development/libraries/science/biology/bicpl/default.nix
@@ -2,16 +2,14 @@
stdenv.mkDerivation rec {
pname = "bicpl";
- version = "unstable-2017-09-10";
-
- owner = "BIC-MNI";
+ version = "unstable-2020-10-15";
# current master is significantly ahead of most recent release, so use Git version:
src = fetchFromGitHub {
- inherit owner;
+ owner = "BIC-MNI";
repo = pname;
- rev = "612a63e740fadb162fcf27ee00da6a18dec4d5a9";
- sha256 = "1vv9gi184bkvp3f99v9xmmw1ly63ip5b09y7zdjn39g7kmwzrga7";
+ rev = "a58af912a71a4c62014975b89ef37a8e72de3c9d";
+ sha256 = "0iw0pmr8xrifbx5l8a0xidfqbm1v8hwzqrw0lcmimxlzdihyri0g";
};
nativeBuildInputs = [ cmake ];
@@ -23,7 +21,7 @@ stdenv.mkDerivation rec {
# internal_volume_io.h: No such file or directory
meta = with lib; {
- homepage = "https://github.com/${owner}/${pname}";
+ homepage = "https://github.com/BIC-MNI/bicpl";
description = "Brain Imaging Centre programming library";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.unix;
diff --git a/pkgs/development/libraries/science/biology/oobicpl/default.nix b/pkgs/development/libraries/science/biology/oobicpl/default.nix
index 626e6475ba1..7f1112311d6 100644
--- a/pkgs/development/libraries/science/biology/oobicpl/default.nix
+++ b/pkgs/development/libraries/science/biology/oobicpl/default.nix
@@ -1,28 +1,36 @@
-{ lib, stdenv, fetchFromGitHub, cmake, libminc, bicpl, arguments, pcre-cpp }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, libminc
+, bicpl
+, arguments
+, pcre-cpp }:
stdenv.mkDerivation rec {
pname = "oobicpl";
- version = "unstable-2016-03-02";
-
- owner = "BIC-MNI";
+ version = "unstable-2020-08-12";
src = fetchFromGitHub {
- inherit owner;
+ owner = "BIC-MNI";
repo = pname;
- rev = "bc062a65dead2e58461f5afb37abedfa6173f10c";
- sha256 = "05l4ml9djw17bgdnrldhcxydrzkr2f2scqlyak52ph5azj5n4zsx";
+ rev = "a9409da8a5bb4925438f32aff577b6333faec28b";
+ sha256 = "0b4chjhr32wbb1sash8cq1jfnr7rzdq84hif8anlrjqd3l0gw357";
};
nativeBuildInputs = [ cmake ];
+
buildInputs = [ libminc bicpl arguments pcre-cpp ];
- cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib/cmake"
- "-DBICPL_DIR=${bicpl}/lib"
- "-DARGUMENTS_DIR=${arguments}/lib"
- "-DOOBICPL_BUILD_SHARED_LIBS=TRUE" ];
+ cmakeFlags = [
+ "-DLIBMINC_DIR=${libminc}/lib/cmake"
+ "-DBICPL_DIR=${bicpl}/lib"
+ "-DARGUMENTS_DIR=${arguments}/lib"
+ "-DOOBICPL_BUILD_SHARED_LIBS=TRUE"
+ ];
meta = with lib; {
- homepage = "https://github.com/${owner}/${pname}";
+ homepage = "https://github.com/BIC-MNI/oobicpl";
description = "Brain Imaging Centre object-oriented programming library (and tools)";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.unix;
diff --git a/pkgs/development/libraries/science/math/cudnn/default.nix b/pkgs/development/libraries/science/math/cudnn/default.nix
index b8aac46d919..d4c7fcac978 100644
--- a/pkgs/development/libraries/science/math/cudnn/default.nix
+++ b/pkgs/development/libraries/science/math/cudnn/default.nix
@@ -1,4 +1,4 @@
-{ callPackage, cudatoolkit_9_0, cudatoolkit_9_1, cudatoolkit_9_2, cudatoolkit_10_0, cudatoolkit_10_1, cudatoolkit_10_2, cudatoolkit_11_0, cudatoolkit_11_1, cudatoolkit_11_2 }:
+{ callPackage, cudatoolkit_10_0, cudatoolkit_10_1, cudatoolkit_10_2, cudatoolkit_11_0, cudatoolkit_11_1, cudatoolkit_11_2 }:
let
generic = args: callPackage (import ./generic.nix (removeAttrs args ["cudatoolkit"])) {
@@ -6,29 +6,6 @@ let
};
in rec {
- cudnn_cudatoolkit_9_0 = generic rec {
- version = "7.3.0";
- cudatoolkit = cudatoolkit_9_0;
- srcName = "cudnn-${cudatoolkit.majorVersion}-linux-x64-v7.3.0.29.tgz";
- sha256 = "16z4vgbcmbayk4hppz0xshgs3g07blkp4j25cxcjqyrczx1r0gs0";
- };
-
- cudnn_cudatoolkit_9_1 = generic rec {
- version = "7.1.3";
- cudatoolkit = cudatoolkit_9_1;
- srcName = "cudnn-${cudatoolkit.majorVersion}-linux-x64-v7.1.tgz";
- sha256 = "0a0237gpr0p63s92njai0xvxmkbailzgfsvh7n9fnz0njhvnsqfx";
- };
-
- cudnn_cudatoolkit_9_2 = generic rec {
- version = "7.2.1";
- cudatoolkit = cudatoolkit_9_2;
- srcName = "cudnn-${cudatoolkit.majorVersion}-linux-x64-v7.2.1.38.tgz";
- sha256 = "1sf215wm6zgr17gs6sxfhw61b7a0qmcxiwhgy1b4nqdyxpqgay1y";
- };
-
- cudnn_cudatoolkit_9 = cudnn_cudatoolkit_9_2;
-
cudnn_cudatoolkit_10_0 = generic rec {
version = "7.4.2";
cudatoolkit = cudatoolkit_10_0;
diff --git a/pkgs/development/libraries/simgear/default.nix b/pkgs/development/libraries/simgear/default.nix
index e67cb1736b7..b5df83a0b90 100644
--- a/pkgs/development/libraries/simgear/default.nix
+++ b/pkgs/development/libraries/simgear/default.nix
@@ -1,10 +1,10 @@
{ lib, stdenv, fetchurl, plib, freeglut, xorgproto, libX11, libXext, libXi
, libICE, libSM, libXt, libXmu, libGLU, libGL, boost, zlib, libjpeg, freealut
-, openscenegraph, openal, expat, cmake, apr
+, openscenegraph, openal, expat, cmake, apr, xz
, curl
}:
let
- version = "2020.3.6";
+ version = "2020.3.8";
shortVersion = builtins.substring 0 6 version;
in
stdenv.mkDerivation rec {
@@ -13,13 +13,13 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://sourceforge/flightgear/release-${shortVersion}/${pname}-${version}.tar.bz2";
- sha256 = "sha256-7D7KRNIffgUr6vwbni1XwW+8GtXwM6vJZ7V6/QLDVmk=";
+ sha256 = "sha256-UXcWV9MPu7c+QlFjrhxtQ6ruAcxuKtewwphu4tt5dWc=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ plib freeglut xorgproto libX11 libXext libXi
libICE libSM libXt libXmu libGLU libGL boost zlib libjpeg freealut
- openscenegraph openal expat apr curl ];
+ openscenegraph openal expat apr curl xz ];
meta = with lib; {
description = "Simulation construction toolkit";
diff --git a/pkgs/development/libraries/spice-protocol/default.nix b/pkgs/development/libraries/spice-protocol/default.nix
index 1eaa3398e40..12eb03b6d63 100644
--- a/pkgs/development/libraries/spice-protocol/default.nix
+++ b/pkgs/development/libraries/spice-protocol/default.nix
@@ -1,14 +1,16 @@
-{ lib, stdenv, fetchurl }:
+{ lib, stdenv, fetchurl, meson, ninja }:
stdenv.mkDerivation rec {
pname = "spice-protocol";
- version = "0.14.1";
+ version = "0.14.3";
src = fetchurl {
- url = "https://www.spice-space.org/download/releases/${pname}-${version}.tar.bz2";
- sha256 = "0ahk5hlanwhbc64r80xmchdav3ls156cvh9l68a0l22bhdhxmrkr";
+ url = "https://www.spice-space.org/download/releases/${pname}-${version}.tar.xz";
+ sha256 = "0yj8k7gcirrsf21w0q6146n5g4nzn2pqky4p90n5760m5ayfb1pr";
};
+ nativeBuildInputs = [ meson ninja ];
+
postInstall = ''
mkdir -p $out/lib
ln -sv ../share/pkgconfig $out/lib/pkgconfig
diff --git a/pkgs/development/libraries/sqlitecpp/default.nix b/pkgs/development/libraries/sqlitecpp/default.nix
new file mode 100644
index 00000000000..ffe5e4bbb83
--- /dev/null
+++ b/pkgs/development/libraries/sqlitecpp/default.nix
@@ -0,0 +1,31 @@
+{ lib, stdenv, fetchFromGitHub, cmake, sqlite, cppcheck, gtest }:
+
+stdenv.mkDerivation rec {
+ pname = "SQLiteCpp";
+ version = "3.1.1";
+
+ src = fetchFromGitHub {
+ owner = "SRombauts";
+ repo = pname;
+ rev = version;
+ sha256 = "1c2yyipiqswi5sf9xmpsgw6l1illzmcpkjm56agk6kl2hay23lgr";
+ };
+
+ nativeBuildInputs = [ cmake ];
+ checkInputs = [ cppcheck gtest ];
+ buildInputs = [ sqlite ];
+ doCheck = true;
+
+ cmakeFlags = [
+ "-DSQLITECPP_INTERNAL_SQLITE=OFF"
+ "-DSQLITECPP_BUILD_TESTS=ON"
+ ];
+
+ meta = with lib; {
+ homepage = "http://srombauts.github.com/SQLiteCpp";
+ description = "C++ SQLite3 wrapper";
+ license = licenses.mit;
+ platforms = platforms.unix;
+ maintainers = [ maintainers.jbedo maintainers.doronbehar ];
+ };
+}
diff --git a/pkgs/development/libraries/vapoursynth/default.nix b/pkgs/development/libraries/vapoursynth/default.nix
index 8ef209fe805..3b6362f7396 100644
--- a/pkgs/development/libraries/vapoursynth/default.nix
+++ b/pkgs/development/libraries/vapoursynth/default.nix
@@ -10,13 +10,13 @@ with lib;
stdenv.mkDerivation rec {
pname = "vapoursynth";
- version = "R52";
+ version = "R53";
src = fetchFromGitHub {
owner = "vapoursynth";
repo = "vapoursynth";
rev = version;
- sha256 = "1krfdzc2x2vxv4nq9kiv1c09hgj525qn120ah91fw2ikq8ldvmx4";
+ sha256 = "0qcsfkpkry0cmvi60khjwvfz4fqhy23nqmn4pb9qrwll26sn9dcr";
};
patches = [
diff --git a/pkgs/development/lua-modules/generated-packages.nix b/pkgs/development/lua-modules/generated-packages.nix
index 85f39228584..07a91f96ff3 100644
--- a/pkgs/development/lua-modules/generated-packages.nix
+++ b/pkgs/development/lua-modules/generated-packages.nix
@@ -693,11 +693,11 @@ lua-messagepack = buildLuarocksPackage {
};
lua-resty-http = buildLuarocksPackage {
pname = "lua-resty-http";
- version = "0.15-0";
+ version = "0.16.1-0";
src = fetchurl {
- url = mirror://luarocks/lua-resty-http-0.15-0.src.rock;
- sha256 = "1121abcz9y8kis2wdg7i1m75y8lplk3k49v02y804bywbl2km4fz";
+ url = "mirror://luarocks/lua-resty-http-0.16.1-0.src.rock";
+ sha256 = "0n5hiablpc0dsccs6h76zg81wc3jb4mdvyfn9lfxnhls3yqwrgkj";
};
disabled = (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
@@ -705,33 +705,35 @@ lua-resty-http = buildLuarocksPackage {
meta = with lib; {
homepage = "https://github.com/ledgetech/lua-resty-http";
description = "Lua HTTP client cosocket driver for OpenResty / ngx_lua.";
+ maintainers = with maintainers; [ bbigras ];
license.fullName = "2-clause BSD";
};
};
lua-resty-jwt = buildLuarocksPackage {
pname = "lua-resty-jwt";
- version = "0.2.2-0";
+ version = "0.2.3-0";
src = fetchurl {
- url = mirror://luarocks/lua-resty-jwt-0.2.2-0.src.rock;
- sha256 = "1a4wwiwcjwgr59g2940a2h0i6n1c7xjy2px5bls3x5br4shwhswa";
+ url = "mirror://luarocks/lua-resty-jwt-0.2.3-0.src.rock";
+ sha256 = "0s7ghldwrjnhyc205pvcvgdzrgg46qz42v449vrri0cysh8ad91y";
};
disabled = (luaOlder "5.1");
- propagatedBuildInputs = [ lua ];
+ propagatedBuildInputs = [ lua lua-resty-openssl ];
meta = with lib; {
homepage = "https://github.com/cdbattags/lua-resty-jwt";
description = "JWT for ngx_lua and LuaJIT.";
+ maintainers = with maintainers; [ bbigras ];
license.fullName = "Apache License Version 2";
};
};
lua-resty-openidc = buildLuarocksPackage {
pname = "lua-resty-openidc";
- version = "1.7.2-1";
+ version = "1.7.4-1";
src = fetchurl {
- url = mirror://luarocks/lua-resty-openidc-1.7.2-1.src.rock;
- sha256 = "01mya69r4fncfrpqh5pn2acg18q3slds8zm976qgkjby0pzwzzw7";
+ url = "mirror://luarocks/lua-resty-openidc-1.7.4-1.src.rock";
+ sha256 = "07ny9rl8zir1c3plrbdmd2a23ysrx45qam196nhqsz118xrbds78";
};
disabled = (luaOlder "5.1");
propagatedBuildInputs = [ lua lua-resty-http lua-resty-session lua-resty-jwt ];
@@ -739,16 +741,33 @@ lua-resty-openidc = buildLuarocksPackage {
meta = with lib; {
homepage = "https://github.com/zmartzone/lua-resty-openidc";
description = "A library for NGINX implementing the OpenID Connect Relying Party (RP) and the OAuth 2.0 Resource Server (RS) functionality";
+ maintainers = with maintainers; [ bbigras ];
license.fullName = "Apache 2.0";
};
};
+lua-resty-openssl = buildLuarocksPackage {
+ pname = "lua-resty-openssl";
+ version = "0.7.2-1";
+
+ src = fetchurl {
+ url = "mirror://luarocks/lua-resty-openssl-0.7.2-1.src.rock";
+ sha256 = "00z6adib31ax4givq4zrhbfxa6l99l2hhlxnjpb6rfl4gf8h82kq";
+ };
+
+ meta = with lib; {
+ homepage = "https://github.com/fffonion/lua-resty-openssl";
+ description = "No summary";
+ maintainers = with maintainers; [ bbigras ];
+ license.fullName = "BSD";
+ };
+};
lua-resty-session = buildLuarocksPackage {
pname = "lua-resty-session";
- version = "3.6-1";
+ version = "3.8-1";
src = fetchurl {
- url = mirror://luarocks/lua-resty-session-3.6-1.src.rock;
- sha256 = "1r5626x247d1vi5bzqfk11bl4d5c39h1iqj6mgndnwpnz43cag5i";
+ url = "mirror://luarocks/lua-resty-session-3.8-1.src.rock";
+ sha256 = "1x4l6n0dnm4br4p376r8nkg53hwm6a48xkhrzhsh9fcd5xqgqvxz";
};
disabled = (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
@@ -756,6 +775,7 @@ lua-resty-session = buildLuarocksPackage {
meta = with lib; {
homepage = "https://github.com/bungle/lua-resty-session";
description = "Session Library for OpenResty – Flexible and Secure";
+ maintainers = with maintainers; [ bbigras ];
license.fullName = "BSD";
};
};
diff --git a/pkgs/development/node-packages/default.nix b/pkgs/development/node-packages/default.nix
index b0bd2afd148..8d00e3595fe 100644
--- a/pkgs/development/node-packages/default.nix
+++ b/pkgs/development/node-packages/default.nix
@@ -241,6 +241,10 @@ let
'';
};
+ teck-programmer = super.teck-programmer.override {
+ buildInputs = [ pkgs.libusb ];
+ };
+
vega-cli = super.vega-cli.override {
nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = with pkgs; [
diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json
index 40079afe143..d8b98ea1442 100644
--- a/pkgs/development/node-packages/node-packages.json
+++ b/pkgs/development/node-packages/node-packages.json
@@ -140,6 +140,7 @@
, "json-server"
, "jsonlint"
, "kaput-cli"
+, "katex"
, "karma"
, "lcov-result-merger"
, "leetcode-cli"
@@ -192,6 +193,7 @@
, "pyright"
, "quicktype"
, "react-native-cli"
+, "react-static"
, "react-tools"
, "readability-cli"
, "redoc-cli"
@@ -219,6 +221,7 @@
, "svgo"
, "swagger"
, {"tedicross": "git+https://github.com/TediCross/TediCross.git#v0.8.7"}
+, "teck-programmer"
, "tern"
, "textlint"
, "textlint-plugin-latex"
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 3f049bc582a..366e04440f9 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -310,6 +310,15 @@ let
sha1 = "e70187f8a862e191b1bce6c0268f13acd3a56b20";
};
};
+ "@babel/cli-7.13.14" = {
+ name = "_at_babel_slash_cli";
+ packageName = "@babel/cli";
+ version = "7.13.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/cli/-/cli-7.13.14.tgz";
+ sha512 = "zmEFV8WBRsW+mPQumO1/4b34QNALBVReaiHJOkxhUsdo/AvYM62c+SKSuLi2aZ42t3ocK6OI0uwUXRvrIbREZw==";
+ };
+ };
"@babel/code-frame-7.10.4" = {
name = "_at_babel_slash_code-frame";
packageName = "@babel/code-frame";
@@ -1201,6 +1210,15 @@ let
sha512 = "jcEI2UqIcpCqB5U5DRxIl0tQEProI2gcu+g8VTIqxLO5Iidojb4d77q+fwGseCvd8af/lJ9masp4QWzBXFE2xA==";
};
};
+ "@babel/plugin-transform-react-jsx-development-7.12.17" = {
+ name = "_at_babel_slash_plugin-transform-react-jsx-development";
+ packageName = "@babel/plugin-transform-react-jsx-development";
+ version = "7.12.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz";
+ sha512 = "BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==";
+ };
+ };
"@babel/plugin-transform-react-jsx-self-7.12.13" = {
name = "_at_babel_slash_plugin-transform-react-jsx-self";
packageName = "@babel/plugin-transform-react-jsx-self";
@@ -1219,6 +1237,15 @@ let
sha512 = "O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==";
};
};
+ "@babel/plugin-transform-react-pure-annotations-7.12.1" = {
+ name = "_at_babel_slash_plugin-transform-react-pure-annotations";
+ packageName = "@babel/plugin-transform-react-pure-annotations";
+ version = "7.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz";
+ sha512 = "RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==";
+ };
+ };
"@babel/plugin-transform-regenerator-7.13.15" = {
name = "_at_babel_slash_plugin-transform-regenerator";
packageName = "@babel/plugin-transform-regenerator";
@@ -1354,6 +1381,24 @@ let
sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==";
};
};
+ "@babel/preset-react-7.13.13" = {
+ name = "_at_babel_slash_preset-react";
+ packageName = "@babel/preset-react";
+ version = "7.13.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.13.13.tgz";
+ sha512 = "gx+tDLIE06sRjKJkVtpZ/t3mzCDOnPG+ggHZG9lffUbX8+wC739x20YQc9V35Do6ZAxaUc/HhVHIiOzz5MvDmA==";
+ };
+ };
+ "@babel/preset-stage-0-7.8.3" = {
+ name = "_at_babel_slash_preset-stage-0";
+ packageName = "@babel/preset-stage-0";
+ version = "7.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/preset-stage-0/-/preset-stage-0-7.8.3.tgz";
+ sha512 = "+l6FlG1j73t4wh78W41StbcCz0/9a1/y+vxfnjtHl060kSmcgMfGzK9MEkLvrCOXfhp9RCX+d88sm6rOqxEIEQ==";
+ };
+ };
"@babel/preset-stage-2-7.8.3" = {
name = "_at_babel_slash_preset-stage-2";
packageName = "@babel/preset-stage-2";
@@ -2182,13 +2227,13 @@ let
sha512 = "T4eQ0uqhbTScsoXVx10Tlp0C2RgNdAzlbe52qJ0Tn288/Nuztda5Z/aTCRd5Rp5MRYBycjAf4iNot6ZHAP864g==";
};
};
- "@fluentui/react-7.167.0" = {
+ "@fluentui/react-7.168.0" = {
name = "_at_fluentui_slash_react";
packageName = "@fluentui/react";
- version = "7.167.0";
+ version = "7.168.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react/-/react-7.167.0.tgz";
- sha512 = "NuEywkYUvNouuqXuR6u/r8Dl2vo6RTbXCAm+WRDnSnwqsF8hablYdZL9ImgHczKOsRs6XK6X4lk//eiyE/Gtpw==";
+ url = "https://registry.npmjs.org/@fluentui/react/-/react-7.168.0.tgz";
+ sha512 = "eM+vt4RDRnI/IGZtenxYp7cTssMOkXVY3GqFLJkiK/gHTRI3goMWPpLA9tux0lbuiB3zvnvgLrJ2k0ihWa3FCw==";
};
};
"@fluentui/react-focus-7.17.6" = {
@@ -2335,13 +2380,13 @@ let
sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg==";
};
};
- "@graphql-tools/merge-6.2.12" = {
+ "@graphql-tools/merge-6.2.13" = {
name = "_at_graphql-tools_slash_merge";
packageName = "@graphql-tools/merge";
- version = "6.2.12";
+ version = "6.2.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.12.tgz";
- sha512 = "SWq09Nv04QN/A5TlB54gKn8K3qmRIilyYWFTfyMTfKWWIaJFJG7XDWB1ZNDFTRb1h9XvKr0LCi4nL/Po8zMbSg==";
+ url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.13.tgz";
+ sha512 = "Qjlki0fp+bBQPinhdv7rv24eurvThZ5oIFvGMpLxMZplbw/ovJ2c6llwXr5PCuWAk9HGZsyM9NxxDgtTRfq3dQ==";
};
};
"@graphql-tools/schema-7.1.3" = {
@@ -2497,13 +2542,13 @@ let
sha512 = "yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==";
};
};
- "@hapi/hoek-9.1.1" = {
+ "@hapi/hoek-9.2.0" = {
name = "_at_hapi_slash_hoek";
packageName = "@hapi/hoek";
- version = "9.1.1";
+ version = "9.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.1.tgz";
- sha512 = "CAEbWH7OIur6jEOzaai83jq3FmKmv4PmX1JYfs9IrYcGEVI/lyL1EXJGCj7eFVJ0bg5QR8LMxBlEtA+xKiLpFw==";
+ url = "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz";
+ sha512 = "sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug==";
};
};
"@hapi/joi-15.1.1" = {
@@ -3748,13 +3793,13 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
- "@netlify/build-11.0.2" = {
+ "@netlify/build-11.1.0" = {
name = "_at_netlify_slash_build";
packageName = "@netlify/build";
- version = "11.0.2";
+ version = "11.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/build/-/build-11.0.2.tgz";
- sha512 = "VfuYi1IeMXlZZTwUpfc4GN2q18Icb03r3GSRO1Aw5XbH4Z+9yKWVup9w+pDz3LTlsf24FlrDi/K9/vXVIKjByQ==";
+ url = "https://registry.npmjs.org/@netlify/build/-/build-11.1.0.tgz";
+ sha512 = "544/wWXcFtiOb+XmTUqsn3OFxd/vyeggd2uM8t/V9mWg1PuP5UG4AqubnKglzxiwEHa7KGym8fQCq4HChTtLow==";
};
};
"@netlify/cache-utils-1.0.7" = {
@@ -3784,13 +3829,13 @@ let
sha512 = "oWlP+sWfnr0tXSqd3nfma9Abq1NvZc4lFbHPMvxU6UhAcrBOpizsMaVT9sUK0UcMwzR8xwESdskZajtFoHA28g==";
};
};
- "@netlify/functions-utils-1.3.24" = {
+ "@netlify/functions-utils-1.3.25" = {
name = "_at_netlify_slash_functions-utils";
packageName = "@netlify/functions-utils";
- version = "1.3.24";
+ version = "1.3.25";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.24.tgz";
- sha512 = "rz2dGF6ViMGXPmERGdEq4WjQvGH77qXOI7JfSftKAyfpOWMlLmY6MrGdDNLlkOqNVv7xh9cxsfmXtN25Q5YHIg==";
+ url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.25.tgz";
+ sha512 = "iCGVHlj6XNqOIQxREDbhfWEs8RBLGpXLrZKNHisG8PnJvRmnlS+EyVb1on2yV7+nvMqoqssNUeDY6tvQmwuPng==";
};
};
"@netlify/git-utils-1.0.8" = {
@@ -4882,6 +4927,15 @@ let
sha512 = "Z1MK912OTC+InURygDElVFAbnAdA8x9in+6GSHb/8rzWmp5iDA7PjU85OCOYH8hBfAwKlWINhR372tUUnUHImg==";
};
};
+ "@reach/router-1.3.4" = {
+ name = "_at_reach_slash_router";
+ packageName = "@reach/router";
+ version = "1.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@reach/router/-/router-1.3.4.tgz";
+ sha512 = "+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==";
+ };
+ };
"@react-native-community/cli-debugger-ui-4.13.1" = {
name = "_at_react-native-community_slash_cli-debugger-ui";
packageName = "@react-native-community/cli-debugger-ui";
@@ -5251,13 +5305,13 @@ let
sha512 = "FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==";
};
};
- "@sindresorhus/slugify-1.1.0" = {
+ "@sindresorhus/slugify-1.1.2" = {
name = "_at_sindresorhus_slash_slugify";
packageName = "@sindresorhus/slugify";
- version = "1.1.0";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-1.1.0.tgz";
- sha512 = "ujZRbmmizX26yS/HnB3P9QNlNa4+UvHh+rIse3RbOXLp8yl6n1TxB4t7NHggtVgS8QmmOtzXo48kCxZGACpkPw==";
+ url = "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-1.1.2.tgz";
+ sha512 = "V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA==";
};
};
"@sindresorhus/transliterate-0.1.2" = {
@@ -5368,13 +5422,13 @@ let
sha512 = "E/Pfdze/WFfxwyuTFcfhQN1SwyUsc43yuCoW63RVBCaxTD6OzhVD2Pvc/Sy7BjiWUfmelzyKkIBpoow8zZX7Zg==";
};
};
- "@snyk/fix-1.539.0" = {
+ "@snyk/fix-1.547.0" = {
name = "_at_snyk_slash_fix";
packageName = "@snyk/fix";
- version = "1.539.0";
+ version = "1.547.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/fix/-/fix-1.539.0.tgz";
- sha512 = "oZ3BdRgbkyp/3P2DyLsz11n5xbRzvhIySDv9Qg0UWyjByh9SbR70CCqa7VOCXuTCRpFXIZf15GYNpNLBdOJ2Rw==";
+ url = "https://registry.npmjs.org/@snyk/fix/-/fix-1.547.0.tgz";
+ sha512 = "ANTkn8PHsmPelQ8W8aiS+R3JBzUr0fjcHT67eTvr2a0h51qzzgBFEwhd8GH1Wuo0Nmvm3bsKkk5DxkxTtQWPtw==";
};
};
"@snyk/gemfile-1.2.0" = {
@@ -5431,13 +5485,13 @@ let
sha512 = "NX8bpIu7oG5cuSSm6WvtxqcCuJs2gRjtKhtuSeF1p5TYXyESs3FXQ0nHjfY90LiyTTc+PW/UBq6SKbBA6bCBww==";
};
};
- "@snyk/mix-parser-1.3.0" = {
+ "@snyk/mix-parser-1.3.1" = {
name = "_at_snyk_slash_mix-parser";
packageName = "@snyk/mix-parser";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/mix-parser/-/mix-parser-1.3.0.tgz";
- sha512 = "Iizn7xkw+h1Zg3+PRbo5r37MaqbgvWtKsIIXKWIAoVwy+oYGsJ6u2mo+o/zZ9Dga4+iQ5xy0Q0sNbFzxku2oCQ==";
+ url = "https://registry.npmjs.org/@snyk/mix-parser/-/mix-parser-1.3.1.tgz";
+ sha512 = "XvANfbbaRkCpmIxYJGa+nSy1hUvGOHPTY+J3lpJrJAsEPB3fCT/z9hMuIJJ2c4RXZ9HndkpoSz2oj27m/DiBKQ==";
};
};
"@snyk/rpm-parser-2.2.1" = {
@@ -5467,13 +5521,13 @@ let
sha512 = "hiFiSmWGLc2tOI7FfgIhVdFzO2f69im8O6p3OV4xEZ/Ss1l58vwtqudItoswsk7wj/azRlgfBW8wGu2MjoudQg==";
};
};
- "@snyk/snyk-hex-plugin-1.1.1" = {
+ "@snyk/snyk-hex-plugin-1.1.2" = {
name = "_at_snyk_slash_snyk-hex-plugin";
packageName = "@snyk/snyk-hex-plugin";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/snyk-hex-plugin/-/snyk-hex-plugin-1.1.1.tgz";
- sha512 = "NXgslDo6qSvsKy2cR3Yoo/Z6A3Svae9a96j+0OUnvcZX7i6JeODreqXFD1k0vPM2JnL1G7qcdblPxz7M7ZAZmQ==";
+ url = "https://registry.npmjs.org/@snyk/snyk-hex-plugin/-/snyk-hex-plugin-1.1.2.tgz";
+ sha512 = "8zj19XxlBqTfe12CoeVgT0WtRBk0HEjJVO8hYB/AM71XVjucFzQT4/e/hR8mCUSA7i+B/F8X8iGPhs7Uj3J+zA==";
};
};
"@starptech/expression-parser-0.10.0" = {
@@ -11002,6 +11056,15 @@ let
sha512 = "u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==";
};
};
+ "babel-plugin-macros-2.8.0" = {
+ name = "babel-plugin-macros";
+ packageName = "babel-plugin-macros";
+ version = "2.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz";
+ sha512 = "SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==";
+ };
+ };
"babel-plugin-minify-builtins-0.5.0" = {
name = "babel-plugin-minify-builtins";
packageName = "babel-plugin-minify-builtins";
@@ -11236,6 +11299,15 @@ let
sha1 = "98c1d21e255736573f93ece54459f6ce24985d39";
};
};
+ "babel-plugin-transform-react-remove-prop-types-0.4.24" = {
+ name = "babel-plugin-transform-react-remove-prop-types";
+ packageName = "babel-plugin-transform-react-remove-prop-types";
+ version = "0.4.24";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz";
+ sha512 = "eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==";
+ };
+ };
"babel-plugin-transform-regexp-constructors-0.4.3" = {
name = "babel-plugin-transform-regexp-constructors";
packageName = "babel-plugin-transform-regexp-constructors";
@@ -11290,6 +11362,15 @@ let
sha1 = "be241ca81404030678b748717322b89d0c8fe280";
};
};
+ "babel-plugin-universal-import-4.0.2" = {
+ name = "babel-plugin-universal-import";
+ packageName = "babel-plugin-universal-import";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-plugin-universal-import/-/babel-plugin-universal-import-4.0.2.tgz";
+ sha512 = "VTtHsmvwRBkX3yLK4e+pFwk88BC6iNFqS2J8CCx2ddQc7RjXoRhuXXIgYCng21DYNty9IicCwDdTDjdr+TM7eg==";
+ };
+ };
"babel-polyfill-6.23.0" = {
name = "babel-polyfill";
packageName = "babel-polyfill";
@@ -11893,6 +11974,15 @@ let
sha512 = "GupIidtCvLbKhXnA1sxvrwa+gh95qbjafy7P1U1x/2DHxNabXq4nGW0x3rmgzlJMYlVl+c8fMxoMRIwpKYlgcQ==";
};
};
+ "bfj-6.1.2" = {
+ name = "bfj";
+ packageName = "bfj";
+ version = "6.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz";
+ sha512 = "BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==";
+ };
+ };
"bheep-0.1.5" = {
name = "bheep";
packageName = "bheep";
@@ -11929,6 +12019,15 @@ let
sha512 = "j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w==";
};
};
+ "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";
@@ -14080,13 +14179,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001208" = {
+ "caniuse-lite-1.0.30001209" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001208";
+ version = "1.0.30001209";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001208.tgz";
- sha512 = "OE5UE4+nBOro8Dyvv0lfx+SRtfVIOM9uhKqFmJeUbGriqhhStgp1A0OyBpgy3OUF8AhYCT+PVwPC1gMl2ZcQMA==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001209.tgz";
+ sha512 = "2Ktt4OeRM7EM/JaOZjuLzPYAIqmbwQMNnYbgooT+icoRGrKOyAxA1xhlnotBD1KArRSPsuJp3TdYcZYrL7qNxA==";
};
};
"canvas-2.7.0" = {
@@ -14143,6 +14242,15 @@ let
sha512 = "mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==";
};
};
+ "case-sensitive-paths-webpack-plugin-2.4.0" = {
+ name = "case-sensitive-paths-webpack-plugin";
+ packageName = "case-sensitive-paths-webpack-plugin";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz";
+ sha512 = "roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==";
+ };
+ };
"caseless-0.11.0" = {
name = "caseless";
packageName = "caseless";
@@ -14521,6 +14629,15 @@ let
sha1 = "574d312edd88bb5dd8912e9286dd6c0aed4aac82";
};
};
+ "check-types-8.0.3" = {
+ name = "check-types";
+ packageName = "check-types";
+ version = "8.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz";
+ sha512 = "YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==";
+ };
+ };
"cheerio-0.17.0" = {
name = "cheerio";
packageName = "cheerio";
@@ -14584,13 +14701,13 @@ let
sha512 = "hjx1XE1M/D5pAtMgvWwE21QClmAEeGHOIDfycgmndisdNgI6PE1cGRQkMGBcsbUbmEQyWu5PJLUcAOjtQS8DWw==";
};
};
- "cheerio-select-1.3.0" = {
+ "cheerio-select-1.4.0" = {
name = "cheerio-select";
packageName = "cheerio-select";
- version = "1.3.0";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.3.0.tgz";
- sha512 = "mLgqdHxVOQyhOIkG5QnRkDg7h817Dkf0dAvlCio2TJMmR72cJKH0bF28SHXvLkVrGcGOiub0/Bs/CMnPeQO7qw==";
+ url = "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.4.0.tgz";
+ sha512 = "sobR3Yqz27L553Qa7cK6rtJlMDbiKPdNywtR95Sj/YgfpLfy0u6CGJuaBKe5YE/vTc23SCRKxWSdlon/w6I/Ew==";
};
};
"cheerio-select-tmp-0.1.1" = {
@@ -14872,6 +14989,15 @@ let
sha512 = "BUDFvrBTCdeVhg9E05PX4XgMegk6xWB69uGwyuATEg7PMfa9lGU1mzFSK0xWNW2O0i9CAQHN0oIdXI/kI2hPkg==";
};
};
+ "circular-dependency-plugin-5.2.2" = {
+ name = "circular-dependency-plugin";
+ packageName = "circular-dependency-plugin";
+ version = "5.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.2.2.tgz";
+ sha512 = "g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ==";
+ };
+ };
"circular-json-0.3.3" = {
name = "circular-json";
packageName = "circular-json";
@@ -17528,6 +17654,15 @@ let
sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==";
};
};
+ "create-react-context-0.3.0" = {
+ name = "create-react-context";
+ packageName = "create-react-context";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz";
+ sha512 = "dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==";
+ };
+ };
"create-torrent-4.7.0" = {
name = "create-torrent";
packageName = "create-torrent";
@@ -17789,6 +17924,15 @@ let
sha512 = "BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==";
};
};
+ "css-loader-2.1.1" = {
+ name = "css-loader";
+ packageName = "css-loader";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-loader/-/css-loader-2.1.1.tgz";
+ sha512 = "OcKJU/lt232vl1P9EEDamhoO9iKY3tIjY5GU+XDLblAykTdgs6Ux9P1hTHve8nFKy5KPpOXOsVI/hIwi3841+w==";
+ };
+ };
"css-loader-3.6.0" = {
name = "css-loader";
packageName = "css-loader";
@@ -17861,13 +18005,13 @@ let
sha512 = "qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA==";
};
};
- "css-select-4.0.0" = {
+ "css-select-4.1.2" = {
name = "css-select";
packageName = "css-select";
- version = "4.0.0";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/css-select/-/css-select-4.0.0.tgz";
- sha512 = "I7favumBlDP/nuHBKLfL5RqvlvRdn/W29evvWJ+TaoGPm7QD+xSIN5eY2dyGjtkUmemh02TZrqJb4B8DWo6PoQ==";
+ url = "https://registry.npmjs.org/css-select/-/css-select-4.1.2.tgz";
+ sha512 = "nu5ye2Hg/4ISq4XqdLY2bEatAcLIdt3OYGFc9Tm9n7VSlFBcfRv0gBNksHRgSdUDQGtN3XrZ94ztW+NfzkFSUw==";
};
};
"css-select-base-adapter-0.1.1" = {
@@ -20804,13 +20948,13 @@ let
sha512 = "J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==";
};
};
- "domhandler-4.1.0" = {
+ "domhandler-4.2.0" = {
name = "domhandler";
packageName = "domhandler";
- version = "4.1.0";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/domhandler/-/domhandler-4.1.0.tgz";
- sha512 = "/6/kmsGlMY4Tup/nGVutdrK9yQi4YjWVcVeoQmixpzjOUK1U7pQkvAPHBJeUxOgxF0J8f8lwCJSlCfD0V4CMGQ==";
+ url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz";
+ sha512 = "zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==";
};
};
"domino-2.1.6" = {
@@ -20858,13 +21002,13 @@ let
sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==";
};
};
- "domutils-2.5.2" = {
+ "domutils-2.6.0" = {
name = "domutils";
packageName = "domutils";
- version = "2.5.2";
+ version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/domutils/-/domutils-2.5.2.tgz";
- sha512 = "MHTthCb1zj8f1GVfRpeZUbohQf/HdBos0oX5gZcQFepOZPLLRyj6Wn7XS7EMnY7CVpwv8863u2vyE83Hfu28HQ==";
+ url = "https://registry.npmjs.org/domutils/-/domutils-2.6.0.tgz";
+ sha512 = "y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA==";
};
};
"dot-case-3.0.4" = {
@@ -21011,6 +21155,15 @@ let
sha512 = "yXcCvhkPKmq5M2cQXss6Qbig+LZnzRIT40XCYm/QCRnJaPG867StB1qnsBLxOGrPH1YEIRWW2gJq7LLMyw+NmA==";
};
};
+ "download-git-repo-2.0.0" = {
+ name = "download-git-repo";
+ packageName = "download-git-repo";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/download-git-repo/-/download-git-repo-2.0.0.tgz";
+ sha512 = "al8ZOwpm/DvCd7XC8PupeuNlC2TrvsMxW3FOx1bCbHNBhP1lYjOn9KnPqnZ3o/jz1vxCC5NHGJA7LT+GYMLcHA==";
+ };
+ };
"download-git-repo-3.0.2" = {
name = "download-git-repo";
packageName = "download-git-repo";
@@ -21526,6 +21679,15 @@ let
sha512 = "5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==";
};
};
+ "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";
+ };
+ };
"emojis-list-3.0.0" = {
name = "emojis-list";
packageName = "emojis-list";
@@ -22219,13 +22381,13 @@ let
sha512 = "p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==";
};
};
- "esbuild-0.11.11" = {
+ "esbuild-0.11.12" = {
name = "esbuild";
packageName = "esbuild";
- version = "0.11.11";
+ version = "0.11.12";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild/-/esbuild-0.11.11.tgz";
- sha512 = "iq5YdV63vY/nUAFIvY92BXVkYjMbOchnofLKoLKMPZIa4uuIJAJG9WRA+ZRjQBZbrsORUwvZcANeG2d3p46PJQ==";
+ url = "https://registry.npmjs.org/esbuild/-/esbuild-0.11.12.tgz";
+ sha512 = "c8cso/1RwVj+fbDvLtUgSG4ZJQ0y9Zdrl6Ot/GAjyy4pdMCHaFnDMts5gqFnWRPLajWtEnI+3hlET4R9fVoZng==";
};
};
"esc-exit-2.0.2" = {
@@ -23677,6 +23839,15 @@ let
sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==";
};
};
+ "extract-css-chunks-webpack-plugin-4.9.0" = {
+ name = "extract-css-chunks-webpack-plugin";
+ packageName = "extract-css-chunks-webpack-plugin";
+ version = "4.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extract-css-chunks-webpack-plugin/-/extract-css-chunks-webpack-plugin-4.9.0.tgz";
+ sha512 = "HNuNPCXRMqJDQ1OHAUehoY+0JVCnw9Y/H22FQzYVwo8Ulgew98AGDu0grnY5c7xwiXHjQa6yJ/1dxLCI/xqTyQ==";
+ };
+ };
"extract-files-9.0.0" = {
name = "extract-files";
packageName = "extract-files";
@@ -24262,6 +24433,15 @@ let
sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==";
};
};
+ "file-loader-3.0.1" = {
+ name = "file-loader";
+ packageName = "file-loader";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-loader/-/file-loader-3.0.1.tgz";
+ sha512 = "4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw==";
+ };
+ };
"file-loader-6.0.0" = {
name = "file-loader";
packageName = "file-loader";
@@ -24478,13 +24658,13 @@ let
sha512 = "LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==";
};
};
- "filesize-6.2.2" = {
+ "filesize-6.2.5" = {
name = "filesize";
packageName = "filesize";
- version = "6.2.2";
+ version = "6.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/filesize/-/filesize-6.2.2.tgz";
- sha512 = "yMYcRU6K9yNRSYZWfrXOuNiQQx0aJiXJsJYAR2R2andmIFo5IJrfqoXw+2h1W8zLRxy612LwwY1sH0zuxUsz0g==";
+ url = "https://registry.npmjs.org/filesize/-/filesize-6.2.5.tgz";
+ sha512 = "JkM1y2+IpnEwp3pbXOUXR+9ytuZE07ZnWb/OR0H/WOSkjWASpmXgC0ZBIs4/SAYq9wHqExeQxcYNoJKf6s0RCg==";
};
};
"filestream-5.0.0" = {
@@ -25657,6 +25837,15 @@ let
sha512 = "cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==";
};
};
+ "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-routes-2.0.0" = {
name = "fs-routes";
packageName = "fs-routes";
@@ -26368,6 +26557,15 @@ let
sha1 = "c57d1145eec16465ab9bfbdf575262b1691624d6";
};
};
+ "git-promise-1.0.0" = {
+ name = "git-promise";
+ packageName = "git-promise";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-promise/-/git-promise-1.0.0.tgz";
+ sha512 = "GAhWltNB3/sf/48MwE7MbObDM2tDls9YIvVlUmga3gyqSMZG3wHEMhGSQB6genvmnbbHMxCkpVVl5YP6qGQn3w==";
+ };
+ };
"git-raw-commits-2.0.10" = {
name = "git-raw-commits";
packageName = "git-raw-commits";
@@ -27449,6 +27647,15 @@ let
sha512 = "OY0BfPKe3QnMsY9MzTHTSKn+Vl2l1CcLe6BwDEQj00mbbkl5nyQ/7EUREstg4fQNZ8iYE7br4JJ7TdKeDOPWmw==";
};
};
+ "gud-1.0.0" = {
+ name = "gud";
+ packageName = "gud";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz";
+ sha512 = "zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==";
+ };
+ };
"gulp-4.0.2" = {
name = "gulp";
packageName = "gulp";
@@ -28367,6 +28574,15 @@ let
sha512 = "eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==";
};
};
+ "hoopy-0.1.4" = {
+ name = "hoopy";
+ packageName = "hoopy";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz";
+ sha512 = "HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==";
+ };
+ };
"hoox-0.0.1" = {
name = "hoox";
packageName = "hoox";
@@ -28556,6 +28772,15 @@ let
sha512 = "uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==";
};
};
+ "html-webpack-plugin-3.2.0" = {
+ name = "html-webpack-plugin";
+ packageName = "html-webpack-plugin";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz";
+ sha1 = "b01abbd723acaaa7b37b6af4492ebda03d9dd37b";
+ };
+ };
"html-webpack-plugin-4.3.0" = {
name = "html-webpack-plugin";
packageName = "html-webpack-plugin";
@@ -29313,6 +29538,15 @@ let
sha512 = "aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==";
};
};
+ "import-cwd-2.1.0" = {
+ name = "import-cwd";
+ packageName = "import-cwd";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz";
+ sha1 = "aa6cf36e722761285cb371ec6519f53e2435b0a9";
+ };
+ };
"import-cwd-3.0.0" = {
name = "import-cwd";
packageName = "import-cwd";
@@ -29340,6 +29574,15 @@ let
sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==";
};
};
+ "import-from-2.1.0" = {
+ name = "import-from";
+ packageName = "import-from";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz";
+ sha1 = "335db7f2a7affd53aaa471d4b8021dee36b7f3b1";
+ };
+ };
"import-from-3.0.0" = {
name = "import-from";
packageName = "import-from";
@@ -29592,13 +29835,13 @@ let
sha512 = "zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw==";
};
};
- "init-package-json-2.0.2" = {
+ "init-package-json-2.0.3" = {
name = "init-package-json";
packageName = "init-package-json";
- version = "2.0.2";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.2.tgz";
- sha512 = "PO64kVeArePvhX7Ff0jVWkpnE1DfGRvaWcStYrPugcJz9twQGYibagKJuIMHCX7ENcp0M6LJlcjLBuLD5KeJMg==";
+ url = "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.3.tgz";
+ sha512 = "tk/gAgbMMxR6fn1MgMaM1HpU1ryAmBWWitnxG5OhuNXeX0cbpbgV5jA4AIpQJVNoyOfOevTtO6WX+rPs+EFqaQ==";
};
};
"ink-2.7.1" = {
@@ -29979,6 +30222,15 @@ let
sha1 = "332650e10854d8c0ac58c192bdc27a8bf7e7a30c";
};
};
+ "intersection-observer-0.7.0" = {
+ name = "intersection-observer";
+ packageName = "intersection-observer";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/intersection-observer/-/intersection-observer-0.7.0.tgz";
+ sha512 = "Id0Fij0HsB/vKWGeBe9PxeY45ttRiBmhFyyt/geBdDHBYNctMRTE3dC1U3ujzz3lap+hVXlEcVaB56kZP/eEUg==";
+ };
+ };
"into-stream-2.0.1" = {
name = "into-stream";
packageName = "into-stream";
@@ -32175,13 +32427,13 @@ let
sha512 = "pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==";
};
};
- "js-beautify-1.13.11" = {
+ "js-beautify-1.13.13" = {
name = "js-beautify";
packageName = "js-beautify";
- version = "1.13.11";
+ version = "1.13.13";
src = fetchurl {
- url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.11.tgz";
- sha512 = "+3CW1fQqkV7aXIvprevNYfSrKrASQf02IstAZCVSNh+/IS5ciaOtE7erfjyowdMYZZmP2A7SMFkcJ28qCl84+A==";
+ url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.13.tgz";
+ sha512 = "oH+nc0U5mOAqX8M5JO1J0Pw/7Q35sAdOsM5W3i87pir9Ntx6P/5Gx1xLNoK+MGyvHk4rqqRCE4Oq58H6xl2W7A==";
};
};
"js-git-0.7.8" = {
@@ -32814,6 +33066,15 @@ let
sha512 = "c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==";
};
};
+ "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";
@@ -33436,13 +33697,13 @@ let
sha512 = "zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==";
};
};
- "khroma-1.4.0" = {
+ "khroma-1.4.1" = {
name = "khroma";
packageName = "khroma";
- version = "1.4.0";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/khroma/-/khroma-1.4.0.tgz";
- sha512 = "C34rnH/WgniJBhbj/bXNYowRUtiNDwSdnjLraHwindnZIeZ3NOvymRMNHmj4KeZWFTbn+cVxj2iT/jsonG2Xrg==";
+ url = "https://registry.npmjs.org/khroma/-/khroma-1.4.1.tgz";
+ sha512 = "+GmxKvmiRuCcUYDgR7g5Ngo0JEDeOsGdNONdU2zsiBQaK4z19Y2NvXqfEDE0ZiIrg45GTZyAnPLVsLZZACYm3Q==";
};
};
"killable-1.0.1" = {
@@ -34426,6 +34687,15 @@ let
sha512 = "92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==";
};
};
+ "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.4.0" = {
name = "loader-utils";
packageName = "loader-utils";
@@ -36703,13 +36973,13 @@ let
sha512 = "aU1TzmBKcWNNYvH9pjq6u92BML+Hz3h5S/QpfTFwiQF852pLT+9qHsrhM9JYipkOXZxGn+sGH8oyJE9FD9WezQ==";
};
};
- "markdown-it-12.0.5" = {
+ "markdown-it-12.0.6" = {
name = "markdown-it";
packageName = "markdown-it";
- version = "12.0.5";
+ version = "12.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it/-/markdown-it-12.0.5.tgz";
- sha512 = "9KB992Yy2TedaoKETgZPL2n3bmqqZxzUsZ4fxe2ho+/AYuQUz+iDKpfjLgKbg/lHcG6cGOj+L3gDrn9S2CxoRg==";
+ url = "https://registry.npmjs.org/markdown-it/-/markdown-it-12.0.6.tgz";
+ sha512 = "qv3sVLl4lMT96LLtR7xeRJX11OUFjsaD5oVat2/SNBIb21bJXwal2+SklcRbTwGwqWpWH/HRtYavOoJE+seL8w==";
};
};
"markdown-it-8.4.2" = {
@@ -36982,6 +37252,15 @@ let
sha512 = "1XjyBWqCvEFFUDW/MPv0RwbITRD4xQXOvKoPYtLDq8IdZTfdF/cQSo5Yn4qvhfSSZgjgkTFsqJD2wOUG4ovV8Q==";
};
};
+ "match-sorter-3.1.1" = {
+ name = "match-sorter";
+ packageName = "match-sorter";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/match-sorter/-/match-sorter-3.1.1.tgz";
+ sha512 = "Qlox3wRM/Q4Ww9rv1cBmYKNJwWVX/WC+eA3+1S3Fv4EOhrqyp812ZEfVFKQk0AP6RfzmPUUOwEZBbJ8IRt8SOw==";
+ };
+ };
"matchdep-2.0.0" = {
name = "matchdep";
packageName = "matchdep";
@@ -38881,13 +39160,13 @@ let
sha512 = "GpxVObyOzL0CGPBqo6B04GinN8JLk12NRYAIkYvARd9ZCoJKevvOyCaWK6bdK/kFSDj3LPDnCsJbezzNlsi87Q==";
};
};
- "mqtt-packet-6.9.0" = {
+ "mqtt-packet-6.9.1" = {
name = "mqtt-packet";
packageName = "mqtt-packet";
- version = "6.9.0";
+ version = "6.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.9.0.tgz";
- sha512 = "cngFSAXWSl5XHKJYUQiYQjtp75zhf1vygY00NnJdhQoXOH2v3aizmaaMIHI5n1N/TJEHSAbHryQhFr3gJ9VNvA==";
+ url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.9.1.tgz";
+ sha512 = "0+u0ZoRj6H6AuzNY5d8qzXzyXmFI19gkdPRA14kGfKvbqYcpOL+HWUGHjtCxHqjm8CscwsH+dX0+Rxx4se5HSA==";
};
};
"mri-1.1.6" = {
@@ -39205,6 +39484,15 @@ let
sha1 = "2e5cb1ac64c937dae28296e8f42af5eafd9bc7ef";
};
};
+ "mutation-observer-1.0.3" = {
+ name = "mutation-observer";
+ packageName = "mutation-observer";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mutation-observer/-/mutation-observer-1.0.3.tgz";
+ sha512 = "M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA==";
+ };
+ };
"mute-stdout-1.0.1" = {
name = "mute-stdout";
packageName = "mute-stdout";
@@ -40097,6 +40385,15 @@ let
sha512 = "Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==";
};
};
+ "node-addon-api-3.0.2" = {
+ name = "node-addon-api";
+ packageName = "node-addon-api";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.0.2.tgz";
+ sha512 = "+D4s2HCnxPd5PjjI0STKwncjXTUKKqm74MDMz9OPXavjsGmjkvwgLtA5yoxJUdmpj52+2u+RrXgPipahKczMKg==";
+ };
+ };
"node-addon-api-3.1.0" = {
name = "node-addon-api";
packageName = "node-addon-api";
@@ -40818,6 +41115,15 @@ let
sha512 = "ECNgiM5IAeZNuXYu5kF4JV8t+MSFixHsvjexQtf/bLTOsL+KycDv3pod1a88N8uHtzsktYLRX6cAawg4aHeLVQ==";
};
};
+ "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";
+ };
+ };
"normalize-url-2.0.1" = {
name = "normalize-url";
packageName = "normalize-url";
@@ -41422,6 +41728,15 @@ let
sha512 = "VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ==";
};
};
+ "object-inspect-1.10.2" = {
+ name = "object-inspect";
+ packageName = "object-inspect";
+ version = "1.10.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.2.tgz";
+ sha512 = "gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA==";
+ };
+ };
"object-inspect-1.4.1" = {
name = "object-inspect";
packageName = "object-inspect";
@@ -41440,15 +41755,6 @@ let
sha512 = "a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==";
};
};
- "object-inspect-1.9.0" = {
- name = "object-inspect";
- packageName = "object-inspect";
- version = "1.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz";
- sha512 = "i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==";
- };
- };
"object-is-1.1.5" = {
name = "object-is";
packageName = "object-is";
@@ -41692,13 +41998,13 @@ let
sha512 = "fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==";
};
};
- "office-ui-fabric-react-7.167.0" = {
+ "office-ui-fabric-react-7.168.0" = {
name = "office-ui-fabric-react";
packageName = "office-ui-fabric-react";
- version = "7.167.0";
+ version = "7.168.0";
src = fetchurl {
- url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.167.0.tgz";
- sha512 = "PDMijULVRgqrB8eBZi31Qw2rrY8rrFTm7mt6YodxUzM0NyqNUA1UJMPrBwOeV857PFK0C6kO89CwLNtcZWRobw==";
+ url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.168.0.tgz";
+ sha512 = "hxH6HuNEIPVwO1ahzkVTkrARbN1vGP0W0qgbNPNcQDjnux9moyLgGcp0BzWXG6mNlTKFti/6WceCwXFjLEyPkw==";
};
};
"omggif-1.0.10" = {
@@ -41944,13 +42250,13 @@ let
sha512 = "MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==";
};
};
- "open-8.0.5" = {
+ "open-8.0.6" = {
name = "open";
packageName = "open";
- version = "8.0.5";
+ version = "8.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/open/-/open-8.0.5.tgz";
- sha512 = "hkPXCz7gijWp2GoWqsQ4O/5p7F6d5pIQ/+9NyeWG1nABJ4zvLi9kJRv1a44kVf5p13wK0WMoiRA+Xey68yOytA==";
+ url = "https://registry.npmjs.org/open/-/open-8.0.6.tgz";
+ sha512 = "vDOC0KwGabMPFtIpCO2QOnQeOz0N2rEkbuCuxICwLMUCrpv+A7NHrrzJ2dQReJmVluHhO4pYRh/Pn6s8t7Op6Q==";
};
};
"openapi-default-setter-2.1.0" = {
@@ -44915,6 +45221,15 @@ let
sha512 = "IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==";
};
};
+ "postcss-flexbugs-fixes-4.2.1" = {
+ name = "postcss-flexbugs-fixes";
+ packageName = "postcss-flexbugs-fixes";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz";
+ sha512 = "9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==";
+ };
+ };
"postcss-html-0.12.0" = {
name = "postcss-html";
packageName = "postcss-html";
@@ -44951,6 +45266,15 @@ let
sha512 = "7TvleQWNM2QLcHqvudt3VYjULVB49uiW6XzEUFmvwHzvsOEF5MwBrIXZDJQvJNFGjJQTzSzZnDoCJ8h/ljyGXA==";
};
};
+ "postcss-load-config-2.1.2" = {
+ name = "postcss-load-config";
+ packageName = "postcss-load-config";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz";
+ sha512 = "/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==";
+ };
+ };
"postcss-load-config-3.0.1" = {
name = "postcss-load-config";
packageName = "postcss-load-config";
@@ -44960,6 +45284,15 @@ let
sha512 = "/pDHe30UYZUD11IeG8GWx9lNtu1ToyTsZHnyy45B4Mrwr/Kb6NgYl7k753+05CJNKnjbwh4975amoPJ+TEjHNQ==";
};
};
+ "postcss-loader-3.0.0" = {
+ name = "postcss-loader";
+ packageName = "postcss-loader";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz";
+ sha512 = "cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==";
+ };
+ };
"postcss-media-query-parser-0.2.3" = {
name = "postcss-media-query-parser";
packageName = "postcss-media-query-parser";
@@ -45050,6 +45383,15 @@ let
sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069";
};
};
+ "postcss-modules-local-by-default-2.0.6" = {
+ name = "postcss-modules-local-by-default";
+ packageName = "postcss-modules-local-by-default";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz";
+ sha512 = "oLUV5YNkeIBa0yQl7EYnxMgy4N6noxmiwZStaEJUSe2xPMcdNc8WmBQuQCx18H5psYbVxz8zoHk0RAAYZXP9gA==";
+ };
+ };
"postcss-modules-local-by-default-3.0.3" = {
name = "postcss-modules-local-by-default";
packageName = "postcss-modules-local-by-default";
@@ -45086,6 +45428,15 @@ let
sha1 = "ecffa9d7e192518389f42ad0e83f72aec456ea20";
};
};
+ "postcss-modules-values-2.0.0" = {
+ name = "postcss-modules-values";
+ packageName = "postcss-modules-values";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz";
+ sha512 = "Ki7JZa7ff1N3EIMlPnGTZfUMe69FFwiQPnVSXC9mnn3jozCRBYIxiZd44yJOV2AmabOo4qFf8s0dC/+lweG7+w==";
+ };
+ };
"postcss-modules-values-3.0.0" = {
name = "postcss-modules-values";
packageName = "postcss-modules-values";
@@ -45455,6 +45806,15 @@ let
sha512 = "aaLVANlj4HgZweKttFNUVNRxDukytuIuxeK2boIMHjagNJCiVKWFsKF4tCE3ql3GbrD2tExPQ7/pwtEJcHNZeg==";
};
};
+ "prebuild-install-5.3.6" = {
+ name = "prebuild-install";
+ packageName = "prebuild-install";
+ version = "5.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.6.tgz";
+ sha512 = "s8Aai8++QQGi4sSbs/M1Qku62PFK49Jm1CbgXklGz4nmHveDq0wzJkg7Na5QbnO1uNH8K7iqx2EQ/mV0MZEmOg==";
+ };
+ };
"prebuild-install-6.1.1" = {
name = "prebuild-install";
packageName = "prebuild-install";
@@ -47291,13 +47651,13 @@ let
sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7";
};
};
- "pyright-1.1.130" = {
+ "pyright-1.1.132" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.130";
+ version = "1.1.132";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.130.tgz";
- sha512 = "hj4Lvn0x5LFsZDJaZ5hW5X4NfHSCoMvEqcNvRgpYM59qAM22z7XC+Tb7XNrQEhOfIjsbczS3nKWGGUMCe88LXg==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.132.tgz";
+ sha512 = "quvG9Ip2NwKEShsLJ7eLlkQ/ST5SX84QCgO/k7gGqlCHwuifn9/v7LrzdpdFbkVnQR51egUNWwwLQRoIBT6vUA==";
};
};
"q-0.9.7" = {
@@ -47660,6 +48020,15 @@ let
sha1 = "0c13be0b5b49b46f76d6669248d527cf2b02fe27";
};
};
+ "raf-3.4.1" = {
+ name = "raf";
+ packageName = "raf";
+ version = "3.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz";
+ sha512 = "Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==";
+ };
+ };
"railroad-diagrams-1.0.0" = {
name = "railroad-diagrams";
packageName = "railroad-diagrams";
@@ -47939,6 +48308,15 @@ let
sha512 = "9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==";
};
};
+ "raw-loader-3.1.0" = {
+ name = "raw-loader";
+ packageName = "raw-loader";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-loader/-/raw-loader-3.1.0.tgz";
+ sha512 = "lzUVMuJ06HF4rYveaz9Tv0WRlUMxJ0Y1hgSkkgg+50iEdaI0TthyEDe08KIHb0XsF6rn8WYTqPCaGTZg3sX+qA==";
+ };
+ };
"rc-0.4.0" = {
name = "rc";
packageName = "rc";
@@ -48029,13 +48407,13 @@ let
sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==";
};
};
- "react-devtools-core-4.12.1" = {
+ "react-devtools-core-4.12.2" = {
name = "react-devtools-core";
packageName = "react-devtools-core";
- version = "4.12.1";
+ version = "4.12.2";
src = fetchurl {
- url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.12.1.tgz";
- sha512 = "d12z3rBMXn6+LI+tAcvTny++1sSf/MA51CHmsMGFIN211NJupPsgVDLGddNvrvZg6OL+vYznpjd5mhzdrGGg7A==";
+ url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.12.2.tgz";
+ sha512 = "cvAiJCSIIan2A22o4j4Twc7PdDrwqiAQVBeZ+osS2T/wv2Ua3a0J8Sgx4pTH5Y7VoWn5WiGCHkAW4S1lYl3kcA==";
};
};
"react-dom-16.14.0" = {
@@ -48056,6 +48434,24 @@ let
sha512 = "nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==";
};
};
+ "react-fast-compare-3.2.0" = {
+ name = "react-fast-compare";
+ packageName = "react-fast-compare";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz";
+ sha512 = "rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==";
+ };
+ };
+ "react-helmet-6.1.0" = {
+ name = "react-helmet";
+ packageName = "react-helmet";
+ version = "6.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-helmet/-/react-helmet-6.1.0.tgz";
+ sha512 = "4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==";
+ };
+ };
"react-is-16.13.1" = {
name = "react-is";
packageName = "react-is";
@@ -48065,6 +48461,15 @@ let
sha512 = "24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==";
};
};
+ "react-lifecycles-compat-3.0.4" = {
+ name = "react-lifecycles-compat";
+ packageName = "react-lifecycles-compat";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz";
+ sha512 = "fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==";
+ };
+ };
"react-reconciler-0.24.0" = {
name = "react-reconciler";
packageName = "react-reconciler";
@@ -48092,6 +48497,15 @@ let
sha512 = "X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==";
};
};
+ "react-side-effect-2.1.1" = {
+ name = "react-side-effect";
+ packageName = "react-side-effect";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-side-effect/-/react-side-effect-2.1.1.tgz";
+ sha512 = "2FoTQzRNTncBVtnzxFOk2mCpcfxQpenBMbk5kSVBg5UcPqV9fRbgY2zhb7GTWWOlpFmAxhClBDlIq8Rsubz1yQ==";
+ };
+ };
"react-tabs-3.2.2" = {
name = "react-tabs";
packageName = "react-tabs";
@@ -48101,6 +48515,15 @@ let
sha512 = "/o52eGKxFHRa+ssuTEgSM8qORnV4+k7ibW+aNQzKe+5gifeVz8nLxCrsI9xdRhfb0wCLdgIambIpb1qCxaMN+A==";
};
};
+ "react-universal-component-4.5.0" = {
+ name = "react-universal-component";
+ packageName = "react-universal-component";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-universal-component/-/react-universal-component-4.5.0.tgz";
+ sha512 = "dBUC6afvSAQhDcE4oh1eTmfU29W0O2eZhcGXnfGUTulXkU8ejuWqlJWXXrSMx5iV1H6LNgj2NJMj3BtBMfBNhA==";
+ };
+ };
"read-1.0.7" = {
name = "read";
packageName = "read";
@@ -50567,13 +50990,13 @@ let
sha512 = "y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==";
};
};
- "sass-1.32.8" = {
+ "sass-1.32.10" = {
name = "sass";
packageName = "sass";
- version = "1.32.8";
+ version = "1.32.10";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.32.8.tgz";
- sha512 = "Sl6mIeGpzjIUZqvKnKETfMf0iDAswD9TNlv13A7aAF3XZlRPMq4VvJWBC2N2DXbp94MQVdNSFG6LfF/iOXrPHQ==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.32.10.tgz";
+ sha512 = "Nx0pcWoonAkn7CRp0aE/hket1UP97GiR1IFw3kcjV3pnenhWgZEWUf0ZcfPOV2fK52fnOcK3JdC/YYZ9E47DTQ==";
};
};
"sax-0.5.8" = {
@@ -50738,13 +51161,13 @@ let
sha512 = "sDtmZDpibGH2ixj3FOmsC3Z/b08eaB2/KAvy2oSp4qvcGdhatBSfb1RdVpwjQl5c3J83WbBo1HSZ7DBtMu43lA==";
};
};
- "secret-stack-6.3.2" = {
+ "secret-stack-6.4.0" = {
name = "secret-stack";
packageName = "secret-stack";
- version = "6.3.2";
+ version = "6.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/secret-stack/-/secret-stack-6.3.2.tgz";
- sha512 = "D46+4LWwsM1LnO4dg6FM/MfGmMk9uYsIcDElqyNeImBnyUueKi2xz10CHF9iSAtSUGReQDV4SCVUiVrPnaKnsA==";
+ url = "https://registry.npmjs.org/secret-stack/-/secret-stack-6.4.0.tgz";
+ sha512 = "Vnc2bItbjMw5WUtQtxLL4Atl17KaUHdLdxIb3a89CQTAo/1G1YjmiNe2GAAgZHSBi6UYRoB/oRmuJz8HLZmnmA==";
};
};
"secure-compare-3.0.1" = {
@@ -51152,6 +51575,15 @@ let
sha512 = "F+NGU0UHMBO4Q965tjw7rvieNVjlH6Lqi2emq/Lc9LUURYJbiCzmpi4Cy1OOjjVPtxu0c+NE85LU6968Wko5ZA==";
};
};
+ "serve-11.3.2" = {
+ name = "serve";
+ packageName = "serve";
+ version = "11.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve/-/serve-11.3.2.tgz";
+ sha512 = "yKWQfI3xbj/f7X1lTBg91fXBP0FqjJ4TEi+ilES5yzH0iKJpN5LjNb1YzIfQg9Rqn4ECUS2SOf2+Kmepogoa5w==";
+ };
+ };
"serve-favicon-2.5.0" = {
name = "serve-favicon";
packageName = "serve-favicon";
@@ -51485,6 +51917,15 @@ let
sha512 = "sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==";
};
};
+ "shorthash-0.0.2" = {
+ name = "shorthash";
+ packageName = "shorthash";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shorthash/-/shorthash-0.0.2.tgz";
+ sha1 = "59b268eecbde59038b30da202bcfbddeb2c4a4eb";
+ };
+ };
"shortid-2.2.16" = {
name = "shortid";
packageName = "shortid";
@@ -52475,13 +52916,13 @@ let
sha512 = "VnVAb663fosipI/m6pqRXakEOw7nvd7TUgdr3PlR/8V2I95QIdwT8L4nMxhyU8SmDBHYXU1TOElaKOmKLfYzeQ==";
};
};
- "socks-2.6.0" = {
+ "socks-2.6.1" = {
name = "socks";
packageName = "socks";
- version = "2.6.0";
+ version = "2.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/socks/-/socks-2.6.0.tgz";
- sha512 = "mNmr9owlinMplev0Wd7UHFlqI4ofnBnNzFuzrm63PPaHgbkqCFe4T5LzwKmtQ/f2tX0NTpcdVLyD/FHxFBstYw==";
+ url = "https://registry.npmjs.org/socks/-/socks-2.6.1.tgz";
+ sha512 = "kLQ9N5ucj8uIcxrDwjm0Jsqk06xdpBjGNQtpXy4Q8/QY2k+fY7nZH8CARy+hkbG+SGAovmzzuauCpBlb8FrnBA==";
};
};
"socks-proxy-agent-5.0.0" = {
@@ -54842,6 +55283,15 @@ let
sha1 = "dd802425e0f53dc4a6e7aca3752901a1ccda7af5";
};
};
+ "style-loader-0.23.1" = {
+ name = "style-loader";
+ packageName = "style-loader";
+ version = "0.23.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz";
+ sha512 = "XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==";
+ };
+ };
"style-loader-1.2.1" = {
name = "style-loader";
packageName = "style-loader";
@@ -55382,6 +55832,15 @@ let
sha1 = "368ffc0e96bd84226ed1b9b33d66be57da04f09a";
};
};
+ "swimmer-1.4.0" = {
+ name = "swimmer";
+ packageName = "swimmer";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/swimmer/-/swimmer-1.4.0.tgz";
+ sha512 = "r6e+3pUnXgHQnzEN0tcIGmaTs76HbZEoM9NSdmAoNqSS4BPyoUFYeQtyGUm56SXoe62LS6BIrXc8q9yp9TuZgQ==";
+ };
+ };
"switchback-1.1.3" = {
name = "switchback";
packageName = "switchback";
@@ -56967,6 +57426,15 @@ let
sha512 = "605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==";
};
};
+ "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-2.0.2" = {
name = "toposort";
packageName = "toposort";
@@ -57327,6 +57795,15 @@ let
sha512 = "ikUlS+/BcImLhNYyIgZcEmq4byc31QpC+46/6Jm5ECWkVFhf8SM2Fp/0pMVXPX6vk45SMCwrP4Taxucne8I0VA==";
};
};
+ "tryer-1.0.1" = {
+ name = "tryer";
+ packageName = "tryer";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz";
+ sha512 = "c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==";
+ };
+ };
"ts-invariant-0.4.4" = {
name = "ts-invariant";
packageName = "ts-invariant";
@@ -59262,6 +59739,15 @@ let
sha512 = "jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==";
};
};
+ "url-loader-2.3.0" = {
+ name = "url-loader";
+ packageName = "url-loader";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url-loader/-/url-loader-2.3.0.tgz";
+ sha512 = "goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==";
+ };
+ };
"url-loader-4.1.1" = {
name = "url-loader";
packageName = "url-loader";
@@ -59352,6 +59838,15 @@ let
sha1 = "23f89069a6c62f46cf3a1d3b00169cefb90be0c6";
};
};
+ "usb-1.7.0" = {
+ name = "usb";
+ packageName = "usb";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/usb/-/usb-1.7.0.tgz";
+ sha512 = "LHm9d389NCzZSMd0DnilxT5Lord4P2E3ETwP1LeuJcEBmI5uLJv8Sd18z/9bairUMbDnnNqX+Hi5Xkl93Kvdmw==";
+ };
+ };
"use-3.1.1" = {
name = "use";
packageName = "use";
@@ -61189,6 +61684,15 @@ let
sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4";
};
};
+ "warning-4.0.3" = {
+ name = "warning";
+ packageName = "warning";
+ version = "4.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz";
+ sha512 = "rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==";
+ };
+ };
"watch-1.0.2" = {
name = "watch";
packageName = "watch";
@@ -61387,6 +61891,15 @@ let
sha512 = "1xllYVmA4dIvRjHzwELgW4KjIU1fW4PEuEnjsylz7k7H5HgPOctIq7W1jrt3sKH9yG5d72//XWzsHhfoWvsQVg==";
};
};
+ "webpack-bundle-analyzer-3.9.0" = {
+ name = "webpack-bundle-analyzer";
+ packageName = "webpack-bundle-analyzer";
+ version = "3.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz";
+ sha512 = "Ob8amZfCm3rMB1ScjQVlbYYUEJyEjdEtQ92jqiFUYt5VkEeO2v5UMbv49P/gnmCZm3A6yaFQzCBvpZqN4MUsdA==";
+ };
+ };
"webpack-cli-3.3.12" = {
name = "webpack-cli";
packageName = "webpack-cli";
@@ -61432,6 +61945,24 @@ let
sha512 = "PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==";
};
};
+ "webpack-dev-server-3.11.2" = {
+ name = "webpack-dev-server";
+ packageName = "webpack-dev-server";
+ version = "3.11.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz";
+ sha512 = "A80BkuHRQfCiNtGBS1EMf2ChTUs0x+B3wGDFmOeT4rmJOHhHTCH2naNxIHhmkr0/UillP4U3yeIyv1pNp+QDLQ==";
+ };
+ };
+ "webpack-flush-chunks-2.0.3" = {
+ name = "webpack-flush-chunks";
+ packageName = "webpack-flush-chunks";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webpack-flush-chunks/-/webpack-flush-chunks-2.0.3.tgz";
+ sha512 = "CXGOyXG5YjjxyI+Qyt3VlI//JX92UmGRNP65zN3o9CIntEzfzc1J30YTKRRvF1JsE/iEzbnp5u99yCkL9obotQ==";
+ };
+ };
"webpack-log-2.0.0" = {
name = "webpack-log";
packageName = "webpack-log";
@@ -61459,6 +61990,15 @@ let
sha512 = "6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==";
};
};
+ "webpack-node-externals-1.7.2" = {
+ name = "webpack-node-externals";
+ packageName = "webpack-node-externals";
+ version = "1.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-1.7.2.tgz";
+ sha512 = "ajerHZ+BJKeCLviLUUmnyd5B4RavLF76uv3cs6KNuO8W+HuQaEs0y0L7o40NQxdPy5w0pcv8Ew7yPUAQG0UdCg==";
+ };
+ };
"webpack-node-externals-2.5.2" = {
name = "webpack-node-externals";
packageName = "webpack-node-externals";
@@ -62458,6 +62998,15 @@ let
sha512 = "Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw==";
};
};
+ "ws-7.4.5" = {
+ name = "ws";
+ packageName = "ws";
+ version = "7.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz";
+ sha512 = "xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==";
+ };
+ };
"x-default-browser-0.3.1" = {
name = "x-default-browser";
packageName = "x-default-browser";
@@ -62936,13 +63485,13 @@ let
sha512 = "3MgPdaXV8rfQ/pNn16Eio6VXYPTkqwa0vc7GkiymmY/DqR1SE/7VPAAVZz1GJsJFrllMYO3RHfEaiUGjab6TNw==";
};
};
- "xstate-4.17.1" = {
+ "xstate-4.18.0" = {
name = "xstate";
packageName = "xstate";
- version = "4.17.1";
+ version = "4.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/xstate/-/xstate-4.17.1.tgz";
- sha512 = "3q7so9qAKFnz9/t7BNQXQtV+9fwDATCOkC+0tAvVqczboEbu6gz2dvPPVCCkj55Hyzgro9aSOntGSPGLei82BA==";
+ url = "https://registry.npmjs.org/xstate/-/xstate-4.18.0.tgz";
+ sha512 = "cjj22XXxTWIkMrghyoUWjUlDFcd7MQGeKYy8bkdtcIeogZjF98mep9CHv8xLO3j4PZQF5qgcAGGT8FUn99mF1Q==";
};
};
"xstream-11.14.0" = {
@@ -63539,13 +64088,13 @@ let
sha512 = "Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==";
};
};
- "zeromq-5.2.4" = {
+ "zeromq-5.2.7" = {
name = "zeromq";
packageName = "zeromq";
- version = "5.2.4";
+ version = "5.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/zeromq/-/zeromq-5.2.4.tgz";
- sha512 = "aRTlXSBiuCMiLnLliY0YT8hdJCjKwZ+rYCeacjvlCeBK8WD+EsLr8v3fnj6nIk5LbYFdgX8uFFWu/sw3+ED65g==";
+ url = "https://registry.npmjs.org/zeromq/-/zeromq-5.2.7.tgz";
+ sha512 = "z0R3qtmy4SFgYa/oDjxWFAAGjQb0IU1sJ0XVLflp3W72f2ALXHJzKPgcyCdgMQZTnvSULpZP2HbIYdemLtbBiQ==";
};
};
"zerr-1.0.4" = {
@@ -63865,7 +64414,7 @@ in
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.3"
sources."smart-buffer-4.1.0"
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."socks-proxy-agent-5.0.0"
sources."source-map-0.7.3"
sources."sourcemap-codec-1.4.8"
@@ -64520,7 +65069,7 @@ in
sources."buffer-5.7.1"
sources."buffer-from-1.1.1"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.1"
@@ -65087,7 +65636,7 @@ in
sources."call-bind-1.0.2"
sources."call-me-maybe-1.0.1"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
sources."caseless-0.12.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -65579,7 +66128,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-keys-1.1.1"
sources."object-path-0.11.5"
sources."object-visit-1.0.1"
@@ -66232,7 +66781,7 @@ in
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."browserslist-4.16.4"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -66425,8 +66974,8 @@ in
sources."devtools-protocol-0.0.854822"
sources."dom-serializer-1.2.0"
sources."domelementtype-2.2.0"
- sources."domhandler-4.1.0"
- sources."domutils-2.5.2"
+ sources."domhandler-4.2.0"
+ sources."domutils-2.6.0"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."entities-2.1.0"
@@ -66519,7 +67068,7 @@ in
sources."setprototypeof-1.1.1"
sources."signal-exit-3.0.3"
sources."smart-buffer-4.1.0"
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."socks-proxy-agent-5.0.0"
sources."source-map-0.6.1"
sources."statuses-1.5.0"
@@ -66552,7 +67101,7 @@ in
sources."uuid-8.3.2"
sources."word-wrap-1.2.3"
sources."wrappy-1.0.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
sources."xregexp-2.0.0"
@@ -67716,7 +68265,7 @@ in
sources."mkdirp-classic-0.5.3"
sources."module-deps-6.2.3"
sources."object-assign-4.1.1"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."once-1.4.0"
@@ -68048,7 +68597,7 @@ in
sources."lodash-4.17.21"
sources."lru-cache-6.0.0"
sources."map-obj-4.2.1"
- (sources."markdown-it-12.0.5" // {
+ (sources."markdown-it-12.0.6" // {
dependencies = [
sources."argparse-2.0.1"
sources."entities-2.1.0"
@@ -68801,7 +69350,7 @@ in
sources."ms-2.1.2"
sources."ncp-2.0.0"
sources."no-case-3.0.4"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
@@ -69093,7 +69642,7 @@ in
sources."node-fetch-2.6.1"
sources."normalize-path-3.0.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
@@ -69112,7 +69661,7 @@ in
sources."prop-types-15.7.2"
sources."quick-lru-4.0.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.12.1"
+ sources."react-devtools-core-4.12.2"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
sources."readable-stream-3.6.0"
@@ -69177,7 +69726,7 @@ in
sources."widest-line-3.1.0"
sources."wrap-ansi-6.2.0"
sources."wrappy-1.0.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xmlbuilder-15.1.1"
sources."xmldom-0.5.0"
sources."y18n-5.0.8"
@@ -69485,7 +70034,7 @@ in
sources."npm-run-path-3.1.0"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."open-8.0.5"
+ sources."open-8.0.6"
sources."os-homedir-1.0.2"
sources."p-finally-2.0.1"
sources."p-map-4.0.0"
@@ -69832,7 +70381,7 @@ in
sources."node-fetch-2.6.1"
sources."node-int64-0.4.0"
sources."npm-run-path-2.0.2"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."once-1.4.0"
@@ -70004,7 +70553,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
sources."capture-stack-trace-1.0.1"
sources."ccount-1.1.0"
(sources."chalk-4.1.0" // {
@@ -70908,7 +71457,7 @@ in
sha512 = "XlybP7uY9BgkeGKCFhIxnmpos3rYJ8wIB+MW4w0Fyu51Ap2fxamU7FDmOcOIbjmp1tglldSZm2+A+KloHDuUgw==";
};
dependencies = [
- sources."pyright-1.1.130"
+ sources."pyright-1.1.132"
];
buildInputs = globalBuildInputs;
meta = {
@@ -71110,7 +71659,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
(sources."chalk-4.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -72521,7 +73070,7 @@ in
sources."signal-exit-3.0.3"
sources."slash-3.0.0"
sources."smart-buffer-4.1.0"
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."socks-proxy-agent-5.0.0"
sources."spdx-correct-3.1.1"
sources."spdx-exceptions-2.3.0"
@@ -73091,7 +73640,7 @@ in
sources."mute-stream-0.0.7"
sources."next-tick-1.0.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-keys-1.1.1"
sources."onetime-2.0.1"
sources."os-tmpdir-1.0.2"
@@ -74104,10 +74653,10 @@ in
elasticdump = nodeEnv.buildNodePackage {
name = "elasticdump";
packageName = "elasticdump";
- version = "6.68.0";
+ version = "6.68.1";
src = fetchurl {
- url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.68.0.tgz";
- sha512 = "TbyxmvjB/wAuZfeXQIfFSn5LVE/SarcYSflAfL1tWnh4Az3OXGe4U5FoB/HRM8G3JTc2gp3oe1akrRpfda9+NQ==";
+ url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.68.1.tgz";
+ sha512 = "OGsAZGrhHIJw4koiMJ1U80eVJIcpKsN6u7Iq+d1Tu3TJvBSvYHShM3SllYbsbFzIdt8kBNj3XWsogajUpeX0+w==";
};
dependencies = [
sources."@fast-csv/format-4.3.5"
@@ -74959,7 +75508,7 @@ in
sources."quick-lru-4.0.1"
];
})
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -75130,7 +75679,7 @@ in
sources."punycode-2.1.1"
sources."quick-lru-5.1.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.12.1"
+ sources."react-devtools-core-4.12.2"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
(sources."read-pkg-5.2.0" // {
@@ -75207,7 +75756,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."yallist-4.0.0"
sources."yargs-parser-18.1.3"
sources."yoga-layout-prebuilt-1.10.0"
@@ -75257,7 +75806,7 @@ in
sources."@fluentui/date-time-utilities-7.9.1"
sources."@fluentui/dom-utilities-1.1.2"
sources."@fluentui/keyboard-key-0.2.16"
- sources."@fluentui/react-7.167.0"
+ sources."@fluentui/react-7.168.0"
sources."@fluentui/react-focus-7.17.6"
sources."@fluentui/react-window-provider-1.0.2"
sources."@fluentui/theme-1.7.4"
@@ -76298,7 +76847,7 @@ in
sources."object.map-1.0.1"
sources."object.pick-1.3.0"
sources."object.reduce-1.0.1"
- sources."office-ui-fabric-react-7.167.0"
+ sources."office-ui-fabric-react-7.168.0"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -76525,7 +77074,16 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- sources."sass-1.32.8"
+ (sources."sass-1.32.10" // {
+ dependencies = [
+ sources."anymatch-3.1.2"
+ sources."binary-extensions-2.2.0"
+ sources."chokidar-3.5.1"
+ sources."fsevents-2.3.2"
+ sources."is-binary-path-2.1.0"
+ sources."readdirp-3.5.0"
+ ];
+ })
sources."sax-1.2.4"
sources."scheduler-0.19.1"
sources."schema-utils-2.7.1"
@@ -76886,7 +77444,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xmlhttprequest-ssl-1.5.5"
sources."xtend-4.0.2"
sources."y18n-3.2.2"
@@ -76914,10 +77472,10 @@ in
escape-string-regexp = nodeEnv.buildNodePackage {
name = "escape-string-regexp";
packageName = "escape-string-regexp";
- version = "4.0.0";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz";
- sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==";
+ url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz";
+ sha512 = "/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -77522,7 +78080,7 @@ in
})
sources."@hapi/address-4.1.0"
sources."@hapi/formula-2.0.0"
- sources."@hapi/hoek-9.1.1"
+ sources."@hapi/hoek-9.2.0"
sources."@hapi/joi-17.1.1"
sources."@hapi/pinpoint-2.0.0"
sources."@hapi/topo-5.0.0"
@@ -77857,7 +78415,7 @@ in
})
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
sources."caseless-0.12.0"
(sources."chalk-4.1.0" // {
dependencies = [
@@ -78106,7 +78664,7 @@ in
sources."dom-converter-0.2.0"
(sources."dom-serializer-1.3.1" // {
dependencies = [
- sources."domhandler-4.1.0"
+ sources."domhandler-4.2.0"
];
})
sources."dom-walk-0.1.2"
@@ -78114,9 +78672,9 @@ in
sources."domelementtype-2.2.0"
sources."domhandler-3.3.0"
sources."domino-2.1.6"
- (sources."domutils-2.5.2" // {
+ (sources."domutils-2.6.0" // {
dependencies = [
- sources."domhandler-4.1.0"
+ sources."domhandler-4.2.0"
];
})
(sources."dot-case-3.0.4" // {
@@ -78794,7 +79352,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
@@ -79326,7 +79884,7 @@ in
sources."faye-websocket-0.11.3"
];
})
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."socks-proxy-agent-5.0.0"
sources."source-list-map-2.0.1"
sources."source-map-0.5.7"
@@ -80875,7 +81433,7 @@ in
sources."fecha-4.2.1"
sources."figures-2.0.0"
sources."file-uri-to-path-2.0.0"
- sources."filesize-6.2.2"
+ sources."filesize-6.2.5"
sources."fill-range-7.0.1"
(sources."finalhandler-1.1.2" // {
dependencies = [
@@ -81248,7 +81806,7 @@ in
sources."signal-exit-3.0.3"
sources."simple-swizzle-0.2.2"
sources."smart-buffer-4.1.0"
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."socks-proxy-agent-5.0.0"
sources."source-map-0.6.1"
sources."sprintf-js-1.0.3"
@@ -81392,7 +81950,7 @@ in
sources."word-wrap-1.2.3"
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xdg-basedir-4.0.0"
sources."xregexp-2.0.0"
sources."xtend-4.0.2"
@@ -82392,7 +82950,7 @@ in
sources."@mdx-js/util-2.0.0-next.8"
(sources."@sideway/address-4.1.1" // {
dependencies = [
- sources."@hapi/hoek-9.1.1"
+ sources."@hapi/hoek-9.2.0"
];
})
sources."@sideway/formula-3.0.0"
@@ -82476,7 +83034,7 @@ in
sources."call-bind-1.0.2"
sources."camel-case-4.1.2"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
sources."ccount-1.1.0"
(sources."chalk-4.1.0" // {
dependencies = [
@@ -82762,7 +83320,7 @@ in
sources."jest-get-type-25.2.6"
(sources."joi-17.4.0" // {
dependencies = [
- sources."@hapi/hoek-9.1.1"
+ sources."@hapi/hoek-9.2.0"
sources."@hapi/topo-5.0.0"
];
})
@@ -82833,7 +83391,7 @@ in
sources."npm-run-path-2.0.2"
sources."nth-check-1.0.2"
sources."object-assign-4.1.1"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-path-0.11.5"
sources."on-finished-2.3.0"
sources."once-1.4.0"
@@ -83058,9 +83616,9 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xdg-basedir-4.0.0"
- sources."xstate-4.17.1"
+ sources."xstate-4.18.0"
sources."xtend-4.0.2"
sources."y18n-4.0.3"
sources."yallist-4.0.0"
@@ -83269,7 +83827,7 @@ in
sources."separator-escape-0.0.1"
sources."sha.js-2.4.5"
sources."smart-buffer-4.1.0"
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."sodium-browserify-1.3.0"
(sources."sodium-browserify-tweetnacl-0.2.6" // {
dependencies = [
@@ -83708,7 +84266,7 @@ in
];
})
sources."@graphql-tools/load-6.2.4"
- (sources."@graphql-tools/merge-6.2.12" // {
+ (sources."@graphql-tools/merge-6.2.13" // {
dependencies = [
sources."@graphql-tools/utils-7.7.3"
sources."tslib-2.2.0"
@@ -84061,7 +84619,7 @@ in
sources."oas-schema-walker-1.1.5"
sources."oas-validator-5.0.5"
sources."oauth-sign-0.9.0"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object-path-0.11.5"
@@ -85549,7 +86107,7 @@ in
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
sources."ms-2.1.3"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."opener-1.5.2"
sources."portfinder-1.0.28"
sources."qs-6.10.1"
@@ -85740,76 +86298,13 @@ in
sha512 = "MIV3R9d2o9uucTmNH5IU5bvXcevljsOrsH7Sv3rmf/uoXjl/iXb8hx4ZnymBpdt48f7U2m0iKmpWlQzxjthtjw==";
};
dependencies = [
- sources."ansi-regex-2.1.1"
- sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
- sources."base64-js-1.5.1"
- (sources."bl-4.1.0" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- ];
- })
- sources."buffer-5.7.1"
- sources."chownr-1.1.4"
- sources."code-point-at-1.1.0"
- sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
- sources."decompress-response-4.2.1"
- sources."deep-extend-0.6.0"
- sources."delegates-1.0.0"
- sources."detect-libc-1.0.3"
- sources."end-of-stream-1.4.4"
- sources."expand-template-2.0.3"
- sources."fs-constants-1.0.0"
- sources."gauge-2.7.4"
- sources."github-from-package-0.0.0"
- sources."has-unicode-2.0.1"
- sources."ieee754-1.2.1"
- sources."inherits-2.0.4"
- sources."ini-1.3.8"
- sources."is-fullwidth-code-point-1.0.0"
- sources."isarray-1.0.0"
sources."jmp-2.0.0"
sources."jp-kernel-2.0.0"
- sources."mimic-response-2.1.0"
- sources."minimist-1.2.5"
- sources."mkdirp-classic-0.5.3"
sources."nan-2.14.2"
- sources."napi-build-utils-1.0.2"
sources."nel-1.2.0"
- sources."node-abi-2.21.0"
- sources."noop-logger-0.1.1"
- sources."npmlog-4.1.2"
- sources."number-is-nan-1.0.1"
- sources."object-assign-4.1.1"
- sources."once-1.4.0"
- sources."prebuild-install-6.1.1"
- sources."process-nextick-args-2.0.1"
- sources."pump-3.0.0"
- sources."rc-1.2.8"
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."semver-5.7.1"
- sources."set-blocking-2.0.0"
- sources."signal-exit-3.0.3"
- sources."simple-concat-1.0.1"
- sources."simple-get-3.1.0"
- 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-fs-2.1.1"
- (sources."tar-stream-2.2.0" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- ];
- })
- sources."tunnel-agent-0.6.0"
- sources."util-deprecate-1.0.2"
+ sources."node-gyp-build-4.2.3"
sources."uuid-3.4.0"
- sources."wide-align-1.1.3"
- sources."wrappy-1.0.2"
- sources."zeromq-5.2.4"
+ sources."zeromq-5.2.7"
];
buildInputs = globalBuildInputs;
meta = {
@@ -86390,7 +86885,7 @@ in
sources."path-key-2.0.1"
];
})
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."once-1.4.0"
sources."onetime-2.0.1"
sources."open-7.4.2"
@@ -86437,7 +86932,7 @@ in
];
})
sources."smart-buffer-4.1.0"
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."socks-proxy-agent-5.0.0"
sources."source-map-0.6.1"
sources."split2-3.2.2"
@@ -86497,7 +86992,7 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xregexp-2.0.0"
sources."yallist-3.1.1"
];
@@ -87070,15 +87565,15 @@ in
sources."diff-match-patch-1.0.5"
(sources."dom-serializer-1.3.1" // {
dependencies = [
- sources."domhandler-4.1.0"
+ sources."domhandler-4.2.0"
];
})
sources."domelementtype-2.2.0"
sources."domexception-1.0.1"
sources."domhandler-3.3.0"
- (sources."domutils-2.5.2" // {
+ (sources."domutils-2.6.0" // {
dependencies = [
- sources."domhandler-4.1.0"
+ sources."domhandler-4.2.0"
];
})
sources."ecc-jsbn-0.1.2"
@@ -87256,7 +87751,7 @@ in
];
})
sources."keytar-7.6.0"
- sources."khroma-1.4.0"
+ sources."khroma-1.4.1"
sources."klaw-1.3.1"
sources."lazyness-1.2.0"
sources."levenshtein-1.0.5"
@@ -87609,7 +88104,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xml-name-validator-3.0.0"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
@@ -87630,10 +88125,10 @@ in
js-beautify = nodeEnv.buildNodePackage {
name = "js-beautify";
packageName = "js-beautify";
- version = "1.13.11";
+ version = "1.13.13";
src = fetchurl {
- url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.11.tgz";
- sha512 = "+3CW1fQqkV7aXIvprevNYfSrKrASQf02IstAZCVSNh+/IS5ciaOtE7erfjyowdMYZZmP2A7SMFkcJ28qCl84+A==";
+ url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.13.tgz";
+ sha512 = "oH+nc0U5mOAqX8M5JO1J0Pw/7Q35sAdOsM5W3i87pir9Ntx6P/5Gx1xLNoK+MGyvHk4rqqRCE4Oq58H6xl2W7A==";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -87868,7 +88363,7 @@ in
sources."mime-types-2.1.30"
sources."ms-2.1.3"
sources."native-promise-only-0.8.1"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."path-loader-1.0.10"
sources."process-nextick-args-2.0.1"
sources."punycode-2.1.1"
@@ -88344,7 +88839,7 @@ in
sources."next-tick-1.0.0"
sources."nice-try-1.0.5"
sources."node-downloader-helper-1.0.18"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-treeify-1.1.33"
sources."onetime-5.1.2"
sources."os-tmpdir-1.0.2"
@@ -88413,6 +88908,27 @@ in
bypassCache = true;
reconstructLock = true;
};
+ katex = nodeEnv.buildNodePackage {
+ name = "katex";
+ packageName = "katex";
+ version = "0.13.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/katex/-/katex-0.13.2.tgz";
+ sha512 = "u/KhjFDhyPr+70aiBn9SL/9w/QlLagIXBi2NZSbNnBUp2tR8dCjQplyEMkEzniem5gOeSCBjlBUg4VaiWs1JJg==";
+ };
+ dependencies = [
+ sources."commander-6.2.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Fast math typesetting for the web.";
+ homepage = "https://katex.org";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
karma = nodeEnv.buildNodePackage {
name = "karma";
packageName = "karma";
@@ -88561,7 +89077,7 @@ in
sources."void-elements-2.0.1"
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."y18n-5.0.8"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.7"
@@ -89550,7 +90066,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- (sources."init-package-json-2.0.2" // {
+ (sources."init-package-json-2.0.3" // {
dependencies = [
sources."normalize-package-data-3.0.2"
sources."read-package-json-3.0.1"
@@ -89719,7 +90235,7 @@ in
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."object.getownpropertydescriptors-2.1.2"
@@ -89827,7 +90343,7 @@ in
sources."slash-3.0.0"
sources."slide-1.1.6"
sources."smart-buffer-4.1.0"
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."socks-proxy-agent-5.0.0"
sources."sort-keys-2.0.0"
sources."source-map-0.6.1"
@@ -90826,7 +91342,7 @@ in
sources."uuid-3.4.0"
sources."vary-1.1.2"
sources."verror-1.10.0"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xmlhttprequest-ssl-1.5.5"
sources."yeast-0.1.2"
];
@@ -91142,7 +91658,7 @@ in
sources."cached-path-relative-1.0.2"
sources."call-bind-1.0.2"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
sources."capture-exit-2.0.0"
sources."caseless-0.12.0"
(sources."chalk-3.0.0" // {
@@ -92544,7 +93060,7 @@ in
sources."ieee754-1.2.1"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."khroma-1.4.0"
+ sources."khroma-1.4.1"
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
sources."lower-case-1.1.4"
@@ -92595,7 +93111,7 @@ in
sources."upper-case-1.1.3"
sources."util-deprecate-1.0.2"
sources."wrappy-1.0.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."yauzl-2.10.0"
];
buildInputs = globalBuildInputs;
@@ -92620,7 +93136,7 @@ in
sources."@fluentui/date-time-utilities-7.9.1"
sources."@fluentui/dom-utilities-1.1.2"
sources."@fluentui/keyboard-key-0.2.16"
- sources."@fluentui/react-7.167.0"
+ sources."@fluentui/react-7.168.0"
sources."@fluentui/react-focus-7.17.6"
sources."@fluentui/react-window-provider-1.0.2"
sources."@fluentui/theme-1.7.4"
@@ -92760,7 +93276,7 @@ in
sources."node-fetch-1.6.3"
sources."normalize-url-4.5.0"
sources."object-assign-4.1.1"
- sources."office-ui-fabric-react-7.167.0"
+ sources."office-ui-fabric-react-7.168.0"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -93049,7 +93565,7 @@ in
sources."mime-types-2.1.30"
sources."ms-2.1.3"
sources."native-promise-only-0.8.1"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."path-loader-1.0.10"
sources."process-nextick-args-2.0.1"
sources."punycode-2.1.1"
@@ -93136,10 +93652,10 @@ in
netlify-cli = nodeEnv.buildNodePackage {
name = "netlify-cli";
packageName = "netlify-cli";
- version = "3.18.2";
+ version = "3.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.18.2.tgz";
- sha512 = "PfsSVVLbVX7L9ZvvUL52gslq8FByh6U/fmlDe0Gv8FVnCzMl0SlSdcrG8OhW8QayE0KgV9lMOu9Mrvv/UaRwtQ==";
+ url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.18.3.tgz";
+ sha512 = "VonzQOBohu/+G++NiVIwoyrwDaGo7VV4kzqrJr9pc7KWm95iBT+4FBvlzAk4VYg6vU5/3WYcOIwQTNSOZKcJiA==";
};
dependencies = [
sources."@babel/code-frame-7.12.13"
@@ -93261,7 +93777,7 @@ in
sources."@dabh/diagnostics-2.0.2"
sources."@jest/types-24.9.0"
sources."@mrmlnc/readdir-enhanced-2.2.1"
- (sources."@netlify/build-11.0.2" // {
+ (sources."@netlify/build-11.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-3.0.0"
@@ -93288,7 +93804,7 @@ in
sources."locate-path-5.0.0"
];
})
- sources."@netlify/functions-utils-1.3.24"
+ sources."@netlify/functions-utils-1.3.25"
(sources."@netlify/git-utils-1.0.8" // {
dependencies = [
sources."braces-3.0.2"
@@ -93503,7 +94019,7 @@ in
sources."@rollup/pluginutils-3.1.0"
sources."@samverschueren/stream-to-observable-0.3.1"
sources."@sindresorhus/is-0.14.0"
- (sources."@sindresorhus/slugify-1.1.0" // {
+ (sources."@sindresorhus/slugify-1.1.2" // {
dependencies = [
sources."escape-string-regexp-4.0.0"
];
@@ -93673,7 +94189,7 @@ in
sources."call-bind-1.0.2"
sources."call-me-maybe-1.0.1"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
sources."cardinal-2.1.1"
sources."caw-2.0.1"
(sources."chalk-2.4.2" // {
@@ -93934,7 +94450,7 @@ in
sources."envinfo-7.8.1"
sources."error-ex-1.3.2"
sources."error-stack-parser-2.0.6"
- sources."esbuild-0.11.11"
+ sources."esbuild-0.11.12"
sources."escalade-3.1.1"
sources."escape-goat-2.1.1"
sources."escape-html-1.0.3"
@@ -94540,7 +95056,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-keys-1.1.1"
sources."object-treeify-1.1.33"
sources."object-visit-1.0.1"
@@ -95195,7 +95711,7 @@ in
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.3"
sources."smart-buffer-4.1.0"
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."socks-proxy-agent-5.0.0"
sources."ssri-8.0.1"
sources."string-width-1.0.2"
@@ -95916,10 +96432,10 @@ in
sources."ms-2.1.2"
sources."readable-stream-3.6.0"
sources."string_decoder-1.3.0"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
];
})
- (sources."mqtt-packet-6.9.0" // {
+ (sources."mqtt-packet-6.9.1" // {
dependencies = [
sources."debug-4.3.2"
sources."ms-2.1.2"
@@ -97316,7 +97832,7 @@ in
sources."sisteransi-1.0.5"
sources."slash-3.0.0"
sources."smart-buffer-4.1.0"
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."socks-proxy-agent-5.0.0"
sources."spawn-please-1.0.0"
sources."sshpk-1.16.1"
@@ -97845,7 +98361,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -97972,7 +98488,7 @@ in
sources."domain-browser-1.2.0"
sources."domelementtype-1.3.1"
sources."domexception-1.0.1"
- (sources."domhandler-4.1.0" // {
+ (sources."domhandler-4.2.0" // {
dependencies = [
sources."domelementtype-2.2.0"
];
@@ -97996,7 +98512,7 @@ in
sources."error-ex-1.3.2"
(sources."es-abstract-1.18.0" // {
dependencies = [
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
];
})
sources."es-to-primitive-1.2.1"
@@ -98099,7 +98615,7 @@ in
dependencies = [
sources."dom-serializer-1.3.1"
sources."domelementtype-2.2.0"
- sources."domutils-2.5.2"
+ sources."domutils-2.6.0"
sources."entities-2.2.0"
];
})
@@ -99625,7 +100141,7 @@ in
sources."verror-1.10.0"
sources."which-1.3.1"
sources."wrappy-1.0.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xmlhttprequest-ssl-1.5.5"
sources."xtend-4.0.2"
sources."yeast-0.1.2"
@@ -99831,7 +100347,7 @@ in
sources."shimmer-1.2.1"
sources."signal-exit-3.0.3"
sources."smart-buffer-4.1.0"
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."socks-proxy-agent-5.0.0"
sources."source-map-0.6.1"
sources."source-map-support-0.5.19"
@@ -100424,10 +100940,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.130";
+ version = "1.1.132";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.130.tgz";
- sha512 = "hj4Lvn0x5LFsZDJaZ5hW5X4NfHSCoMvEqcNvRgpYM59qAM22z7XC+Tb7XNrQEhOfIjsbczS3nKWGGUMCe88LXg==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.132.tgz";
+ sha512 = "quvG9Ip2NwKEShsLJ7eLlkQ/ST5SX84QCgO/k7gGqlCHwuifn9/v7LrzdpdFbkVnQR51egUNWwwLQRoIBT6vUA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -100726,7 +101242,7 @@ in
sources."mkdirp-0.5.5"
sources."mute-stream-0.0.8"
sources."ncp-0.4.2"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
@@ -100767,6 +101283,1741 @@ in
bypassCache = true;
reconstructLock = true;
};
+ react-static = nodeEnv.buildNodePackage {
+ name = "react-static";
+ packageName = "react-static";
+ version = "7.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-static/-/react-static-7.5.3.tgz";
+ sha512 = "coA9MuNPfN+8TyFj7aOycw2e5W9t+sSgFOUyK30oDrh2MWWWHLjY0I4V1puyCconC2arggfDE2GYXvqOTCGv9Q==";
+ };
+ dependencies = [
+ sources."@babel/cli-7.13.14"
+ sources."@babel/code-frame-7.12.13"
+ sources."@babel/compat-data-7.13.15"
+ (sources."@babel/core-7.13.15" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."@babel/generator-7.13.9"
+ sources."@babel/helper-annotate-as-pure-7.12.13"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13"
+ (sources."@babel/helper-compilation-targets-7.13.13" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."@babel/helper-create-class-features-plugin-7.13.11"
+ sources."@babel/helper-create-regexp-features-plugin-7.12.17"
+ (sources."@babel/helper-define-polyfill-provider-0.2.0" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."@babel/helper-explode-assignable-expression-7.13.0"
+ sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/helper-get-function-arity-7.12.13"
+ sources."@babel/helper-hoist-variables-7.13.0"
+ sources."@babel/helper-member-expression-to-functions-7.13.12"
+ sources."@babel/helper-module-imports-7.13.12"
+ sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-optimise-call-expression-7.12.13"
+ sources."@babel/helper-plugin-utils-7.13.0"
+ sources."@babel/helper-remap-async-to-generator-7.13.0"
+ sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-simple-access-7.13.12"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1"
+ sources."@babel/helper-split-export-declaration-7.12.13"
+ sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-option-7.12.17"
+ sources."@babel/helper-wrap-function-7.13.0"
+ sources."@babel/helpers-7.13.10"
+ sources."@babel/highlight-7.13.10"
+ sources."@babel/parser-7.13.15"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12"
+ sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
+ sources."@babel/plugin-proposal-class-properties-7.13.0"
+ sources."@babel/plugin-proposal-dynamic-import-7.13.8"
+ sources."@babel/plugin-proposal-export-default-from-7.12.13"
+ sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
+ sources."@babel/plugin-proposal-json-strings-7.13.8"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8"
+ sources."@babel/plugin-proposal-numeric-separator-7.12.13"
+ sources."@babel/plugin-proposal-object-rest-spread-7.13.8"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.13.8"
+ sources."@babel/plugin-proposal-optional-chaining-7.13.12"
+ sources."@babel/plugin-proposal-private-methods-7.13.0"
+ sources."@babel/plugin-proposal-unicode-property-regex-7.12.13"
+ sources."@babel/plugin-syntax-async-generators-7.8.4"
+ sources."@babel/plugin-syntax-class-properties-7.12.13"
+ sources."@babel/plugin-syntax-dynamic-import-7.8.3"
+ sources."@babel/plugin-syntax-export-default-from-7.12.13"
+ sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
+ sources."@babel/plugin-syntax-json-strings-7.8.3"
+ sources."@babel/plugin-syntax-jsx-7.12.13"
+ sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
+ sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3"
+ sources."@babel/plugin-syntax-numeric-separator-7.10.4"
+ sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
+ sources."@babel/plugin-syntax-optional-catch-binding-7.8.3"
+ sources."@babel/plugin-syntax-optional-chaining-7.8.3"
+ sources."@babel/plugin-syntax-top-level-await-7.12.13"
+ sources."@babel/plugin-transform-arrow-functions-7.13.0"
+ sources."@babel/plugin-transform-async-to-generator-7.13.0"
+ sources."@babel/plugin-transform-block-scoped-functions-7.12.13"
+ sources."@babel/plugin-transform-block-scoping-7.12.13"
+ sources."@babel/plugin-transform-classes-7.13.0"
+ sources."@babel/plugin-transform-computed-properties-7.13.0"
+ sources."@babel/plugin-transform-destructuring-7.13.0"
+ sources."@babel/plugin-transform-dotall-regex-7.12.13"
+ sources."@babel/plugin-transform-duplicate-keys-7.12.13"
+ sources."@babel/plugin-transform-exponentiation-operator-7.12.13"
+ sources."@babel/plugin-transform-for-of-7.13.0"
+ sources."@babel/plugin-transform-function-name-7.12.13"
+ sources."@babel/plugin-transform-literals-7.12.13"
+ sources."@babel/plugin-transform-member-expression-literals-7.12.13"
+ sources."@babel/plugin-transform-modules-amd-7.13.0"
+ sources."@babel/plugin-transform-modules-commonjs-7.13.8"
+ sources."@babel/plugin-transform-modules-systemjs-7.13.8"
+ sources."@babel/plugin-transform-modules-umd-7.13.0"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13"
+ sources."@babel/plugin-transform-new-target-7.12.13"
+ sources."@babel/plugin-transform-object-super-7.12.13"
+ sources."@babel/plugin-transform-parameters-7.13.0"
+ sources."@babel/plugin-transform-property-literals-7.12.13"
+ sources."@babel/plugin-transform-react-display-name-7.12.13"
+ sources."@babel/plugin-transform-react-jsx-7.13.12"
+ sources."@babel/plugin-transform-react-jsx-development-7.12.17"
+ sources."@babel/plugin-transform-react-pure-annotations-7.12.1"
+ sources."@babel/plugin-transform-regenerator-7.13.15"
+ sources."@babel/plugin-transform-reserved-words-7.12.13"
+ (sources."@babel/plugin-transform-runtime-7.13.15" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."@babel/plugin-transform-shorthand-properties-7.12.13"
+ sources."@babel/plugin-transform-spread-7.13.0"
+ sources."@babel/plugin-transform-sticky-regex-7.12.13"
+ sources."@babel/plugin-transform-template-literals-7.13.0"
+ sources."@babel/plugin-transform-typeof-symbol-7.12.13"
+ sources."@babel/plugin-transform-unicode-escapes-7.12.13"
+ sources."@babel/plugin-transform-unicode-regex-7.12.13"
+ (sources."@babel/preset-env-7.13.15" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."@babel/preset-modules-0.1.4"
+ sources."@babel/preset-react-7.13.13"
+ sources."@babel/preset-stage-0-7.8.3"
+ sources."@babel/register-7.13.14"
+ sources."@babel/runtime-7.13.10"
+ sources."@babel/template-7.12.13"
+ sources."@babel/traverse-7.13.15"
+ sources."@babel/types-7.13.14"
+ sources."@reach/router-1.3.4"
+ sources."@sindresorhus/is-0.7.0"
+ sources."@types/glob-7.1.3"
+ sources."@types/json-schema-7.0.7"
+ sources."@types/minimatch-3.0.4"
+ sources."@types/node-14.14.41"
+ sources."@types/parse-json-4.0.0"
+ sources."@types/q-1.5.4"
+ sources."@webassemblyjs/ast-1.9.0"
+ sources."@webassemblyjs/floating-point-hex-parser-1.9.0"
+ sources."@webassemblyjs/helper-api-error-1.9.0"
+ sources."@webassemblyjs/helper-buffer-1.9.0"
+ sources."@webassemblyjs/helper-code-frame-1.9.0"
+ sources."@webassemblyjs/helper-fsm-1.9.0"
+ sources."@webassemblyjs/helper-module-context-1.9.0"
+ sources."@webassemblyjs/helper-wasm-bytecode-1.9.0"
+ sources."@webassemblyjs/helper-wasm-section-1.9.0"
+ sources."@webassemblyjs/ieee754-1.9.0"
+ sources."@webassemblyjs/leb128-1.9.0"
+ sources."@webassemblyjs/utf8-1.9.0"
+ sources."@webassemblyjs/wasm-edit-1.9.0"
+ sources."@webassemblyjs/wasm-gen-1.9.0"
+ sources."@webassemblyjs/wasm-opt-1.9.0"
+ sources."@webassemblyjs/wasm-parser-1.9.0"
+ sources."@webassemblyjs/wast-parser-1.9.0"
+ sources."@webassemblyjs/wast-printer-1.9.0"
+ sources."@xtuc/ieee754-1.2.0"
+ sources."@xtuc/long-4.2.2"
+ sources."@zeit/schemas-2.6.0"
+ sources."accepts-1.3.7"
+ sources."acorn-6.4.2"
+ sources."acorn-walk-7.2.0"
+ sources."after-0.8.2"
+ sources."ajv-6.12.6"
+ sources."ajv-errors-1.0.1"
+ sources."ajv-keywords-3.5.2"
+ sources."alphanum-sort-1.0.2"
+ sources."ansi-align-2.0.0"
+ sources."ansi-colors-3.2.4"
+ sources."ansi-escapes-3.2.0"
+ sources."ansi-html-0.0.7"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."anymatch-3.1.2"
+ sources."aproba-1.2.0"
+ sources."arch-2.2.0"
+ (sources."archive-type-4.0.0" // {
+ dependencies = [
+ sources."file-type-4.4.0"
+ ];
+ })
+ sources."arg-2.0.0"
+ sources."argparse-1.0.10"
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-flatten-1.1.1"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."array-unique-0.3.2"
+ sources."arraybuffer.slice-0.0.7"
+ (sources."asn1.js-5.4.1" // {
+ dependencies = [
+ sources."bn.js-4.12.0"
+ ];
+ })
+ (sources."assert-1.5.0" // {
+ dependencies = [
+ sources."inherits-2.0.1"
+ sources."util-0.10.3"
+ ];
+ })
+ sources."assign-symbols-1.0.0"
+ sources."async-2.6.3"
+ sources."async-each-1.0.3"
+ sources."async-limiter-1.0.1"
+ sources."atob-2.1.2"
+ sources."autoprefixer-9.8.6"
+ sources."axios-0.21.1"
+ sources."babel-core-7.0.0-bridge.0"
+ (sources."babel-loader-8.2.2" // {
+ dependencies = [
+ sources."find-cache-dir-3.3.1"
+ sources."find-up-4.1.0"
+ sources."locate-path-5.0.0"
+ sources."make-dir-3.1.0"
+ sources."p-locate-4.1.0"
+ sources."path-exists-4.0.0"
+ sources."pkg-dir-4.2.0"
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."babel-plugin-dynamic-import-node-2.3.3"
+ sources."babel-plugin-macros-2.8.0"
+ (sources."babel-plugin-polyfill-corejs2-0.2.0" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."babel-plugin-polyfill-corejs3-0.2.0"
+ sources."babel-plugin-polyfill-regenerator-0.2.0"
+ sources."babel-plugin-transform-react-remove-prop-types-0.4.24"
+ sources."babel-plugin-universal-import-4.0.2"
+ (sources."babel-runtime-6.26.0" // {
+ dependencies = [
+ sources."regenerator-runtime-0.11.1"
+ ];
+ })
+ sources."backo2-1.0.2"
+ sources."balanced-match-1.0.2"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."base64-arraybuffer-0.1.4"
+ sources."base64-js-1.5.1"
+ sources."base64id-2.0.0"
+ sources."batch-0.6.1"
+ sources."bfj-6.1.2"
+ sources."big.js-5.2.2"
+ sources."binary-extensions-2.2.0"
+ sources."bindings-1.5.0"
+ sources."bl-1.2.3"
+ sources."blob-0.0.5"
+ sources."bluebird-3.7.2"
+ sources."bn.js-5.2.0"
+ (sources."body-parser-1.19.0" // {
+ dependencies = [
+ sources."bytes-3.1.0"
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ (sources."bonjour-3.5.0" // {
+ dependencies = [
+ sources."array-flatten-2.1.2"
+ ];
+ })
+ sources."boolbase-1.0.0"
+ (sources."boxen-1.3.0" // {
+ dependencies = [
+ sources."camelcase-4.1.0"
+ ];
+ })
+ sources."brace-expansion-1.1.11"
+ sources."braces-3.0.2"
+ sources."brorand-1.1.0"
+ sources."browserify-aes-1.2.0"
+ sources."browserify-cipher-1.0.1"
+ sources."browserify-des-1.0.2"
+ sources."browserify-rsa-4.1.0"
+ (sources."browserify-sign-4.2.1" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ sources."safe-buffer-5.2.1"
+ ];
+ })
+ sources."browserify-zlib-0.1.4"
+ sources."browserslist-4.16.4"
+ sources."buffer-5.7.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."buffer-from-1.1.1"
+ sources."buffer-indexof-1.1.1"
+ sources."buffer-xor-1.0.3"
+ sources."builtin-status-codes-3.0.0"
+ sources."bytes-3.0.0"
+ (sources."cacache-12.0.4" // {
+ dependencies = [
+ sources."lru-cache-5.1.1"
+ sources."yallist-3.1.1"
+ ];
+ })
+ sources."cache-base-1.0.1"
+ (sources."cacheable-request-2.1.4" // {
+ dependencies = [
+ sources."lowercase-keys-1.0.0"
+ ];
+ })
+ sources."call-bind-1.0.2"
+ (sources."caller-callsite-2.0.0" // {
+ dependencies = [
+ sources."callsites-2.0.0"
+ ];
+ })
+ sources."caller-path-2.0.0"
+ sources."callsites-3.1.0"
+ sources."camel-case-3.0.0"
+ sources."camelcase-5.3.1"
+ sources."caniuse-api-3.0.0"
+ sources."caniuse-lite-1.0.30001209"
+ sources."case-sensitive-paths-webpack-plugin-2.4.0"
+ sources."caw-2.0.1"
+ (sources."chalk-2.4.2" // {
+ dependencies = [
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."chardet-0.7.0"
+ sources."check-types-8.0.3"
+ sources."chokidar-3.5.1"
+ sources."chownr-1.1.4"
+ sources."chrome-trace-event-1.0.3"
+ sources."cipher-base-1.0.4"
+ sources."circular-dependency-plugin-5.2.2"
+ (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."clean-css-4.2.3" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.1"
+ (sources."clipboardy-1.2.3" // {
+ dependencies = [
+ sources."execa-0.8.0"
+ ];
+ })
+ (sources."cliui-5.0.0" // {
+ dependencies = [
+ sources."string-width-3.1.0"
+ ];
+ })
+ sources."clone-response-1.0.2"
+ sources."coa-2.0.2"
+ sources."collection-visit-1.0.0"
+ sources."color-3.1.3"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."color-string-1.5.5"
+ sources."colorette-1.2.2"
+ sources."commander-4.1.1"
+ sources."commondir-1.0.1"
+ sources."component-bind-1.0.0"
+ sources."component-emitter-1.2.1"
+ sources."component-inherit-0.0.3"
+ sources."compressible-2.0.18"
+ (sources."compression-1.7.3" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.2"
+ sources."config-chain-1.1.12"
+ sources."connect-history-api-fallback-1.6.0"
+ sources."console-browserify-1.2.0"
+ sources."constants-browserify-1.0.0"
+ sources."content-disposition-0.5.3"
+ sources."content-type-1.0.4"
+ sources."convert-source-map-1.7.0"
+ sources."cookie-0.4.1"
+ sources."cookie-signature-1.0.6"
+ sources."copy-concurrently-1.0.5"
+ sources."copy-descriptor-0.1.1"
+ sources."core-js-2.6.12"
+ (sources."core-js-compat-3.10.1" // {
+ dependencies = [
+ sources."semver-7.0.0"
+ ];
+ })
+ sources."core-util-is-1.0.2"
+ sources."cors-2.8.5"
+ sources."cosmiconfig-6.0.0"
+ (sources."create-ecdh-4.0.4" // {
+ dependencies = [
+ sources."bn.js-4.12.0"
+ ];
+ })
+ sources."create-hash-1.2.0"
+ sources."create-hmac-1.1.7"
+ sources."create-react-context-0.3.0"
+ sources."cross-spawn-5.1.0"
+ sources."crypto-browserify-3.12.0"
+ sources."css-color-names-0.0.4"
+ sources."css-declaration-sorter-4.0.1"
+ (sources."css-loader-2.1.1" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ sources."schema-utils-1.0.0"
+ ];
+ })
+ sources."css-select-2.1.0"
+ sources."css-select-base-adapter-0.1.1"
+ (sources."css-tree-1.0.0-alpha.37" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."css-what-3.4.2"
+ sources."cssesc-3.0.0"
+ (sources."cssnano-4.1.11" // {
+ dependencies = [
+ sources."cosmiconfig-5.2.1"
+ sources."import-fresh-2.0.0"
+ sources."parse-json-4.0.0"
+ sources."resolve-from-3.0.0"
+ ];
+ })
+ sources."cssnano-preset-default-4.0.8"
+ sources."cssnano-util-get-arguments-4.0.0"
+ sources."cssnano-util-get-match-4.0.0"
+ sources."cssnano-util-raw-cache-4.0.1"
+ sources."cssnano-util-same-parent-4.0.1"
+ (sources."csso-4.2.0" // {
+ dependencies = [
+ sources."css-tree-1.1.3"
+ sources."mdn-data-2.0.14"
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."cyclist-1.0.1"
+ sources."debug-4.3.2"
+ sources."decamelize-1.2.0"
+ sources."decode-uri-component-0.2.0"
+ (sources."decompress-4.2.1" // {
+ dependencies = [
+ (sources."make-dir-1.3.0" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."decompress-response-3.3.0"
+ (sources."decompress-tar-4.1.1" // {
+ dependencies = [
+ sources."file-type-5.2.0"
+ ];
+ })
+ (sources."decompress-tarbz2-4.1.1" // {
+ dependencies = [
+ sources."file-type-6.2.0"
+ ];
+ })
+ (sources."decompress-targz-4.1.1" // {
+ dependencies = [
+ sources."file-type-5.2.0"
+ ];
+ })
+ (sources."decompress-unzip-4.0.1" // {
+ dependencies = [
+ sources."file-type-3.9.0"
+ sources."get-stream-2.3.1"
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."deep-equal-1.1.1"
+ sources."deep-extend-0.6.0"
+ (sources."default-gateway-4.2.0" // {
+ dependencies = [
+ sources."cross-spawn-6.0.5"
+ sources."execa-1.0.0"
+ sources."get-stream-4.1.0"
+ sources."pump-3.0.0"
+ ];
+ })
+ sources."define-properties-1.1.3"
+ sources."define-property-2.0.2"
+ sources."del-4.1.1"
+ sources."depd-1.1.2"
+ sources."des.js-1.0.1"
+ sources."destroy-1.0.4"
+ sources."detect-node-2.0.5"
+ (sources."diffie-hellman-5.0.3" // {
+ dependencies = [
+ sources."bn.js-4.12.0"
+ ];
+ })
+ sources."dns-equal-1.0.0"
+ sources."dns-packet-1.3.1"
+ sources."dns-txt-2.0.2"
+ sources."dom-converter-0.2.0"
+ (sources."dom-serializer-0.2.2" // {
+ dependencies = [
+ sources."domelementtype-2.2.0"
+ ];
+ })
+ sources."domain-browser-1.2.0"
+ sources."domelementtype-1.3.1"
+ sources."domhandler-2.4.2"
+ sources."domutils-1.7.0"
+ sources."dot-prop-5.3.0"
+ (sources."download-7.1.0" // {
+ dependencies = [
+ sources."make-dir-1.3.0"
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."download-git-repo-2.0.0"
+ sources."duplexer-0.1.2"
+ sources."duplexer3-0.1.4"
+ sources."duplexify-3.7.1"
+ sources."ee-first-1.1.1"
+ sources."ejs-2.7.4"
+ sources."electron-to-chromium-1.3.717"
+ (sources."elliptic-6.5.4" // {
+ dependencies = [
+ sources."bn.js-4.12.0"
+ ];
+ })
+ sources."emoji-regex-7.0.3"
+ sources."emojis-list-3.0.0"
+ sources."encodeurl-1.0.2"
+ sources."end-of-stream-1.4.4"
+ (sources."engine.io-3.5.0" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ ];
+ })
+ (sources."engine.io-client-3.5.1" // {
+ dependencies = [
+ sources."component-emitter-1.3.0"
+ sources."debug-3.1.0"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."engine.io-parser-2.2.1"
+ (sources."enhanced-resolve-4.5.0" // {
+ dependencies = [
+ sources."memory-fs-0.5.0"
+ ];
+ })
+ sources."entities-2.2.0"
+ sources."errno-0.1.8"
+ sources."error-ex-1.3.2"
+ sources."es-abstract-1.18.0"
+ sources."es-to-primitive-1.2.1"
+ sources."escalade-3.1.1"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."eslint-scope-4.0.3"
+ sources."esprima-4.0.1"
+ (sources."esrecurse-4.3.0" // {
+ dependencies = [
+ sources."estraverse-5.2.0"
+ ];
+ })
+ sources."estraverse-4.3.0"
+ sources."esutils-2.0.3"
+ sources."etag-1.8.1"
+ sources."eventemitter3-4.0.7"
+ sources."events-3.3.0"
+ sources."eventsource-1.1.0"
+ sources."evp_bytestokey-1.0.3"
+ sources."execa-0.7.0"
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ 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."ms-2.0.0"
+ ];
+ })
+ (sources."express-4.17.1" // {
+ dependencies = [
+ sources."cookie-0.4.0"
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ sources."path-to-regexp-0.1.7"
+ sources."range-parser-1.2.1"
+ ];
+ })
+ sources."ext-list-2.2.2"
+ sources."ext-name-5.0.0"
+ (sources."extend-shallow-3.0.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."external-editor-3.1.0"
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ (sources."extract-css-chunks-webpack-plugin-4.9.0" // {
+ dependencies = [
+ sources."loader-utils-2.0.0"
+ sources."normalize-url-1.9.1"
+ sources."prepend-http-1.0.4"
+ sources."query-string-4.3.4"
+ sources."schema-utils-1.0.0"
+ ];
+ })
+ sources."fast-deep-equal-3.1.3"
+ sources."fast-json-stable-stringify-2.1.0"
+ (sources."fast-url-parser-1.1.3" // {
+ dependencies = [
+ sources."punycode-1.4.1"
+ ];
+ })
+ sources."faye-websocket-0.11.3"
+ sources."fd-slicer-1.1.0"
+ sources."figgy-pudding-3.5.2"
+ sources."figures-2.0.0"
+ (sources."file-loader-3.0.1" // {
+ dependencies = [
+ sources."schema-utils-1.0.0"
+ ];
+ })
+ sources."file-type-8.1.0"
+ sources."file-uri-to-path-1.0.0"
+ sources."filename-reserved-regex-2.0.0"
+ sources."filenamify-2.1.0"
+ sources."filesize-3.6.1"
+ sources."fill-range-7.0.1"
+ (sources."finalhandler-1.1.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."find-cache-dir-2.1.0"
+ sources."find-up-3.0.0"
+ sources."flush-write-stream-1.1.1"
+ sources."follow-redirects-1.13.3"
+ sources."for-in-1.0.2"
+ sources."forwarded-0.1.2"
+ sources."fragment-cache-0.2.1"
+ sources."fresh-0.5.2"
+ sources."from2-2.3.0"
+ sources."fs-constants-1.0.0"
+ sources."fs-extra-7.0.1"
+ sources."fs-readdir-recursive-1.1.0"
+ sources."fs-write-stream-atomic-1.0.10"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-2.3.2"
+ sources."function-bind-1.1.1"
+ sources."gensync-1.0.0-beta.2"
+ sources."get-caller-file-2.0.5"
+ sources."get-intrinsic-1.1.1"
+ sources."get-proxy-2.1.0"
+ sources."get-stream-3.0.0"
+ sources."get-value-2.0.6"
+ sources."git-clone-0.1.0"
+ sources."git-promise-1.0.0"
+ sources."glob-7.1.6"
+ sources."glob-parent-5.1.2"
+ sources."globals-11.12.0"
+ (sources."globby-6.1.0" // {
+ dependencies = [
+ sources."pify-2.3.0"
+ ];
+ })
+ (sources."got-8.3.2" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."graceful-fs-4.2.6"
+ sources."gud-1.0.0"
+ sources."gunzip-maybe-1.4.2"
+ sources."gzip-size-5.1.1"
+ sources."handle-thing-2.0.1"
+ sources."has-1.0.3"
+ sources."has-bigints-1.0.1"
+ (sources."has-binary2-1.0.3" // {
+ dependencies = [
+ sources."isarray-2.0.1"
+ ];
+ })
+ sources."has-cors-1.1.0"
+ sources."has-flag-3.0.0"
+ sources."has-symbol-support-x-1.4.2"
+ sources."has-symbols-1.0.2"
+ sources."has-to-string-tag-x-1.4.1"
+ sources."has-value-1.0.0"
+ (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."hash-base-3.1.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ sources."safe-buffer-5.2.1"
+ ];
+ })
+ sources."hash.js-1.1.7"
+ sources."he-1.2.0"
+ sources."hex-color-regex-1.1.0"
+ sources."hmac-drbg-1.0.1"
+ sources."hoist-non-react-statics-3.3.2"
+ sources."hoopy-0.1.4"
+ sources."hpack.js-2.1.6"
+ sources."hsl-regex-1.0.0"
+ sources."hsla-regex-1.0.0"
+ sources."html-entities-1.4.0"
+ (sources."html-minifier-3.5.21" // {
+ dependencies = [
+ sources."commander-2.17.1"
+ ];
+ })
+ (sources."html-webpack-plugin-3.2.0" // {
+ 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."htmlparser2-3.10.1" // {
+ dependencies = [
+ sources."entities-1.1.2"
+ sources."readable-stream-3.6.0"
+ ];
+ })
+ sources."http-cache-semantics-3.8.1"
+ sources."http-deceiver-1.2.7"
+ (sources."http-errors-1.7.2" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ ];
+ })
+ sources."http-parser-js-0.5.3"
+ sources."http-proxy-1.18.1"
+ sources."http-proxy-middleware-0.19.1"
+ sources."https-browserify-1.0.0"
+ sources."iconv-lite-0.4.24"
+ sources."icss-replace-symbols-1.1.0"
+ sources."icss-utils-4.1.1"
+ sources."ieee754-1.2.1"
+ sources."iferr-0.1.5"
+ sources."import-cwd-2.1.0"
+ (sources."import-fresh-3.3.0" // {
+ dependencies = [
+ sources."resolve-from-4.0.0"
+ ];
+ })
+ (sources."import-from-2.1.0" // {
+ dependencies = [
+ sources."resolve-from-3.0.0"
+ ];
+ })
+ sources."import-local-2.0.0"
+ sources."imurmurhash-0.1.4"
+ sources."indexes-of-1.0.1"
+ sources."indexof-0.0.1"
+ sources."infer-owner-1.0.4"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."ini-1.3.8"
+ sources."inquirer-6.5.2"
+ (sources."inquirer-autocomplete-prompt-1.3.0" // {
+ dependencies = [
+ sources."ansi-escapes-4.3.2"
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.0"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."figures-3.2.0"
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ sources."internal-ip-4.3.0"
+ sources."intersection-observer-0.7.0"
+ sources."into-stream-3.1.0"
+ sources."invariant-2.2.4"
+ sources."ip-1.1.5"
+ sources."ip-regex-2.1.0"
+ sources."ipaddr.js-1.9.1"
+ sources."is-absolute-url-2.1.0"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-arguments-1.1.0"
+ sources."is-arrayish-0.2.1"
+ sources."is-bigint-1.0.1"
+ sources."is-binary-path-2.1.0"
+ sources."is-boolean-object-1.1.0"
+ sources."is-buffer-1.1.6"
+ sources."is-callable-1.2.3"
+ sources."is-color-stop-1.1.0"
+ sources."is-core-module-2.2.0"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-date-object-1.0.2"
+ sources."is-deflate-1.0.0"
+ sources."is-descriptor-1.0.2"
+ sources."is-directory-0.3.1"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-2.1.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-glob-4.0.1"
+ sources."is-gzip-1.0.0"
+ sources."is-natural-number-4.0.1"
+ sources."is-negative-zero-2.0.1"
+ sources."is-number-7.0.0"
+ sources."is-number-object-1.0.4"
+ sources."is-obj-2.0.0"
+ sources."is-object-1.0.2"
+ sources."is-path-cwd-2.2.0"
+ sources."is-path-in-cwd-2.1.0"
+ sources."is-path-inside-2.1.0"
+ sources."is-plain-obj-1.1.0"
+ sources."is-plain-object-2.0.4"
+ sources."is-regex-1.1.2"
+ sources."is-resolvable-1.1.0"
+ sources."is-retry-allowed-1.2.0"
+ sources."is-stream-1.1.0"
+ sources."is-string-1.0.5"
+ sources."is-symbol-1.0.3"
+ sources."is-windows-1.0.2"
+ sources."is-wsl-1.1.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."isurl-1.0.0"
+ sources."js-tokens-4.0.0"
+ sources."js-yaml-3.14.1"
+ sources."jsesc-2.5.2"
+ sources."json-buffer-3.0.0"
+ sources."json-parse-better-errors-1.0.2"
+ sources."json-parse-even-better-errors-2.3.1"
+ sources."json-schema-traverse-0.4.1"
+ sources."json3-3.3.3"
+ sources."json5-2.2.0"
+ sources."jsonfile-4.0.0"
+ sources."keyv-3.0.0"
+ sources."killable-1.0.1"
+ sources."kind-of-6.0.3"
+ sources."last-call-webpack-plugin-3.0.0"
+ sources."lines-and-columns-1.1.6"
+ sources."loader-runner-2.4.0"
+ (sources."loader-utils-1.4.0" // {
+ dependencies = [
+ sources."json5-1.0.1"
+ ];
+ })
+ sources."locate-path-3.0.0"
+ sources."lodash-4.17.21"
+ sources."lodash.debounce-4.0.8"
+ sources."lodash.memoize-4.1.2"
+ sources."lodash.uniq-4.5.0"
+ sources."loglevel-1.7.1"
+ sources."loose-envify-1.4.0"
+ sources."lower-case-1.1.4"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-cache-4.1.5"
+ sources."make-dir-2.1.0"
+ sources."map-cache-0.2.2"
+ sources."map-visit-1.0.0"
+ sources."match-sorter-3.1.1"
+ sources."md5.js-1.3.5"
+ sources."mdn-data-2.0.4"
+ sources."media-typer-0.3.0"
+ sources."memory-fs-0.4.1"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ (sources."micromatch-3.1.10" // {
+ dependencies = [
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."to-regex-range-2.1.1"
+ ];
+ })
+ (sources."miller-rabin-4.0.1" // {
+ dependencies = [
+ sources."bn.js-4.12.0"
+ ];
+ })
+ sources."mime-2.5.2"
+ sources."mime-db-1.47.0"
+ sources."mime-types-2.1.30"
+ sources."mimic-fn-1.2.0"
+ sources."mimic-response-1.0.1"
+ sources."minimalistic-assert-1.0.1"
+ sources."minimalistic-crypto-utils-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.5"
+ (sources."mississippi-3.0.0" // {
+ dependencies = [
+ sources."pump-3.0.0"
+ ];
+ })
+ (sources."mixin-deep-1.3.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."mkdirp-0.5.5"
+ sources."mkdirp-classic-0.5.3"
+ sources."move-concurrently-1.0.1"
+ sources."ms-2.1.2"
+ sources."multicast-dns-6.2.3"
+ sources."multicast-dns-service-types-1.1.0"
+ sources."mutation-observer-1.0.3"
+ sources."mute-stream-0.0.7"
+ sources."nan-2.14.2"
+ sources."nanomatch-1.2.13"
+ sources."negotiator-0.6.2"
+ sources."neo-async-2.6.2"
+ sources."nice-try-1.0.5"
+ sources."no-case-2.3.2"
+ sources."node-forge-0.10.0"
+ (sources."node-libs-browser-2.2.1" // {
+ dependencies = [
+ sources."browserify-zlib-0.2.0"
+ sources."buffer-4.9.2"
+ sources."pako-1.0.11"
+ sources."punycode-1.4.1"
+ ];
+ })
+ sources."node-modules-regexp-1.0.0"
+ sources."node-releases-1.1.71"
+ sources."normalize-path-3.0.0"
+ sources."normalize-range-0.1.2"
+ (sources."normalize-url-2.0.1" // {
+ dependencies = [
+ sources."sort-keys-2.0.0"
+ ];
+ })
+ (sources."npm-conf-1.1.3" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."npm-run-path-2.0.2"
+ sources."nth-check-1.0.2"
+ sources."num2fraction-1.2.2"
+ 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."kind-of-3.2.2"
+ ];
+ })
+ sources."object-inspect-1.10.2"
+ sources."object-is-1.1.5"
+ sources."object-keys-1.1.1"
+ sources."object-visit-1.0.1"
+ sources."object.assign-4.1.2"
+ sources."object.getownpropertydescriptors-2.1.2"
+ sources."object.pick-1.3.0"
+ sources."object.values-1.1.3"
+ sources."obuf-1.1.2"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.2"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."opener-1.5.2"
+ sources."opn-5.5.0"
+ sources."optimize-css-assets-webpack-plugin-5.0.4"
+ sources."original-1.0.2"
+ sources."os-browserify-0.3.0"
+ sources."os-tmpdir-1.0.2"
+ sources."p-cancelable-0.4.1"
+ sources."p-event-2.3.1"
+ sources."p-finally-1.0.0"
+ sources."p-is-promise-1.1.0"
+ sources."p-limit-2.3.0"
+ sources."p-locate-3.0.0"
+ sources."p-map-2.1.0"
+ sources."p-retry-3.0.1"
+ sources."p-timeout-2.0.1"
+ sources."p-try-2.2.0"
+ sources."pako-0.2.9"
+ sources."parallel-transform-1.2.0"
+ sources."param-case-2.1.1"
+ sources."parent-module-1.0.1"
+ sources."parse-asn1-5.1.6"
+ sources."parse-json-5.2.0"
+ sources."parseqs-0.0.6"
+ sources."parseuri-0.0.6"
+ sources."parseurl-1.3.3"
+ sources."pascalcase-0.1.1"
+ sources."path-browserify-0.0.1"
+ sources."path-dirname-1.0.2"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."path-parse-1.0.6"
+ sources."path-to-regexp-2.2.1"
+ sources."path-type-4.0.0"
+ sources."pbkdf2-3.1.2"
+ sources."peek-stream-1.1.3"
+ sources."pend-1.2.0"
+ sources."performance-now-2.1.0"
+ sources."picomatch-2.2.3"
+ sources."pify-4.0.1"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."pirates-4.0.1"
+ sources."pkg-dir-3.0.0"
+ (sources."portfinder-1.0.28" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ ];
+ })
+ sources."posix-character-classes-0.1.1"
+ (sources."postcss-7.0.35" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."postcss-calc-7.0.5"
+ (sources."postcss-colormin-4.0.3" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-convert-values-4.0.1" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ sources."postcss-discard-comments-4.0.2"
+ sources."postcss-discard-duplicates-4.0.2"
+ sources."postcss-discard-empty-4.0.1"
+ sources."postcss-discard-overridden-4.0.1"
+ sources."postcss-flexbugs-fixes-4.2.1"
+ (sources."postcss-load-config-2.1.2" // {
+ dependencies = [
+ sources."cosmiconfig-5.2.1"
+ sources."import-fresh-2.0.0"
+ sources."parse-json-4.0.0"
+ sources."resolve-from-3.0.0"
+ ];
+ })
+ (sources."postcss-loader-3.0.0" // {
+ dependencies = [
+ sources."schema-utils-1.0.0"
+ ];
+ })
+ (sources."postcss-merge-longhand-4.0.11" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-merge-rules-4.0.3" // {
+ dependencies = [
+ sources."postcss-selector-parser-3.1.2"
+ ];
+ })
+ (sources."postcss-minify-font-values-4.0.2" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-minify-gradients-4.0.2" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-minify-params-4.0.2" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-minify-selectors-4.0.2" // {
+ dependencies = [
+ sources."postcss-selector-parser-3.1.2"
+ ];
+ })
+ sources."postcss-modules-extract-imports-2.0.0"
+ (sources."postcss-modules-local-by-default-2.0.6" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ sources."postcss-modules-scope-2.2.0"
+ sources."postcss-modules-values-2.0.0"
+ sources."postcss-normalize-charset-4.0.1"
+ (sources."postcss-normalize-display-values-4.0.2" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-normalize-positions-4.0.2" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-normalize-repeat-style-4.0.2" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-normalize-string-4.0.2" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-normalize-timing-functions-4.0.2" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-normalize-unicode-4.0.1" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-normalize-url-4.0.1" // {
+ dependencies = [
+ sources."normalize-url-3.3.0"
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-normalize-whitespace-4.0.2" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ (sources."postcss-ordered-values-4.1.2" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ sources."postcss-reduce-initial-4.0.3"
+ (sources."postcss-reduce-transforms-4.0.2" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ sources."postcss-selector-parser-6.0.4"
+ (sources."postcss-svgo-4.0.3" // {
+ dependencies = [
+ sources."postcss-value-parser-3.3.1"
+ ];
+ })
+ sources."postcss-unique-selectors-4.0.1"
+ sources."postcss-value-parser-4.1.0"
+ sources."prepend-http-2.0.0"
+ sources."pretty-error-2.1.2"
+ sources."process-0.11.10"
+ sources."process-nextick-args-2.0.1"
+ sources."progress-2.0.3"
+ sources."promise-inflight-1.0.1"
+ sources."prop-types-15.7.2"
+ sources."proto-list-1.2.4"
+ sources."proxy-addr-2.0.6"
+ sources."prr-1.0.1"
+ sources."pseudomap-1.0.2"
+ (sources."public-encrypt-4.0.3" // {
+ dependencies = [
+ sources."bn.js-4.12.0"
+ ];
+ })
+ sources."pump-2.0.1"
+ sources."pumpify-1.5.1"
+ sources."punycode-2.1.1"
+ sources."q-1.5.1"
+ sources."qs-6.7.0"
+ sources."query-string-5.1.1"
+ sources."querystring-0.2.0"
+ sources."querystring-es3-0.2.1"
+ sources."querystringify-2.2.0"
+ sources."raf-3.4.1"
+ sources."randombytes-2.1.0"
+ sources."randomfill-1.0.4"
+ sources."range-parser-1.2.0"
+ (sources."raw-body-2.4.0" // {
+ dependencies = [
+ sources."bytes-3.1.0"
+ ];
+ })
+ sources."raw-loader-3.1.0"
+ sources."rc-1.2.8"
+ sources."react-fast-compare-3.2.0"
+ sources."react-helmet-6.1.0"
+ sources."react-is-16.13.1"
+ sources."react-lifecycles-compat-3.0.4"
+ sources."react-side-effect-2.1.1"
+ sources."react-universal-component-4.5.0"
+ sources."readable-stream-2.3.7"
+ sources."readdirp-3.5.0"
+ sources."regenerate-1.4.2"
+ sources."regenerate-unicode-properties-8.2.0"
+ sources."regenerator-runtime-0.13.8"
+ sources."regenerator-transform-0.14.5"
+ sources."regex-not-1.0.2"
+ sources."regexp.prototype.flags-1.3.1"
+ sources."regexpu-core-4.7.1"
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ sources."regjsgen-0.5.2"
+ (sources."regjsparser-0.6.9" // {
+ dependencies = [
+ sources."jsesc-0.5.0"
+ ];
+ })
+ sources."relateurl-0.2.7"
+ sources."remove-trailing-separator-1.1.0"
+ (sources."renderkid-2.0.5" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ sources."repeat-element-1.1.4"
+ sources."repeat-string-1.6.1"
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-2.0.0"
+ sources."requires-port-1.0.0"
+ sources."resolve-1.20.0"
+ (sources."resolve-cwd-2.0.0" // {
+ dependencies = [
+ sources."resolve-from-3.0.0"
+ ];
+ })
+ sources."resolve-from-5.0.0"
+ sources."resolve-url-0.2.1"
+ sources."responselike-1.0.2"
+ sources."restore-cursor-2.0.0"
+ sources."ret-0.1.15"
+ sources."retry-0.12.0"
+ sources."rgb-regex-1.0.1"
+ sources."rgba-regex-1.0.0"
+ sources."rimraf-2.7.1"
+ sources."ripemd160-2.0.2"
+ sources."run-async-2.4.1"
+ sources."run-queue-1.0.3"
+ sources."rxjs-6.6.7"
+ sources."safe-buffer-5.1.2"
+ sources."safe-regex-1.1.0"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."schema-utils-2.7.1"
+ (sources."seek-bzip-1.0.6" // {
+ dependencies = [
+ sources."commander-2.20.3"
+ ];
+ })
+ sources."select-hose-2.0.0"
+ sources."selfsigned-1.10.8"
+ sources."semver-5.7.1"
+ (sources."send-0.17.1" // {
+ dependencies = [
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."mime-1.6.0"
+ sources."ms-2.1.1"
+ sources."range-parser-1.2.1"
+ ];
+ })
+ sources."serialize-javascript-4.0.0"
+ (sources."serve-11.3.2" // {
+ dependencies = [
+ sources."ajv-6.5.3"
+ sources."chalk-2.4.1"
+ sources."fast-deep-equal-2.0.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ (sources."serve-handler-6.1.3" // {
+ dependencies = [
+ sources."content-disposition-0.5.2"
+ sources."mime-db-1.33.0"
+ sources."mime-types-2.1.18"
+ ];
+ })
+ (sources."serve-index-1.9.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."http-errors-1.6.3"
+ sources."inherits-2.0.3"
+ sources."ms-2.0.0"
+ sources."setprototypeof-1.1.0"
+ ];
+ })
+ sources."serve-static-1.14.1"
+ sources."set-blocking-2.0.0"
+ (sources."set-value-2.0.1" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."setimmediate-1.0.5"
+ sources."setprototypeof-1.1.1"
+ sources."sha.js-2.4.11"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."shorthash-0.0.2"
+ sources."signal-exit-3.0.3"
+ (sources."simple-swizzle-0.2.2" // {
+ dependencies = [
+ sources."is-arrayish-0.3.2"
+ ];
+ })
+ sources."slash-2.0.0"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ 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."ms-2.0.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."socket.io-2.4.1" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ ];
+ })
+ sources."socket.io-adapter-1.1.2"
+ (sources."socket.io-client-2.4.0" // {
+ dependencies = [
+ sources."component-emitter-1.3.0"
+ sources."debug-3.1.0"
+ sources."isarray-2.0.1"
+ sources."ms-2.0.0"
+ sources."socket.io-parser-3.3.2"
+ ];
+ })
+ (sources."socket.io-parser-3.4.1" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ sources."isarray-2.0.1"
+ ];
+ })
+ sources."sockjs-0.3.21"
+ (sources."sockjs-client-1.5.1" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ ];
+ })
+ sources."sort-keys-1.1.2"
+ sources."sort-keys-length-1.0.1"
+ sources."source-list-map-2.0.1"
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.3"
+ (sources."source-map-support-0.5.19" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."source-map-url-0.4.1"
+ sources."spdy-4.0.2"
+ (sources."spdy-transport-3.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
+ sources."split-string-3.1.0"
+ sources."sprintf-js-1.0.3"
+ sources."ssri-6.0.2"
+ sources."stable-0.1.8"
+ (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."statuses-1.5.0"
+ sources."stream-browserify-2.0.2"
+ sources."stream-each-1.2.3"
+ sources."stream-http-2.8.3"
+ sources."stream-shift-1.0.1"
+ sources."strict-uri-encode-1.1.0"
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."string.prototype.trimend-1.0.4"
+ sources."string.prototype.trimstart-1.0.4"
+ sources."string_decoder-1.1.1"
+ (sources."strip-ansi-5.2.0" // {
+ dependencies = [
+ sources."ansi-regex-4.1.0"
+ ];
+ })
+ sources."strip-dirs-2.1.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ sources."strip-outer-1.0.1"
+ (sources."style-loader-0.23.1" // {
+ dependencies = [
+ sources."schema-utils-1.0.0"
+ ];
+ })
+ (sources."stylehacks-4.0.3" // {
+ dependencies = [
+ sources."postcss-selector-parser-3.1.2"
+ ];
+ })
+ sources."supports-color-6.1.0"
+ sources."svgo-1.3.2"
+ sources."swimmer-1.4.0"
+ sources."tapable-1.1.3"
+ (sources."tar-fs-2.1.1" // {
+ dependencies = [
+ sources."bl-4.1.0"
+ sources."pump-3.0.0"
+ sources."readable-stream-3.6.0"
+ sources."tar-stream-2.2.0"
+ ];
+ })
+ sources."tar-stream-1.6.2"
+ sources."term-size-1.2.0"
+ (sources."terser-4.8.0" // {
+ dependencies = [
+ sources."commander-2.20.3"
+ sources."source-map-0.6.1"
+ ];
+ })
+ (sources."terser-webpack-plugin-1.4.5" // {
+ dependencies = [
+ sources."schema-utils-1.0.0"
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."through-2.3.8"
+ sources."through2-2.0.5"
+ sources."thunky-1.1.0"
+ sources."timed-out-4.0.1"
+ sources."timers-browserify-2.0.12"
+ sources."timsort-0.3.0"
+ sources."tmp-0.0.33"
+ sources."to-array-0.1.4"
+ sources."to-arraybuffer-1.0.1"
+ sources."to-buffer-1.1.1"
+ sources."to-fast-properties-2.0.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-5.0.1"
+ sources."toidentifier-1.0.0"
+ sources."toposort-1.0.7"
+ sources."trim-repeated-1.0.0"
+ sources."tryer-1.0.1"
+ sources."tslib-1.14.1"
+ sources."tty-browserify-0.0.0"
+ sources."tunnel-agent-0.6.0"
+ sources."type-fest-0.21.3"
+ sources."type-is-1.6.18"
+ sources."typedarray-0.0.6"
+ (sources."uglify-js-3.4.10" // {
+ dependencies = [
+ sources."commander-2.19.0"
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."unbox-primitive-1.0.1"
+ sources."unbzip2-stream-1.4.3"
+ sources."unicode-canonical-property-names-ecmascript-1.0.4"
+ sources."unicode-match-property-ecmascript-1.0.4"
+ sources."unicode-match-property-value-ecmascript-1.2.0"
+ sources."unicode-property-aliases-ecmascript-1.1.0"
+ sources."union-value-1.0.1"
+ sources."uniq-1.0.1"
+ sources."uniqs-2.0.0"
+ sources."unique-filename-1.1.1"
+ sources."unique-slug-2.0.2"
+ sources."universalify-0.1.2"
+ sources."unpipe-1.0.0"
+ sources."unquote-1.1.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."upath-1.2.0"
+ sources."update-check-1.5.2"
+ sources."upper-case-1.1.3"
+ sources."uri-js-4.4.1"
+ sources."urix-0.1.0"
+ (sources."url-0.11.0" // {
+ dependencies = [
+ sources."punycode-1.3.2"
+ ];
+ })
+ sources."url-loader-2.3.0"
+ sources."url-parse-1.5.1"
+ sources."url-parse-lax-3.0.0"
+ sources."url-to-options-1.0.1"
+ sources."use-3.1.1"
+ (sources."util-0.11.1" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ ];
+ })
+ sources."util-deprecate-1.0.2"
+ sources."util.promisify-1.0.0"
+ sources."utila-0.4.0"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.4.0"
+ sources."vary-1.1.2"
+ sources."vendors-1.0.4"
+ sources."vm-browserify-1.1.2"
+ sources."warning-4.0.3"
+ sources."watchpack-1.7.5"
+ (sources."watchpack-chokidar2-2.0.1" // {
+ dependencies = [
+ sources."anymatch-2.0.0"
+ sources."binary-extensions-1.13.1"
+ sources."braces-2.3.2"
+ sources."chokidar-2.1.8"
+ sources."extend-shallow-2.0.1"
+ sources."fill-range-4.0.0"
+ sources."fsevents-1.2.13"
+ sources."glob-parent-3.1.0"
+ sources."is-binary-path-1.0.1"
+ sources."is-glob-3.1.0"
+ sources."is-number-3.0.0"
+ sources."kind-of-3.2.2"
+ sources."normalize-path-2.1.1"
+ sources."readdirp-2.2.1"
+ sources."to-regex-range-2.1.1"
+ ];
+ })
+ sources."wbuf-1.7.3"
+ (sources."webpack-4.46.0" // {
+ dependencies = [
+ sources."schema-utils-1.0.0"
+ ];
+ })
+ (sources."webpack-bundle-analyzer-3.9.0" // {
+ dependencies = [
+ sources."acorn-7.4.1"
+ sources."commander-2.20.3"
+ sources."ws-6.2.1"
+ ];
+ })
+ (sources."webpack-dev-middleware-3.7.3" // {
+ dependencies = [
+ sources."range-parser-1.2.1"
+ ];
+ })
+ (sources."webpack-dev-server-3.11.2" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."anymatch-2.0.0"
+ sources."binary-extensions-1.13.1"
+ sources."braces-2.3.2"
+ sources."chokidar-2.1.8"
+ (sources."compression-1.7.4" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."extend-shallow-2.0.1"
+ sources."fill-range-4.0.0"
+ sources."fsevents-1.2.13"
+ sources."glob-parent-3.1.0"
+ sources."is-absolute-url-3.0.3"
+ sources."is-binary-path-1.0.1"
+ sources."is-glob-3.1.0"
+ sources."is-number-3.0.0"
+ sources."kind-of-3.2.2"
+ sources."ms-2.0.0"
+ sources."normalize-path-2.1.1"
+ sources."readdirp-2.2.1"
+ sources."schema-utils-1.0.0"
+ sources."semver-6.3.0"
+ sources."strip-ansi-3.0.1"
+ sources."to-regex-range-2.1.1"
+ sources."ws-6.2.1"
+ ];
+ })
+ sources."webpack-flush-chunks-2.0.3"
+ sources."webpack-log-2.0.0"
+ sources."webpack-node-externals-1.7.2"
+ (sources."webpack-sources-1.4.3" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."websocket-driver-0.7.4"
+ sources."websocket-extensions-0.1.4"
+ sources."which-1.3.1"
+ sources."which-boxed-primitive-1.0.2"
+ sources."which-module-2.0.0"
+ sources."widest-line-2.0.1"
+ sources."worker-farm-1.7.0"
+ (sources."wrap-ansi-5.1.0" // {
+ dependencies = [
+ sources."string-width-3.1.0"
+ ];
+ })
+ sources."wrappy-1.0.2"
+ sources."ws-7.4.5"
+ sources."xmlhttprequest-ssl-1.5.5"
+ sources."xtend-4.0.2"
+ sources."y18n-4.0.3"
+ sources."yallist-2.1.2"
+ sources."yaml-1.10.2"
+ (sources."yargs-13.3.2" // {
+ dependencies = [
+ sources."string-width-3.1.0"
+ ];
+ })
+ sources."yargs-parser-13.1.2"
+ sources."yauzl-2.10.0"
+ sources."yeast-0.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A progressive static site generator for React";
+ homepage = "https://github.com/react-static/react-static#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
react-tools = nodeEnv.buildNodePackage {
name = "react-tools";
packageName = "react-tools";
@@ -100954,7 +103205,7 @@ in
sources."whatwg-url-8.5.0"
sources."word-wrap-1.2.3"
sources."wrap-ansi-7.0.0"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
@@ -101632,7 +103883,7 @@ in
];
})
sources."cheerio-1.0.0-rc.6"
- sources."cheerio-select-1.3.0"
+ sources."cheerio-select-1.4.0"
sources."chokidar-3.5.1"
sources."cliui-7.0.4"
sources."color-convert-1.9.3"
@@ -101644,7 +103895,7 @@ in
sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
sources."cross-spawn-7.0.3"
- sources."css-select-4.0.0"
+ sources."css-select-4.1.2"
sources."css-what-5.0.0"
sources."debug-4.3.2"
sources."decamelize-4.0.0"
@@ -101657,8 +103908,8 @@ in
sources."doctrine-3.0.0"
sources."dom-serializer-1.3.1"
sources."domelementtype-2.2.0"
- sources."domhandler-4.1.0"
- sources."domutils-2.5.2"
+ sources."domhandler-4.2.0"
+ sources."domutils-2.6.0"
sources."duplexer2-0.1.4"
(sources."editorconfig-0.15.3" // {
dependencies = [
@@ -102098,10 +104349,10 @@ in
sass = nodeEnv.buildNodePackage {
name = "sass";
packageName = "sass";
- version = "1.32.8";
+ version = "1.32.10";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.32.8.tgz";
- sha512 = "Sl6mIeGpzjIUZqvKnKETfMf0iDAswD9TNlv13A7aAF3XZlRPMq4VvJWBC2N2DXbp94MQVdNSFG6LfF/iOXrPHQ==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.32.10.tgz";
+ sha512 = "Nx0pcWoonAkn7CRp0aE/hket1UP97GiR1IFw3kcjV3pnenhWgZEWUf0ZcfPOV2fK52fnOcK3JdC/YYZ9E47DTQ==";
};
dependencies = [
sources."anymatch-3.1.2"
@@ -102637,7 +104888,7 @@ in
sources."file-uri-to-path-1.0.0"
sources."filename-reserved-regex-2.0.0"
sources."filenamify-3.0.0"
- sources."filesize-6.2.2"
+ sources."filesize-6.2.5"
sources."fill-range-7.0.1"
sources."find-requires-1.0.0"
sources."flat-5.0.2"
@@ -103121,7 +105372,7 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-2.4.3"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
sources."xmlhttprequest-ssl-1.5.5"
@@ -103771,10 +106022,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.543.0";
+ version = "1.551.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.543.0.tgz";
- sha512 = "6PiGHbALrZGLrsgPgocxOUjFa8o2lWfoZiYLpFyFXOQmYP5mzV1Y9S6IoANxVXNmPpRTdwJamlWG1v6g0YSYhA==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.551.0.tgz";
+ sha512 = "Z2fh6n/EGO/2ILLOeFvJpWAHSZjOtKDACtfK+Xm/ob+SoAOjEPGdGlFt0RmCUV/VGxfP1aRZ8zkxnj573OmPPA==";
};
dependencies = [
sources."@arcanis/slice-ansi-1.0.2"
@@ -103801,7 +106052,7 @@ in
})
sources."@snyk/docker-registry-v2-client-1.13.9"
sources."@snyk/fast-glob-3.2.6-patch"
- (sources."@snyk/fix-1.539.0" // {
+ (sources."@snyk/fix-1.547.0" // {
dependencies = [
sources."chalk-4.1.0"
sources."strip-ansi-6.0.0"
@@ -103823,7 +106074,7 @@ in
sources."tmp-0.2.1"
];
})
- (sources."@snyk/mix-parser-1.3.0" // {
+ (sources."@snyk/mix-parser-1.3.1" // {
dependencies = [
sources."tslib-2.2.0"
];
@@ -103839,7 +106090,7 @@ in
sources."tmp-0.1.0"
];
})
- (sources."@snyk/snyk-hex-plugin-1.1.1" // {
+ (sources."@snyk/snyk-hex-plugin-1.1.2" // {
dependencies = [
sources."tslib-2.2.0"
];
@@ -104526,7 +106777,7 @@ in
sources."socket.io-adapter-2.2.0"
sources."socket.io-parser-4.0.4"
sources."vary-1.1.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
];
buildInputs = globalBuildInputs;
meta = {
@@ -104885,7 +107136,7 @@ in
sources."errno-0.1.8"
(sources."es-abstract-1.18.0" // {
dependencies = [
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
];
})
(sources."es-get-iterator-1.1.2" // {
@@ -105441,7 +107692,7 @@ in
sources."safe-regex-1.1.0"
sources."sanitize-filename-1.6.3"
sources."secret-handshake-1.1.20"
- sources."secret-stack-6.3.2"
+ sources."secret-stack-6.4.0"
sources."semver-5.7.1"
sources."separator-escape-0.0.1"
(sources."set-value-2.0.1" // {
@@ -105455,7 +107706,7 @@ in
sources."shellsubstitute-1.2.0"
(sources."side-channel-1.0.4" // {
dependencies = [
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
];
})
sources."signal-exit-3.0.3"
@@ -105487,7 +107738,7 @@ in
];
})
sources."snapdragon-util-3.0.1"
- sources."socks-2.6.0"
+ sources."socks-2.6.1"
sources."sodium-browserify-1.3.0"
(sources."sodium-browserify-tweetnacl-0.2.6" // {
dependencies = [
@@ -105917,14 +108168,14 @@ in
dependencies = [
sources."cookie-0.4.1"
sources."debug-4.1.1"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
];
})
(sources."engine.io-client-3.5.1" // {
dependencies = [
sources."debug-3.1.0"
sources."ms-2.0.0"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
];
})
sources."engine.io-parser-2.2.1"
@@ -106163,7 +108414,7 @@ in
sources."oauth-sign-0.8.2"
sources."object-assign-4.1.1"
sources."object-hash-0.3.0"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -106606,7 +108857,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
(sources."chalk-4.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -106985,8 +109236,8 @@ in
sources."csso-4.2.0"
sources."dom-serializer-1.3.1"
sources."domelementtype-2.2.0"
- sources."domhandler-4.1.0"
- sources."domutils-2.5.2"
+ sources."domhandler-4.2.0"
+ sources."domutils-2.6.0"
sources."entities-2.2.0"
sources."has-flag-4.0.0"
sources."mdn-data-2.0.14"
@@ -107388,7 +109639,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-visit-1.0.1"
sources."object.pick-1.3.0"
sources."on-finished-2.3.0"
@@ -107764,6 +110015,96 @@ in
bypassCache = true;
reconstructLock = true;
};
+ teck-programmer = nodeEnv.buildNodePackage {
+ name = "teck-programmer";
+ packageName = "teck-programmer";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/teck-programmer/-/teck-programmer-1.1.1.tgz";
+ sha1 = "bd2b3b1e3b88ad3c7471bdc8a5244255564b69e1";
+ };
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.5"
+ sources."base64-js-1.5.1"
+ sources."bindings-1.5.0"
+ (sources."bl-4.1.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
+ sources."buffer-5.7.1"
+ sources."chownr-1.1.4"
+ sources."code-point-at-1.1.0"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."decompress-response-4.2.1"
+ sources."deep-extend-0.6.0"
+ sources."delegates-1.0.0"
+ sources."detect-libc-1.0.3"
+ sources."end-of-stream-1.4.4"
+ sources."expand-template-2.0.3"
+ sources."file-uri-to-path-1.0.0"
+ sources."fs-constants-1.0.0"
+ sources."gauge-2.7.4"
+ sources."github-from-package-0.0.0"
+ sources."has-unicode-2.0.1"
+ sources."ieee754-1.2.1"
+ sources."inherits-2.0.4"
+ sources."ini-1.3.8"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."isarray-1.0.0"
+ sources."mimic-response-2.1.0"
+ sources."minimist-1.2.5"
+ sources."mkdirp-classic-0.5.3"
+ sources."napi-build-utils-1.0.2"
+ sources."node-abi-2.21.0"
+ sources."node-addon-api-3.0.2"
+ sources."noop-logger-0.1.1"
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."prebuild-install-5.3.6"
+ sources."process-nextick-args-2.0.1"
+ sources."pump-3.0.0"
+ sources."q-1.5.1"
+ sources."rc-1.2.8"
+ sources."readable-stream-2.3.7"
+ sources."safe-buffer-5.1.2"
+ sources."semver-5.7.1"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.3"
+ sources."simple-concat-1.0.1"
+ sources."simple-get-3.1.0"
+ 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-fs-2.1.1"
+ (sources."tar-stream-2.2.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
+ sources."tunnel-agent-0.6.0"
+ sources."usb-1.7.0"
+ sources."util-deprecate-1.0.2"
+ sources."which-pm-runs-1.0.0"
+ sources."wide-align-1.1.3"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Programmer for TECK keyboards.";
+ homepage = "https://github.com/m-ou-se/teck-programmer";
+ license = "GPL-3.0+";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
tern = nodeEnv.buildNodePackage {
name = "tern";
packageName = "tern";
@@ -108714,7 +111055,7 @@ in
sources."is-regex-1.1.2"
sources."is-string-1.0.5"
sources."is-symbol-1.0.3"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."string.prototype.trimend-1.0.4"
@@ -108821,7 +111162,7 @@ in
sources."is-regex-1.1.2"
sources."is-string-1.0.5"
sources."is-symbol-1.0.3"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."string.prototype.trimend-1.0.4"
@@ -109313,7 +111654,7 @@ in
sources."wide-align-1.1.3"
sources."with-open-file-0.1.7"
sources."wrappy-1.0.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xmlhttprequest-ssl-1.5.5"
sources."yallist-3.1.1"
sources."yarn-1.22.4"
@@ -110025,7 +112366,7 @@ in
sources."on-headers-1.0.2"
sources."once-1.4.0"
sources."one-time-1.0.0"
- sources."open-8.0.5"
+ sources."open-8.0.6"
sources."p-cancelable-1.1.0"
(sources."package-json-6.5.0" // {
dependencies = [
@@ -110123,7 +112464,7 @@ in
})
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."y18n-5.0.8"
sources."yallist-2.1.2"
sources."yargs-16.2.0"
@@ -110326,10 +112667,10 @@ in
vega-lite = nodeEnv.buildNodePackage {
name = "vega-lite";
packageName = "vega-lite";
- version = "5.0.0";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.0.0.tgz";
- sha512 = "CrMAy3D2E662qtShrOeGttwwthRxUOZUfdu39THyxkOfLNJBCLkNjfQpFekEidxwbtFTO1zMZzyFIP3AE2I8kQ==";
+ url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.1.0.tgz";
+ sha512 = "HEyf0iHnCNmWkWFIbEmMphcJwZpcBnfnU8v+Ojrndr7ihDueojHMOSikoyz/GNpdkai+QFxLboA6DDCTtFv9iQ==";
};
dependencies = [
sources."@types/clone-2.1.0"
@@ -110351,7 +112692,7 @@ in
sources."require-directory-2.1.1"
sources."string-width-4.2.2"
sources."strip-ansi-6.0.0"
- sources."tslib-2.1.0"
+ sources."tslib-2.2.0"
sources."vega-event-selector-2.0.6"
sources."vega-expression-4.0.1"
sources."vega-util-1.16.1"
@@ -110657,7 +112998,7 @@ in
];
})
sources."cheerio-1.0.0-rc.6"
- sources."cheerio-select-1.3.0"
+ sources."cheerio-select-1.4.0"
sources."chokidar-3.3.0"
sources."chownr-1.1.4"
sources."chrome-trace-event-1.0.3"
@@ -110715,7 +113056,7 @@ in
sources."create-hmac-1.1.7"
sources."cross-spawn-6.0.5"
sources."crypto-browserify-3.12.0"
- sources."css-select-4.0.0"
+ sources."css-select-4.1.2"
sources."css-what-5.0.0"
sources."cyclist-1.0.1"
sources."debug-3.2.6"
@@ -110735,8 +113076,8 @@ in
sources."dom-serializer-1.3.1"
sources."domain-browser-1.2.0"
sources."domelementtype-2.2.0"
- sources."domhandler-4.1.0"
- sources."domutils-2.5.2"
+ sources."domhandler-4.2.0"
+ sources."domutils-2.6.0"
(sources."duplexify-3.7.1" // {
dependencies = [
sources."isarray-1.0.0"
@@ -111026,7 +113367,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
sources."object.assign-4.1.0"
@@ -112048,7 +114389,7 @@ in
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
- (sources."js-beautify-1.13.11" // {
+ (sources."js-beautify-1.13.13" // {
dependencies = [
sources."mkdirp-1.0.4"
];
@@ -112748,8 +115089,8 @@ in
sources."doctrine-3.0.0"
sources."dom-serializer-1.2.0"
sources."domelementtype-2.2.0"
- sources."domhandler-4.1.0"
- sources."domutils-2.5.2"
+ sources."domhandler-4.2.0"
+ sources."domutils-2.6.0"
sources."dot-prop-5.3.0"
sources."dtrace-provider-0.8.8"
sources."duplexer3-0.1.4"
@@ -113251,7 +115592,7 @@ in
sources."ajv-keywords-3.5.2"
sources."browserslist-4.16.4"
sources."buffer-from-1.1.1"
- sources."caniuse-lite-1.0.30001208"
+ sources."caniuse-lite-1.0.30001209"
sources."chrome-trace-event-1.0.3"
sources."colorette-1.2.2"
sources."commander-2.20.3"
@@ -114332,7 +116673,7 @@ in
})
sources."winreg-1.2.4"
sources."wrappy-1.0.2"
- sources."ws-7.4.4"
+ sources."ws-7.4.5"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
sources."xmldom-0.1.31"
@@ -114448,7 +116789,7 @@ in
sources."no-cliches-0.3.2"
sources."normalize-package-data-2.5.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.9.0"
+ sources."object-inspect-1.10.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."object.entries-1.1.3"
diff --git a/pkgs/development/ocaml-modules/dap/default.nix b/pkgs/development/ocaml-modules/dap/default.nix
new file mode 100644
index 00000000000..6d14945ee15
--- /dev/null
+++ b/pkgs/development/ocaml-modules/dap/default.nix
@@ -0,0 +1,35 @@
+{ lib, buildDunePackage, fetchurl
+, angstrom-lwt-unix, lwt, logs, lwt_ppx, ppx_deriving_yojson, ppx_expect, ppx_here, react
+}:
+
+buildDunePackage rec {
+ pname = "dap";
+ version = "1.0.6";
+ useDune2 = true;
+ src = fetchurl {
+ url = "https://github.com/hackwaly/ocaml-dap/releases/download/${version}/dap-${version}.tbz";
+ sha256 = "1zq0f8429m38a4x3h9n3rv7n1vsfjbs72pfi5902a89qwyilkcp0";
+ };
+
+ minimumOCamlVersion = "4.08";
+
+ buildInputs = [
+ lwt_ppx
+ ];
+
+ propagatedBuildInputs = [
+ angstrom-lwt-unix
+ logs
+ lwt
+ ppx_deriving_yojson
+ ppx_expect
+ ppx_here
+ react
+ ];
+
+ meta = {
+ description = "Debug adapter protocol";
+ homepage = "https://github.com/hackwaly/ocaml-dap";
+ license = lib.licenses.mit;
+ };
+}
diff --git a/pkgs/development/ocaml-modules/earlybird/default.nix b/pkgs/development/ocaml-modules/earlybird/default.nix
index b36874d49da..07e9b5a3546 100644
--- a/pkgs/development/ocaml-modules/earlybird/default.nix
+++ b/pkgs/development/ocaml-modules/earlybird/default.nix
@@ -1,25 +1,25 @@
-{ lib, fetchurl, ocaml, buildDunePackage, angstrom, angstrom-lwt-unix,
- batteries, cmdliner, lwt_ppx, ocaml_lwt, ppx_deriving_yojson,
- ppx_tools_versioned, yojson }:
+{ lib, fetchurl, ocaml, buildDunePackage
+, cmdliner, dap, fmt, iter, logs, lru, lwt_ppx, lwt_react, menhir, path_glob, ppx_deriving_yojson
+}:
-if lib.versionAtLeast ocaml.version "4.08"
+if lib.versionAtLeast ocaml.version "4.13"
then throw "earlybird is not available for OCaml ${ocaml.version}"
else
buildDunePackage rec {
pname = "earlybird";
- version = "0.1.5";
+ version = "1.1.0";
useDune2 = true;
- minimumOCamlVersion = "4.04";
+ minimumOCamlVersion = "4.11";
src = fetchurl {
url = "https://github.com/hackwaly/ocamlearlybird/releases/download/${version}/${pname}-${version}.tbz";
- sha256 = "10yflmsicw4sdmm075zjpbmxpwm9fvibnl3sl18zjpwnm6l9sv7d";
+ sha256 = "1pwzhcr3pw24ra4j4d23vz71h0psz4xkyp7b12l2wl1slxzjbrxa";
};
- buildInputs = [ angstrom angstrom-lwt-unix batteries cmdliner lwt_ppx ocaml_lwt ppx_deriving_yojson ppx_tools_versioned yojson ];
+ buildInputs = [ cmdliner dap fmt iter logs lru lwt_ppx lwt_react menhir path_glob ppx_deriving_yojson ];
meta = {
homepage = "https://github.com/hackwaly/ocamlearlybird";
diff --git a/pkgs/development/ocaml-modules/elpi/default.nix b/pkgs/development/ocaml-modules/elpi/default.nix
index 5c93c111040..38ba8f478bd 100644
--- a/pkgs/development/ocaml-modules/elpi/default.nix
+++ b/pkgs/development/ocaml-modules/elpi/default.nix
@@ -1,10 +1,11 @@
{ stdenv, lib, fetchzip, buildDunePackage, camlp5
, ppxlib, ppx_deriving, re, perl, ncurses
-, version ? "1.13.0"
+, version ? "1.13.1"
}:
with lib;
let fetched = import ../../../build-support/coq/meta-fetch/default.nix
{inherit lib stdenv fetchzip; } ({
+ release."1.13.1".sha256 = "12a9nbdvg9gybpw63lx3nw5wnxfznpraprb0wj3l68v1w43xq044";
release."1.13.0".sha256 = "0dmzy058m1mkndv90byjaik6lzzfk3aaac7v84mpmkv6my23bygr";
release."1.12.0".sha256 = "1agisdnaq9wrw3r73xz14yrq3wx742i6j8i5icjagqk0ypmly2is";
release."1.11.4".sha256 = "1m0jk9swcs3jcrw5yyw5343v8mgax238cjb03s8gc4wipw1fn9f5";
diff --git a/pkgs/development/ocaml-modules/extlib/1.7.7.nix b/pkgs/development/ocaml-modules/extlib/1.7.7.nix
new file mode 100644
index 00000000000..3314ebcb9b5
--- /dev/null
+++ b/pkgs/development/ocaml-modules/extlib/1.7.7.nix
@@ -0,0 +1,11 @@
+# Older version of extlib for Haxe 4.0 and 4.1.
+# May be replaceable by the next extlib + extlib-base64 release.
+{ fetchurl, ocaml_extlib }:
+
+ocaml_extlib.overrideAttrs (_: rec {
+ version = "1.7.7";
+ src = fetchurl {
+ url = "https://github.com/ygrek/ocaml-extlib/releases/download/${version}/extlib-${version}.tar.gz";
+ sha256 = "1sxmzc1mx3kg62j8kbk0dxkx8mkf1rn70h542cjzrziflznap0s1";
+ };
+})
diff --git a/pkgs/development/ocaml-modules/ezxmlm/default.nix b/pkgs/development/ocaml-modules/ezxmlm/default.nix
index 6d5fe28a8c0..b146b2349cd 100644
--- a/pkgs/development/ocaml-modules/ezxmlm/default.nix
+++ b/pkgs/development/ocaml-modules/ezxmlm/default.nix
@@ -1,14 +1,14 @@
-{ lib, fetchFromGitHub, buildDunePackage, xmlm }:
+{ lib, fetchurl, buildDunePackage, xmlm }:
buildDunePackage rec {
pname = "ezxmlm";
- version = "1.0.2";
+ version = "1.1.0";
- src = fetchFromGitHub {
- owner = "avsm";
- repo = pname;
- rev = "v${version}";
- sha256 = "1dgr61f0hymywikn67inq908x5adrzl3fjx3v14l9k46x7kkacl9";
+ useDune2 = true;
+
+ src = fetchurl {
+ url = "https://github.com/mirage/ezxmlm/releases/download/v${version}/ezxmlm-v${version}.tbz";
+ sha256 = "123dn4h993mlng9gzf4nc6mw75ja7ndcxkbkwfs48j5jk1z05j6d";
};
propagatedBuildInputs = [ xmlm ];
@@ -27,7 +27,7 @@ buildDunePackage rec {
just fine with it if you decide to switch over.
'';
maintainers = [ maintainers.carlosdagos ];
- inherit (src.meta) homepage;
+ homepage = "https://github.com/mirage/ezxmlm/";
license = licenses.isc;
};
}
diff --git a/pkgs/development/ocaml-modules/irmin/ppx.nix b/pkgs/development/ocaml-modules/irmin/ppx.nix
index abb21fd7c53..7c59e1eaef3 100644
--- a/pkgs/development/ocaml-modules/irmin/ppx.nix
+++ b/pkgs/development/ocaml-modules/irmin/ppx.nix
@@ -2,11 +2,11 @@
buildDunePackage rec {
pname = "ppx_irmin";
- version = "2.5.2";
+ version = "2.5.3";
src = fetchurl {
url = "https://github.com/mirage/irmin/releases/download/${version}/irmin-${version}.tbz";
- sha256 = "ac8d75144cafdaf4b5e106b540a27338245510b7e33a8c412d393c9d50cae490";
+ sha256 = "2c8ef24cc57379c3a138f121fea350ee7b6077abc22a4fdc6a47d0c81585f3f6";
};
minimumOCamlVersion = "4.08";
diff --git a/pkgs/development/ocaml-modules/labltk/default.nix b/pkgs/development/ocaml-modules/labltk/default.nix
index 3ee09b2d51c..5a6daa54de3 100644
--- a/pkgs/development/ocaml-modules/labltk/default.nix
+++ b/pkgs/development/ocaml-modules/labltk/default.nix
@@ -1,46 +1,24 @@
-{ stdenv, lib, fetchurl, fetchzip, ocaml, findlib, tcl, tk }:
+{ stdenv, lib, makeWrapper, fetchzip, ocaml, findlib, tcl, tk }:
-let OCamlVersionAtLeast = lib.versionAtLeast ocaml.version; in
-
-if !OCamlVersionAtLeast "4.04"
-then throw "labltk is not available for OCaml ${ocaml.version}"
-else
-
-let param =
- let mkNewParam = { version, sha256 }: {
+let
+ params =
+ let mkNewParam = { version, sha256, rev ? version }: {
inherit version;
src = fetchzip {
- url = "https://github.com/garrigue/labltk/archive/${version}.tar.gz";
+ url = "https://github.com/garrigue/labltk/archive/${rev}.tar.gz";
inherit sha256;
};
}; in
- let mkOldParam = { version, key, sha256 }: {
- src = fetchurl {
- url = "https://forge.ocamlcore.org/frs/download.php/${key}/labltk-${version}.tar.gz";
- inherit sha256;
- };
- inherit version;
- }; in
rec {
- "4.04" = mkOldParam {
- version = "8.06.2";
- key = "1628";
- sha256 = "1p97j9s33axkb4yyl0byhmhlyczqarb886ajpyggizy2br3a0bmk";
- };
- "4.05" = mkOldParam {
- version = "8.06.3";
- key = "1701";
- sha256 = "1rka9jpg3kxqn7dmgfsa7pmsdwm16x7cn4sh15ijyyrad9phgdxn";
- };
- "4.06" = mkOldParam {
+ "4.06" = mkNewParam {
version = "8.06.4";
- key = "1727";
- sha256 = "0j3rz0zz4r993wa3ssnk5s416b1jhj58l6z2jk8238a86y7xqcii";
+ rev = "labltk-8.06.4";
+ sha256 = "03xwnnnahb2rf4siymzqyqy8zgrx3h26qxjgbp5dh1wdl7n02c7g";
};
- "4.07" = mkOldParam {
+ "4.07" = mkNewParam {
version = "8.06.5";
- key = "1764";
- sha256 = "0wgx65y1wkgf22ihpqmspqfp95fqbj3pldhp1p3b1mi8rmc37zwj";
+ rev = "1b71e2c6f3ae6847d3d5e79bf099deb7330fb419";
+ sha256 = "02vchmrm3izrk7daldd22harhgrjhmbw6i1pqw6hmfmrmrypypg2";
};
_8_06_7 = mkNewParam {
version = "8.06.7";
@@ -60,14 +38,16 @@ let param =
version = "8.06.10";
sha256 = "06cck7wijq4zdshzhxm6jyl8k3j0zglj2axsyfk6q1sq754zyf4a";
};
-}.${builtins.substring 0 4 ocaml.version};
+ };
+ param = params . ${lib.versions.majorMinor ocaml.version}
+ or (throw "labltk is not available for OCaml ${ocaml.version}");
in
stdenv.mkDerivation rec {
inherit (param) version src;
name = "ocaml${ocaml.version}-labltk-${version}";
- buildInputs = [ ocaml findlib tcl tk ];
+ buildInputs = [ ocaml findlib tcl tk makeWrapper ];
configureFlags = [ "--use-findlib" "--installbindir" "$(out)/bin" ];
dontAddPrefix = true;
@@ -79,6 +59,10 @@ stdenv.mkDerivation rec {
postInstall = ''
mkdir -p $OCAMLFIND_DESTDIR/stublibs
mv $OCAMLFIND_DESTDIR/labltk/dlllabltk.so $OCAMLFIND_DESTDIR/stublibs/
+ for p in $out/bin/*
+ do
+ wrapProgram $p --set CAML_LD_LIBRARY_PATH $OCAMLFIND_DESTDIR/stublibs
+ done
'';
meta = {
diff --git a/pkgs/development/ocaml-modules/path_glob/default.nix b/pkgs/development/ocaml-modules/path_glob/default.nix
new file mode 100644
index 00000000000..ed6363bad26
--- /dev/null
+++ b/pkgs/development/ocaml-modules/path_glob/default.nix
@@ -0,0 +1,17 @@
+{ lib, buildDunePackage, fetchurl }:
+
+buildDunePackage rec {
+ pname = "path_glob";
+ version = "0.2";
+ useDune2 = true;
+ src = fetchurl {
+ url = "https://gasche.gitlab.io/path_glob/releases/path_glob-${version}.tbz";
+ sha256 = "01ra20bzjiihbgma74axsp70gqmid6x7jmiizg48mdkni0aa42ay";
+ };
+
+ meta = {
+ homepage = "https://gitlab.com/gasche/path_glob";
+ description = "Checking glob patterns on paths";
+ license = lib.licenses.lgpl2Only;
+ };
+}
diff --git a/pkgs/development/ocaml-modules/x509/default.nix b/pkgs/development/ocaml-modules/x509/default.nix
index 23efd4bb9fc..637105361fd 100644
--- a/pkgs/development/ocaml-modules/x509/default.nix
+++ b/pkgs/development/ocaml-modules/x509/default.nix
@@ -1,6 +1,6 @@
-{ lib, fetchurl, buildDunePackage, fetchpatch
+{ lib, fetchurl, buildDunePackage
, alcotest, cstruct-unix
-, asn1-combinators, domain-name, fmt, gmap, rresult, mirage-crypto, mirage-crypto-pk
+, asn1-combinators, domain-name, fmt, gmap, pbkdf, rresult, mirage-crypto, mirage-crypto-ec, mirage-crypto-pk
, logs, base64
}:
@@ -8,25 +8,17 @@ buildDunePackage rec {
minimumOCamlVersion = "4.07";
pname = "x509";
- version = "0.11.2";
+ version = "0.12.0";
src = fetchurl {
url = "https://github.com/mirleft/ocaml-x509/releases/download/v${version}/x509-v${version}.tbz";
- sha256 = "1b4lcphmlyjhdgqi0brakgjp3diwmrj1y9hx87svi5xklw3zik22";
+ sha256 = "04g59j8sn8am0z0a94h8cyvr6cqzd5gkn2lj6g51nb5dkwajj19h";
};
- patches = [
- # fix tests for mirage-crypto >= 0.8.9, can be removed at next release
- (fetchpatch {
- url = "https://github.com/mirleft/ocaml-x509/commit/ba1fdd4432950293e663416a0c454c8c04a71c0f.patch";
- sha256 = "1rbjf7408772ns3ypk2hyw9v17iy1kcx84plr1rqc56iwk9zzxmr";
- })
- ];
-
useDune2 = true;
buildInputs = [ alcotest cstruct-unix ];
- propagatedBuildInputs = [ asn1-combinators domain-name fmt gmap mirage-crypto mirage-crypto-pk rresult logs base64 ];
+ propagatedBuildInputs = [ asn1-combinators domain-name fmt gmap mirage-crypto mirage-crypto-pk mirage-crypto-ec pbkdf rresult logs base64 ];
doCheck = true;
diff --git a/pkgs/development/ocaml-modules/xenstore_transport/default.nix b/pkgs/development/ocaml-modules/xenstore_transport/default.nix
index f0bb908e5db..1981f2d5cab 100644
--- a/pkgs/development/ocaml-modules/xenstore_transport/default.nix
+++ b/pkgs/development/ocaml-modules/xenstore_transport/default.nix
@@ -22,6 +22,6 @@ buildDunePackage rec {
meta = with lib; {
description = "Low-level libraries for connecting to a xenstore service on a xen host";
license = licenses.lgpl21Only;
- homepage = "http://github.com/xapi-project/ocaml-xenstore-clients";
+ homepage = "https://github.com/xapi-project/ocaml-xenstore-clients";
};
}
diff --git a/pkgs/development/php-packages/composer/default.nix b/pkgs/development/php-packages/composer/default.nix
index d704b5f9a27..a7be06f1d04 100644
--- a/pkgs/development/php-packages/composer/default.nix
+++ b/pkgs/development/php-packages/composer/default.nix
@@ -1,14 +1,14 @@
{ mkDerivation, fetchurl, makeWrapper, unzip, lib, php }:
let
pname = "composer";
- version = "2.0.11";
+ version = "2.0.12";
in
mkDerivation {
inherit pname version;
src = fetchurl {
url = "https://getcomposer.org/download/${version}/composer.phar";
- sha256 = "sha256-6r8pFwcglqlGeRk3YlATGeYh4rNppKElaywn9OaYRHc=";
+ sha256 = "sha256-guqMFTfPrOt+VvYATHzN+Z3a/OcjfAc3TZIOY1cwpjE=";
};
dontUnpack = true;
diff --git a/pkgs/development/python-modules/adafruit-platformdetect/default.nix b/pkgs/development/python-modules/adafruit-platformdetect/default.nix
index ac4768c31d8..2345f8cae46 100644
--- a/pkgs/development/python-modules/adafruit-platformdetect/default.nix
+++ b/pkgs/development/python-modules/adafruit-platformdetect/default.nix
@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "adafruit-platformdetect";
- version = "3.5.0";
+ version = "3.6.0";
src = fetchPypi {
pname = "Adafruit-PlatformDetect";
inherit version;
- sha256 = "sha256-QJeb9+iiS4QZ7poOBp5oKD5KuagkG6cfTalbNRwrI1M=";
+ sha256 = "sha256-096bMTAh5d2wikrmlDcUspD9GYZlPHbdDcf/e/BLAHI=";
};
nativeBuildInputs = [ setuptools-scm ];
diff --git a/pkgs/development/python-modules/ailment/default.nix b/pkgs/development/python-modules/ailment/default.nix
index 13386eb12a6..121182083d3 100644
--- a/pkgs/development/python-modules/ailment/default.nix
+++ b/pkgs/development/python-modules/ailment/default.nix
@@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "ailment";
- version = "9.0.5903";
+ version = "9.0.6790";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-75Ul9JfMFYv3AfBlgmer6IDyfgOAS4AdXexznoxi35Y=";
+ sha256 = "sha256-RcLa18JqQ7c8u+fhyNHmJEXt/Lg73JDAImtUtiaZbTw=";
};
propagatedBuildInputs = [ pyvex ];
diff --git a/pkgs/development/python-modules/aioimaplib/default.nix b/pkgs/development/python-modules/aioimaplib/default.nix
index df9748f1c84..a94818aee5c 100644
--- a/pkgs/development/python-modules/aioimaplib/default.nix
+++ b/pkgs/development/python-modules/aioimaplib/default.nix
@@ -8,22 +8,19 @@
, nose
, pyopenssl
, pytestCheckHook
-, pythonAtLeast
, pytz
, tzlocal
}:
buildPythonPackage rec {
pname = "aioimaplib";
- version = "0.8.0";
-
- disabled = pythonAtLeast "3.9";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "bamthomas";
repo = pname;
rev = version;
- sha256 = "sha256-ume25EwLNB6szokHXonDXHGKVK76CiZYOBXVUf37/x8=";
+ sha256 = "sha256-xxZAeJDuqrPv4kGgDr0ypFuZJk1zcs/bmgeEzI0jpqY=";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/aiosmb/default.nix b/pkgs/development/python-modules/aiosmb/default.nix
index 49c67a0aa04..ce20341eae1 100644
--- a/pkgs/development/python-modules/aiosmb/default.nix
+++ b/pkgs/development/python-modules/aiosmb/default.nix
@@ -1,6 +1,7 @@
{ lib
, asysocks
, buildPythonPackage
+, colorama
, fetchPypi
, minikerberos
, prompt_toolkit
@@ -13,22 +14,23 @@
buildPythonPackage rec {
pname = "aiosmb";
- version = "0.2.37";
+ version = "0.2.41";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "0daf1fk7406vpywc0yxv0wzf4nw986js9lc2agfyfxz0q7s29lf0";
+ sha256 = "sha256-hiLLoFswh0rm5f5TsaX+zyRDkOIyzGXVO0M5J5d/gtQ=";
};
propagatedBuildInputs = [
- minikerberos
- winsspi
- six
asysocks
- tqdm
+ colorama
+ minikerberos
prompt_toolkit
+ six
+ tqdm
winacl
+ winsspi
];
# Project doesn't have tests
diff --git a/pkgs/development/python-modules/angr/default.nix b/pkgs/development/python-modules/angr/default.nix
new file mode 100644
index 00000000000..1875c1deea0
--- /dev/null
+++ b/pkgs/development/python-modules/angr/default.nix
@@ -0,0 +1,92 @@
+{ lib
+, ailment
+, archinfo
+, buildPythonPackage
+, cachetools
+, capstone
+, cffi
+, claripy
+, cle
+, cppheaderparser
+, dpkt
+, fetchFromGitHub
+, GitPython
+, itanium_demangler
+, mulpyplexer
+, networkx
+, progressbar2
+, protobuf
+, psutil
+, pycparser
+, pythonOlder
+, pyvex
+, sqlalchemy
+, rpyc
+, sortedcontainers
+, unicorn
+}:
+
+let
+ # Only the pinned release in setup.py works properly
+ unicorn' = unicorn.overridePythonAttrs (old: rec {
+ pname = "unicorn";
+ version = "1.0.2-rc4";
+ src = fetchFromGitHub {
+ owner = "unicorn-engine";
+ repo = pname;
+ rev = version;
+ sha256 = "17nyccgk7hpc4hab24yn57f1xnmr7kq4px98zbp2bkwcrxny8gwy";
+ };
+ });
+in
+
+buildPythonPackage rec {
+ pname = "angr";
+ version = "9.0.6790";
+ disabled = pythonOlder "3.6";
+
+ src = fetchFromGitHub {
+ owner = pname;
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-PRghK/BdgxGpPuinkGr+rREza1pQXz2gxnXiSmxBSTc=";
+ };
+
+ propagatedBuildInputs = [
+ ailment
+ archinfo
+ cachetools
+ capstone
+ cffi
+ claripy
+ cle
+ cppheaderparser
+ dpkt
+ GitPython
+ itanium_demangler
+ mulpyplexer
+ networkx
+ progressbar2
+ protobuf
+ psutil
+ sqlalchemy
+ pycparser
+ pyvex
+ sqlalchemy
+ rpyc
+ sortedcontainers
+ unicorn'
+ ];
+
+ # Tests have additional requirements, e.g., pypcode and angr binaries
+ # cle is executing the tests with the angr binaries
+ doCheck = false;
+ pythonImportsCheck = [ "angr" ];
+
+ meta = with lib; {
+ description = "Powerful and user-friendly binary analysis platform";
+ homepage = "https://angr.io/";
+ license = with licenses; [ bsd2 ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/archinfo/default.nix b/pkgs/development/python-modules/archinfo/default.nix
index b06e0320dc9..fc83073a3a2 100644
--- a/pkgs/development/python-modules/archinfo/default.nix
+++ b/pkgs/development/python-modules/archinfo/default.nix
@@ -7,13 +7,13 @@
buildPythonPackage rec {
pname = "archinfo";
- version = "9.0.5903";
+ version = "9.0.6790";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-4e+ZGIt/ouZj5rsmaVxUrz8gAq4Yq2+Qx4jdOojB4Sw=";
+ sha256 = "sha256-A4WvRElahRv/XmlmS4WexMqm8FIZ1SSUnbdoAWWECMk=";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/awkward/default.nix b/pkgs/development/python-modules/awkward/default.nix
index a343306a5b9..2acec8ccc6f 100644
--- a/pkgs/development/python-modules/awkward/default.nix
+++ b/pkgs/development/python-modules/awkward/default.nix
@@ -10,11 +10,11 @@
buildPythonPackage rec {
pname = "awkward";
- version = "1.1.2";
+ version = "1.2.2";
src = fetchPypi {
inherit pname version;
- sha256 = "4ae8371d9e6d5bd3e90f3686b433cebc0541c88072655d2c75ec58e79b5d6943";
+ sha256 = "89f126a072d3a6eee091e1afeed87e0b2ed3c34ed31a1814062174de3cab8d9b";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/python-modules/brother/default.nix b/pkgs/development/python-modules/brother/default.nix
index e4f9d63bd6b..9f41ed5756f 100644
--- a/pkgs/development/python-modules/brother/default.nix
+++ b/pkgs/development/python-modules/brother/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "brother";
- version = "0.2.2";
+ version = "1.0.0";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "bieniu";
repo = pname;
rev = version;
- sha256 = "sha256-vIefcL3K3ZbAUxMFM7gbbTFdrnmufWZHcq4OA19SYXE=";
+ sha256 = "sha256-0NfqPlQiOkNhR+H55E9LE4dGa9R8vcSyPNbbIeiRJV8=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/capstone/default.nix b/pkgs/development/python-modules/capstone/default.nix
index af6b9031e66..6ab2ed91fe5 100644
--- a/pkgs/development/python-modules/capstone/default.nix
+++ b/pkgs/development/python-modules/capstone/default.nix
@@ -1,7 +1,7 @@
-{ stdenv
-, lib
+{ lib
, buildPythonPackage
, capstone
+, stdenv
, fetchpatch
, fetchPypi
, setuptools
@@ -33,5 +33,7 @@ buildPythonPackage rec {
license = licenses.bsdOriginal;
description = "Python bindings for Capstone disassembly engine";
maintainers = with maintainers; [ bennofs ris ];
+ # creates a manylinux2014-x86_64 wheel
+ broken = stdenv.isAarch64;
};
}
diff --git a/pkgs/development/python-modules/claripy/default.nix b/pkgs/development/python-modules/claripy/default.nix
index 61b72e8cf31..9f077df96f0 100644
--- a/pkgs/development/python-modules/claripy/default.nix
+++ b/pkgs/development/python-modules/claripy/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "claripy";
- version = "9.0.5903";
+ version = "9.0.6790";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-NIKWUx1VT5TjnuqppuT6VzwNRwcBLc0xI5k3F2Nmj8A=";
+ sha256 = "sha256-GpWHj3bNgr7nQoIKM4VQtVkbObxqw6QkuEmfmPEiJmE=";
};
# Use upstream z3 implementation
diff --git a/pkgs/development/python-modules/cle/default.nix b/pkgs/development/python-modules/cle/default.nix
new file mode 100644
index 00000000000..feaab56600f
--- /dev/null
+++ b/pkgs/development/python-modules/cle/default.nix
@@ -0,0 +1,79 @@
+{ lib
+, buildPythonPackage
+, cffi
+, fetchFromGitHub
+, minidump
+, nose
+, pefile
+, pyelftools
+, pytestCheckHook
+, pythonOlder
+, pyvex
+, pyxbe
+, sortedcontainers
+}:
+
+let
+ # The binaries are following the argr projects release cycle
+ version = "9.0.6790";
+
+ # Binary files from https://github.com/angr/binaries (only used for testing and only here)
+ binaries = fetchFromGitHub {
+ owner = "angr";
+ repo = "binaries";
+ rev = "v${version}";
+ sha256 = "1qlrxfj1n34xvwkac6mbcc7zmixxbp34fj7lkf0fvp7zcz1rpla1";
+ };
+
+in
+buildPythonPackage rec {
+ pname = "cle";
+ inherit version;
+ disabled = pythonOlder "3.6";
+
+ src = fetchFromGitHub {
+ owner = "angr";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-zQggVRdc8fV1ulFnOlzYLvSOSOP3+dY8j+6lo+pXSkM=";
+ };
+
+ propagatedBuildInputs = [
+ cffi
+ minidump
+ pefile
+ pyelftools
+ pyvex
+ pyxbe
+ sortedcontainers
+ ];
+
+ checkInputs = [
+ nose
+ pytestCheckHook
+ ];
+
+ # Place test binaries in the right location (location is hard-coded in the tests)
+ preCheck = ''
+ export HOME=$TMPDIR
+ cp -r ${binaries} $HOME/binaries
+ '';
+
+ disabledTests = [
+ # PPC tests seems to fails
+ "test_ppc_rel24_relocation"
+ "test_ppc_addr16_ha_relocation"
+ "test_ppc_addr16_lo_relocation"
+ # Binary not found, seems to be missing in the current binaries release
+ "test_plt_full_relro"
+ ];
+
+ pythonImportsCheck = [ "cle" ];
+
+ meta = with lib; {
+ description = "Python loader for many binary formats";
+ homepage = "https://github.com/angr/cle";
+ license = with licenses; [ bsd2 ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/css-html-js-minify/default.nix b/pkgs/development/python-modules/css-html-js-minify/default.nix
new file mode 100644
index 00000000000..d05941e1cfb
--- /dev/null
+++ b/pkgs/development/python-modules/css-html-js-minify/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "css-html-js-minify";
+ version = "2.5.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ extension = "zip";
+ sha256 = "4a9f11f7e0496f5284d12111f3ba4ff5ff2023d12f15d195c9c48bd97013746c";
+ };
+
+ doCheck = false; # Tests are useless and broken
+
+ pythonImportsCheck = [ "css_html_js_minify" ];
+
+ meta = with lib; {
+ description = "StandAlone Async cross-platform Minifier for the Web";
+ homepage = "https://github.com/juancarlospaco/css-html-js-minify";
+ license = with licenses; [ gpl3Plus lgpl3Plus mit ];
+ maintainers = with maintainers; [ FlorianFranzen ];
+ };
+}
diff --git a/pkgs/development/python-modules/cxxfilt/default.nix b/pkgs/development/python-modules/cxxfilt/default.nix
new file mode 100644
index 00000000000..580d698d8da
--- /dev/null
+++ b/pkgs/development/python-modules/cxxfilt/default.nix
@@ -0,0 +1,33 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, gcc-unwrapped
+}:
+buildPythonPackage rec {
+ pname = "cxxfilt";
+ version = "0.2.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "ef6810e76d16c95c11b96371e2d8eefd1d270ec03f9bcd07590e8dcc2c69e92b";
+ };
+
+ postPatch = ''
+ substituteInPlace cxxfilt/__init__.py \
+ --replace "find_any_library('stdc++', 'c++')" '"${lib.getLib gcc-unwrapped}/lib/libstdc++.so"'
+ '';
+
+ # no tests
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "cxxfilt"
+ ];
+
+ meta = with lib; {
+ description = "Demangling C++ symbols in Python / interface to abi::__cxa_demangle ";
+ homepage = "https://github.com/afq984/python-cxxfilt";
+ license = licenses.bsd2;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/debut/default.nix b/pkgs/development/python-modules/debut/default.nix
new file mode 100644
index 00000000000..02eece2fc24
--- /dev/null
+++ b/pkgs/development/python-modules/debut/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, chardet
+, attrs
+, pytestCheckHook
+}:
+buildPythonPackage rec {
+ pname = "debut";
+ version = "0.9.9";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "a3a71e475295f4cf4292440c9c7303ebca0309d395536d2a7f86a5f4d7465dc1";
+ };
+
+ dontConfigure = true;
+
+ propagatedBuildInputs = [
+ chardet
+ attrs
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [
+ "debut"
+ ];
+
+ meta = with lib; {
+ description = "Python library to parse Debian deb822-style control and copyright files ";
+ homepage = "https://github.com/nexB/debut";
+ license = with licenses; [ asl20 bsd3 mit ];
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/deezer-python/default.nix b/pkgs/development/python-modules/deezer-python/default.nix
new file mode 100644
index 00000000000..cff9a666691
--- /dev/null
+++ b/pkgs/development/python-modules/deezer-python/default.nix
@@ -0,0 +1,47 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pythonOlder
+, requests
+, tornado
+, poetry-core
+, pytestCheckHook
+, pytest-cov
+, pytest-vcr
+}:
+
+buildPythonPackage rec {
+ pname = "deezer-python";
+ version = "2.2.2";
+ disabled = pythonOlder "3.6";
+ format = "pyproject";
+
+ src = fetchFromGitHub {
+ owner = "browniebroke";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1l8l4lxlqsj921gk1mxcilp11jx31addiyd9pk604aldgqma709y";
+ };
+
+ nativeBuildInputs = [
+ poetry-core
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ pytest-cov
+ pytest-vcr
+ ];
+
+ propagatedBuildInputs = [
+ requests
+ tornado
+ ];
+
+ meta = with lib; {
+ description = "A friendly Python wrapper around the Deezer API";
+ homepage = "https://github.com/browniebroke/deezer-python";
+ license = licenses.mit;
+ maintainers = with maintainers; [ synthetica ];
+ };
+}
diff --git a/pkgs/development/python-modules/django-mailman3/default.nix b/pkgs/development/python-modules/django-mailman3/default.nix
index 54cde59a4bd..7e99d22693f 100644
--- a/pkgs/development/python-modules/django-mailman3/default.nix
+++ b/pkgs/development/python-modules/django-mailman3/default.nix
@@ -27,6 +27,6 @@ buildPythonPackage rec {
description = "Django library for Mailman UIs";
homepage = "https://gitlab.com/mailman/django-mailman3";
license = licenses.gpl3Plus;
- maintainers = with maintainers; [ globin peti ];
+ maintainers = with maintainers; [ globin peti qyliss ];
};
}
diff --git a/pkgs/development/python-modules/dsmr-parser/default.nix b/pkgs/development/python-modules/dsmr-parser/default.nix
new file mode 100644
index 00000000000..155927368ee
--- /dev/null
+++ b/pkgs/development/python-modules/dsmr-parser/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pyserial
+, pyserial-asyncio
+, pytestCheckHook
+, pytz
+, tailer
+}:
+
+buildPythonPackage rec {
+ pname = "dsmr-parser";
+ version = "0.29";
+
+ src = fetchFromGitHub {
+ owner = "ndokter";
+ repo = "dsmr_parser";
+ rev = "v${version}";
+ sha256 = "11d6cwmabzc8p6jkqwj72nrj7p6cxbvr0x3jdrxyx6zki8chyw4p";
+ };
+
+ propagatedBuildInputs = [
+ pyserial
+ pyserial-asyncio
+ pytz
+ tailer
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [ "dsmr_parser" ];
+
+ meta = with lib; {
+ description = "Python module to parse Dutch Smart Meter Requirements (DSMR)";
+ homepage = "https://github.com/ndokter/dsmr_parser";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/faadelays/default.nix b/pkgs/development/python-modules/faadelays/default.nix
index 3175aabcae8..7cd0e291999 100644
--- a/pkgs/development/python-modules/faadelays/default.nix
+++ b/pkgs/development/python-modules/faadelays/default.nix
@@ -7,12 +7,12 @@
buildPythonPackage rec {
pname = "faadelays";
- version = "0.0.6";
+ version = "0.0.7";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "02z8p0n9d6n4l6v1m969009gxwmy5v14z108r4f3swd6yrk0h2xd";
+ sha256 = "sha256-osZqfSYlKPYZMelBR6YB331iRB4DTjCUlmX7pcrIiGk=";
};
propagatedBuildInputs = [ aiohttp ];
diff --git a/pkgs/development/python-modules/flufl/lock.nix b/pkgs/development/python-modules/flufl/lock.nix
index 1be5d9a7c4c..b44a7f3cdfe 100644
--- a/pkgs/development/python-modules/flufl/lock.nix
+++ b/pkgs/development/python-modules/flufl/lock.nix
@@ -1,13 +1,24 @@
-{ buildPythonPackage, fetchPypi, atpublic }:
+{ lib, buildPythonPackage, fetchPypi, pytestCheckHook
+, atpublic, psutil, pytestcov, sybil
+}:
buildPythonPackage rec {
pname = "flufl.lock";
- version = "3.2";
-
- propagatedBuildInputs = [ atpublic ];
+ version = "5.0.5";
src = fetchPypi {
inherit pname version;
- sha256 = "0nzzd6l30ff6cwsrlrb94xzfja4wkyrqv3ydc6cz0hdbr766mmm8";
+ sha256 = "1bnapkg99r6mixn3kh314bqcfk8q54y0cvhjpj87j7dhjpsakfpz";
+ };
+
+ propagatedBuildInputs = [ atpublic psutil ];
+ checkInputs = [ pytestCheckHook pytestcov sybil ];
+
+ meta = with lib; {
+ homepage = "https://flufllock.readthedocs.io/";
+ description = "NFS-safe file locking with timeouts for POSIX and Windows";
+ maintainers = with maintainers; [ qyliss ];
+ license = licenses.asl20;
+ platforms = platforms.all;
};
}
diff --git a/pkgs/development/python-modules/fusepy/default.nix b/pkgs/development/python-modules/fusepy/default.nix
index 45b70863042..03a5248e8e1 100644
--- a/pkgs/development/python-modules/fusepy/default.nix
+++ b/pkgs/development/python-modules/fusepy/default.nix
@@ -1,4 +1,5 @@
{ lib
+, stdenv
, buildPythonPackage
, fetchPypi
, pkgs
@@ -18,7 +19,9 @@ buildPythonPackage rec {
# No tests included
doCheck = false;
- patchPhase = ''
+ # On macOS, users are expected to install macFUSE. This means fusepy should
+ # be able to find libfuse in /usr/local/lib.
+ patchPhase = lib.optionalString (!stdenv.isDarwin) ''
substituteInPlace fuse.py --replace \
"find_library('fuse')" "'${pkgs.fuse}/lib/libfuse.so'"
'';
diff --git a/pkgs/development/python-modules/google-auth-oauthlib/default.nix b/pkgs/development/python-modules/google-auth-oauthlib/default.nix
index 37752601e26..6e4c139d8dd 100644
--- a/pkgs/development/python-modules/google-auth-oauthlib/default.nix
+++ b/pkgs/development/python-modules/google-auth-oauthlib/default.nix
@@ -1,4 +1,5 @@
{ lib
+, stdenv
, buildPythonPackage
, fetchPypi
, click
@@ -28,6 +29,8 @@ buildPythonPackage rec {
pytestCheckHook
];
+ disabledTests = lib.optionals stdenv.isDarwin [ "test_run_local_server" ];
+
meta = with lib; {
description = "Google Authentication Library: oauthlib integration";
homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib";
diff --git a/pkgs/development/python-modules/google-auth/default.nix b/pkgs/development/python-modules/google-auth/default.nix
index addd67f9faa..f106f6efaa6 100644
--- a/pkgs/development/python-modules/google-auth/default.nix
+++ b/pkgs/development/python-modules/google-auth/default.nix
@@ -1,4 +1,5 @@
-{ lib
+{ stdenv
+, lib
, buildPythonPackage
, fetchpatch
, fetchPypi
@@ -48,6 +49,14 @@ buildPythonPackage rec {
"google.oauth2"
];
+ disabledTests = lib.optionals stdenv.isDarwin [
+ "test_request_with_timeout_success"
+ "test_request_with_timeout_failure"
+ "test_request_headers"
+ "test_request_error"
+ "test_request_basic"
+ ];
+
meta = with lib; {
description = "Google Auth Python Library";
longDescription = ''
diff --git a/pkgs/development/python-modules/hachoir/default.nix b/pkgs/development/python-modules/hachoir/default.nix
new file mode 100644
index 00000000000..2c46b14a274
--- /dev/null
+++ b/pkgs/development/python-modules/hachoir/default.nix
@@ -0,0 +1,35 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pytestCheckHook
+, urwid
+}:
+
+buildPythonPackage rec {
+ pname = "hachoir";
+ version = "3.1.2";
+
+ src = fetchFromGitHub {
+ owner = "vstinner";
+ repo = pname;
+ rev = version;
+ sha256 = "06544qmmimvaznwcjs8wwfih1frdd7anwcw5z07cf69l8p146p0y";
+ };
+
+ propagatedBuildInputs = [
+ urwid
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [ "hachoir" ];
+
+ meta = with lib; {
+ description = "Python library to view and edit a binary stream";
+ homepage = "https://hachoir.readthedocs.io/";
+ license = with licenses; [ gpl2Only ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/httplib2/default.nix b/pkgs/development/python-modules/httplib2/default.nix
index ce3b3aa1f67..25c227c614e 100644
--- a/pkgs/development/python-modules/httplib2/default.nix
+++ b/pkgs/development/python-modules/httplib2/default.nix
@@ -1,4 +1,5 @@
-{ lib
+{ stdenv
+, lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
@@ -39,8 +40,10 @@ buildPythonPackage rec {
pytestCheckHook
];
- # Don't run tests for Python 2.7
- doCheck = !isPy27;
+ # Don't run tests for Python 2.7 or Darwin
+ # Nearly 50% of the test suite requires local network access
+ # which isn't allowed on sandboxed Darwin builds
+ doCheck = !(isPy27 || stdenv.isDarwin);
pytestFlagsArray = [ "--ignore python2" ];
pythonImportsCheck = [ "httplib2" ];
diff --git a/pkgs/development/python-modules/hyperion-py/default.nix b/pkgs/development/python-modules/hyperion-py/default.nix
new file mode 100644
index 00000000000..c282be29c65
--- /dev/null
+++ b/pkgs/development/python-modules/hyperion-py/default.nix
@@ -0,0 +1,52 @@
+{ lib
+, aiohttp
+, buildPythonPackage
+, fetchFromGitHub
+, pytestCheckHook
+, pythonOlder
+, poetry-core
+, pytest-aiohttp
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "hyperion-py";
+ version = "0.7.4";
+ disabled = pythonOlder "3.8";
+ format = "pyproject";
+
+ src = fetchFromGitHub {
+ owner = "dermotduffy";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "00x12ppmvlxs3qbdxq06wnzakvwm2m39qhmpp27qfpl137b0qqyj";
+ };
+
+ nativeBuildInputs = [
+ poetry-core
+ ];
+
+ propagatedBuildInputs = [
+ aiohttp
+ ];
+
+ checkInputs = [
+ pytest-asyncio
+ pytest-aiohttp
+ pytestCheckHook
+ ];
+
+ postPatch = ''
+ substituteInPlace pyproject.toml \
+ --replace " --timeout=9 --cov=hyperion" ""
+ '';
+
+ pythonImportsCheck = [ "hyperion" ];
+
+ meta = with lib; {
+ description = "Python package for Hyperion Ambient Lighting";
+ homepage = "https://github.com/dermotduffy/hyperion-py";
+ license = licenses.mit;
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/imap-tools/default.nix b/pkgs/development/python-modules/imap-tools/default.nix
index 136415eb54e..700c23827fa 100644
--- a/pkgs/development/python-modules/imap-tools/default.nix
+++ b/pkgs/development/python-modules/imap-tools/default.nix
@@ -7,7 +7,7 @@
buildPythonPackage rec {
pname = "imap-tools";
- version = "0.39.0";
+ version = "0.40.0";
disabled = isPy27;
@@ -15,7 +15,7 @@ buildPythonPackage rec {
owner = "ikvk";
repo = "imap_tools";
rev = "v${version}";
- sha256 = "sha256-PyksCYVe7Ij/+bZpntHgY51I/ZVnC6L20TcKfTLr2CY=";
+ sha256 = "sha256-7qLiVN3pBkbZQlA12ZOkgpiV/JybrPTmEIeJjy4ZS3A=";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix b/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix
index b06db621b73..84ea65a7477 100644
--- a/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix
+++ b/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix
@@ -19,7 +19,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://github.com/jellyfin/jellyfin-apiclient-python";
description = "Python API client for Jellyfin";
- license = licenses.gpl3;
+ license = licenses.gpl3Only;
maintainers = with maintainers; [ jojosch ];
};
}
diff --git a/pkgs/development/python-modules/kaitaistruct/default.nix b/pkgs/development/python-modules/kaitaistruct/default.nix
index 1050ae88e43..714f51c0d3d 100644
--- a/pkgs/development/python-modules/kaitaistruct/default.nix
+++ b/pkgs/development/python-modules/kaitaistruct/default.nix
@@ -1,5 +1,18 @@
-{ lib, buildPythonPackage, fetchPypi }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, fetchFromGitHub
+, lz4
+}:
+let
+ kaitai_compress = fetchFromGitHub {
+ owner = "kaitai-io";
+ repo = "kaitai_compress";
+ rev = "434fb42220ff58778bb9fbadb6152cad7e4f5dd0";
+ sha256 = "zVnkVl3amUDOB+pnw5SkMGSrVL/dTQ82E8IWfJvKC4Q=";
+ };
+in
buildPythonPackage rec {
pname = "kaitaistruct";
version = "0.9";
@@ -9,9 +22,27 @@ buildPythonPackage rec {
sha256 = "3d5845817ec8a4d5504379cc11bd570b038850ee49c4580bc0998c8fb1d327ad";
};
+ preBuild = ''
+ ln -s ${kaitai_compress}/python/kaitai kaitai
+ sed '28ipackages = kaitai/compress' -i setup.cfg
+ '';
+
+ propagatedBuildInputs = [
+ lz4
+ ];
+
+ # no tests
+ dontCheck = true;
+
+ pythonImportsCheck = [
+ "kaitaistruct"
+ "kaitai.compress"
+ ];
+
meta = with lib; {
description = "Kaitai Struct: runtime library for Python";
homepage = "https://github.com/kaitai-io/kaitai_struct_python_runtime";
license = licenses.mit;
+ maintainers = teams.determinatesystems.members;
};
}
diff --git a/pkgs/development/python-modules/karton-dashboard/default.nix b/pkgs/development/python-modules/karton-dashboard/default.nix
new file mode 100644
index 00000000000..c82cb895782
--- /dev/null
+++ b/pkgs/development/python-modules/karton-dashboard/default.nix
@@ -0,0 +1,43 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, flask
+, karton-core
+, mistune
+, prometheus_client
+}:
+
+buildPythonPackage rec {
+ pname = "karton-dashboard";
+ version = "1.1.0";
+
+ src = fetchFromGitHub {
+ owner = "CERT-Polska";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "101qmx6nmiim0vrz2ldk973ns498hnxla1xy7nys9kh9wijg4msk";
+ };
+
+ propagatedBuildInputs = [
+ flask
+ karton-core
+ mistune
+ prometheus_client
+ ];
+
+ postPatch = ''
+ substituteInPlace requirements.txt \
+ --replace "Flask==1.1.1" "Flask" \
+ --replace "karton-core==4.1.0" "karton-core"
+ '';
+
+ # Project has no tests. pythonImportsCheck requires MinIO configuration
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Web application that allows for Karton task and queue introspection";
+ homepage = "https://github.com/CERT-Polska/karton-dashboard";
+ license = with licenses; [ bsd3 ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/liblzfse/default.nix b/pkgs/development/python-modules/liblzfse/default.nix
new file mode 100644
index 00000000000..72159fa5f13
--- /dev/null
+++ b/pkgs/development/python-modules/liblzfse/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, lzfse
+, pytestCheckHook
+}:
+buildPythonPackage rec {
+ pname = "pyliblzfse";
+ version = "0.4.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "bb0b899b3830c02fdf3dbde48ea59611833f366fef836e5c32cf8145134b7d3d";
+ };
+
+ preBuild = ''
+ rm -r lzfse
+ ln -s ${lzfse.src} lzfse
+ '';
+
+ # no tests
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "liblzfse"
+ ];
+
+ meta = with lib; {
+ description = "Python bindings for LZFSE";
+ homepage = "https://github.com/ydkhatri/pyliblzfse";
+ license = licenses.mit;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/mailman-hyperkitty/default.nix b/pkgs/development/python-modules/mailman-hyperkitty/default.nix
index 1d3b69f6bf2..d5bf6457336 100644
--- a/pkgs/development/python-modules/mailman-hyperkitty/default.nix
+++ b/pkgs/development/python-modules/mailman-hyperkitty/default.nix
@@ -21,6 +21,6 @@ buildPythonPackage rec {
description = "Mailman archiver plugin for HyperKitty";
homepage = "https://gitlab.com/mailman/mailman-hyperkitty";
license = licenses.gpl3;
- maintainers = with maintainers; [ globin peti ];
+ maintainers = with maintainers; [ globin peti qyliss ];
};
}
diff --git a/pkgs/development/python-modules/mailmanclient/default.nix b/pkgs/development/python-modules/mailmanclient/default.nix
index 0c981a6789d..c19daed1b9f 100644
--- a/pkgs/development/python-modules/mailmanclient/default.nix
+++ b/pkgs/development/python-modules/mailmanclient/default.nix
@@ -17,6 +17,6 @@ buildPythonPackage rec {
description = "REST client for driving Mailman 3";
license = licenses.lgpl3;
platforms = platforms.linux;
- maintainers = with maintainers; [ peti globin ];
+ maintainers = with maintainers; [ peti globin qyliss ];
};
}
diff --git a/pkgs/development/python-modules/minidump/default.nix b/pkgs/development/python-modules/minidump/default.nix
index 45adc7adb74..864e58839f4 100644
--- a/pkgs/development/python-modules/minidump/default.nix
+++ b/pkgs/development/python-modules/minidump/default.nix
@@ -5,11 +5,11 @@
buildPythonPackage rec {
pname = "minidump";
- version = "0.0.16";
+ version = "0.0.17";
src = fetchPypi {
inherit pname version;
- sha256 = "65a71ca1da2b73ee96daa9d52e4fb9c9b80a849475502c6a1c2a80a68bd149b0";
+ sha256 = "sha256-nlPW83Tr3aec1tSYHgcZTwd+ydN12S6WNwK7gdwdatY=";
};
# Upstream doesn't have tests
diff --git a/pkgs/development/python-modules/minikerberos/default.nix b/pkgs/development/python-modules/minikerberos/default.nix
index 481f302d66a..ee0812eacec 100644
--- a/pkgs/development/python-modules/minikerberos/default.nix
+++ b/pkgs/development/python-modules/minikerberos/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "minikerberos";
- version = "0.2.9";
+ version = "0.2.11";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-woYs8EYUfALCtqHUCVfF5z1v1UIc9D8Iep9n4NrNIlg=";
+ sha256 = "sha256-OC+Cnk47GFzK1QaDEDxntRVrakpFiBuNelM/R5t/AUY=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/msldap/default.nix b/pkgs/development/python-modules/msldap/default.nix
index e9790db9f5e..12bfb7d7603 100644
--- a/pkgs/development/python-modules/msldap/default.nix
+++ b/pkgs/development/python-modules/msldap/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "msldap";
- version = "0.3.28";
+ version = "0.3.29";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-0sMi5PpwMWf/W+Hu0akQVF/1ZkbanfOzYDC3R6lZrSE=";
+ sha256 = "0khwyhylh28qvz35pdckr5fdd82zsybv0xmzlzjbgcv99cyy1a94";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/multimethod/default.nix b/pkgs/development/python-modules/multimethod/default.nix
new file mode 100644
index 00000000000..ded279cd860
--- /dev/null
+++ b/pkgs/development/python-modules/multimethod/default.nix
@@ -0,0 +1,31 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, pytest-cov
+}:
+buildPythonPackage rec {
+ pname = "multimethod";
+ version = "1.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "b9c6f85ecf187f14a3951fff319643e1fac3086d757dec64f2469e1fd136b65d";
+ };
+
+ checkInputs = [
+ pytestCheckHook
+ pytest-cov
+ ];
+
+ pythomImportsCheck = [
+ "multimethod"
+ ];
+
+ meta = with lib; {
+ description = "Multiple argument dispatching";
+ homepage = "https://github.com/coady/multimethod";
+ license = licenses.asl20;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/mysql-connector/default.nix b/pkgs/development/python-modules/mysql-connector/default.nix
index 692c021a64f..0856b30758d 100644
--- a/pkgs/development/python-modules/mysql-connector/default.nix
+++ b/pkgs/development/python-modules/mysql-connector/default.nix
@@ -4,13 +4,13 @@ let
py = python;
in buildPythonPackage rec {
pname = "mysql-connector";
- version = "8.0.23";
+ version = "8.0.24";
src = fetchFromGitHub {
owner = "mysql";
repo = "mysql-connector-python";
rev = version;
- sha256 = "sha256-YVtcHbDsW1mTjbCY1YhqgtqWv4keKlLExn2AhlOzNEw=";
+ sha256 = "1zb5wf65rnpbk0lw31i4piy0bq09hqa62gx7bh241zc5310zccc7";
};
propagatedBuildInputs = with py.pkgs; [ protobuf dnspython ];
@@ -20,6 +20,8 @@ in buildPythonPackage rec {
# But the library should be working as expected.
doCheck = false;
+ pythonImportsCheck = [ "mysql" ];
+
meta = {
description = "A MySQL driver";
longDescription = ''
@@ -28,7 +30,7 @@ in buildPythonPackage rec {
'';
homepage = "https://github.com/mysql/mysql-connector-python";
changelog = "https://raw.githubusercontent.com/mysql/mysql-connector-python/${version}/CHANGES.txt";
- license = [ lib.licenses.gpl2 ];
- maintainers = with lib.maintainers; [ primeos ];
+ license = [ lib.licenses.gpl2Only ];
+ maintainers = with lib.maintainers; [ ];
};
}
diff --git a/pkgs/development/python-modules/nunavut/default.nix b/pkgs/development/python-modules/nunavut/default.nix
index df831ab6b53..5bb173b9153 100644
--- a/pkgs/development/python-modules/nunavut/default.nix
+++ b/pkgs/development/python-modules/nunavut/default.nix
@@ -7,12 +7,12 @@
buildPythonPackage rec {
pname = "nunavut";
- version = "1.0.2";
+ version = "1.0.3";
disabled = pythonOlder "3.5"; # only python>=3.5 is supported
src = fetchPypi {
inherit pname version;
- sha256 = "c6fe0a1b92c44bb64b2427f944fee663fe1aaf3d4d4080d04ad9c212b40a8763";
+ sha256 = "474392035e9e20b2c74dced7df8bda135fd5c0ead2b2cf64523a4968c785ea73";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/omnilogic/default.nix b/pkgs/development/python-modules/omnilogic/default.nix
index 6e12e573706..96d0d7e19c6 100644
--- a/pkgs/development/python-modules/omnilogic/default.nix
+++ b/pkgs/development/python-modules/omnilogic/default.nix
@@ -7,13 +7,13 @@
buildPythonPackage rec {
pname = "omnilogic";
- version = "0.4.3";
+ version = "0.4.5";
src = fetchFromGitHub {
owner = "djtimca";
repo = "omnilogic-api";
- rev = "v${version}";
- sha256 = "19pmbykq0mckk23aj33xbhg3gjx557xy9a481mp6pkmihf2lsc8z";
+ rev = version;
+ sha256 = "081awb0fl40b5ighc9yxfq1xkgxz7l5dvz5544hx965q2r20wvsg";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/ondilo/default.nix b/pkgs/development/python-modules/ondilo/default.nix
new file mode 100644
index 00000000000..7010bd473ab
--- /dev/null
+++ b/pkgs/development/python-modules/ondilo/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, oauthlib
+, pythonOlder
+, requests
+, requests_oauthlib
+}:
+
+buildPythonPackage rec {
+ pname = "ondilo";
+ version = "0.2.0";
+ disabled = pythonOlder "3.6";
+
+ src = fetchFromGitHub {
+ owner = "JeromeHXP";
+ repo = pname;
+ rev = version;
+ sha256 = "0k7c9nacf7pxvfik3hkv9vvvda2sx5jrf6zwq7r077x7fw5l8d2b";
+ };
+
+ propagatedBuildInputs = [
+ oauthlib
+ requests
+ requests_oauthlib
+ ];
+
+ # Project has no tests
+ doCheck = false;
+ pythonImportsCheck = [ "ondilo" ];
+
+ meta = with lib; {
+ description = "Python package to access Ondilo ICO APIs";
+ homepage = "https://github.com/JeromeHXP/ondilo";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/openerz-api/default.nix b/pkgs/development/python-modules/openerz-api/default.nix
new file mode 100644
index 00000000000..9cbe89e26a3
--- /dev/null
+++ b/pkgs/development/python-modules/openerz-api/default.nix
@@ -0,0 +1,39 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pytestCheckHook
+, pythonOlder
+, requests
+, testfixtures
+}:
+
+buildPythonPackage rec {
+ pname = "openerz-api";
+ version = "0.1.0";
+ disabled = pythonOlder "3.6";
+
+ src = fetchFromGitHub {
+ owner = "misialq";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "10kxsmaz2rn26jijaxmdmhx8vjdz8hrhlrvd39gc8yvqbjwhi3nw";
+ };
+
+ propagatedBuildInputs = [
+ requests
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ testfixtures
+ ];
+
+ pythonImportsCheck = [ "openerz_api" ];
+
+ meta = with lib; {
+ description = "Python module to interact with the OpenERZ API";
+ homepage = "https://github.com/misialq/openerz-api";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/pg8000/default.nix b/pkgs/development/python-modules/pg8000/default.nix
index efa4c3005fc..a03452d7862 100644
--- a/pkgs/development/python-modules/pg8000/default.nix
+++ b/pkgs/development/python-modules/pg8000/default.nix
@@ -8,19 +8,22 @@
buildPythonPackage rec {
pname = "pg8000";
- version = "1.19.0";
+ version = "1.19.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-EexwwLIOpECAfiyGmUDxSE7qk9cbQ1gHtjhW3YK3RN0=";
+ sha256 = "sha256-RMu008kS8toWfKAr+YoAQPfpMmDk7xFMKNXWFSAS6gc=";
};
- propagatedBuildInputs = [passlib scramp ];
+ propagatedBuildInputs = [
+ passlib
+ scramp
+ ];
postPatch = ''
substituteInPlace setup.py \
- --replace "scramp==1.3.0" "scramp>=1.3.0"
+ --replace "scramp==1.4.0" "scramp>=1.4.0"
'';
# Tests require a running PostgreSQL instance
diff --git a/pkgs/development/python-modules/plugnplay/default.nix b/pkgs/development/python-modules/plugnplay/default.nix
new file mode 100644
index 00000000000..259fe96028a
--- /dev/null
+++ b/pkgs/development/python-modules/plugnplay/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+buildPythonPackage rec {
+ pname = "plugnplay";
+ version = "0.5.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "877e2d2500a45aaf31e5175f9f46182088d3e2d64c1c6b9ff6c778ae0ee594c8";
+ };
+
+ # no tests
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "plugnplay"
+ ];
+
+ meta = with lib; {
+ description = "A Generic plug-in system for python applications";
+ homepage = "https://github.com/daltonmatos/plugnplay";
+ license = licenses.gpl2Only;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/ppdeep/default.nix b/pkgs/development/python-modules/ppdeep/default.nix
new file mode 100644
index 00000000000..bbb5c3fc923
--- /dev/null
+++ b/pkgs/development/python-modules/ppdeep/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "ppdeep";
+ version = "20200505";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1zx1h0ff0wjjkgd0dzjv31i6ag09jw2p9vcssc1iplp60awlpixc";
+ };
+
+ # Project has no tests
+ doCheck = false;
+ pythonImportsCheck = [ "ppdeep" ];
+
+ meta = with lib; {
+ description = "Python library for computing fuzzy hashes (ssdeep)";
+ homepage = "https://github.com/elceef/ppdeep";
+ license = with licenses; [ asl20 ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/pur/default.nix b/pkgs/development/python-modules/pur/default.nix
new file mode 100644
index 00000000000..7d79be68b60
--- /dev/null
+++ b/pkgs/development/python-modules/pur/default.nix
@@ -0,0 +1,35 @@
+{ lib
+, buildPythonPackage
+, click
+, fetchFromGitHub
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "pur";
+ version = "5.4.0";
+
+ src = fetchFromGitHub {
+ owner = "alanhamlett";
+ repo = "pip-update-requirements";
+ rev = version;
+ sha256 = "1p2g0kz9l0rb59b3rkclb6wwidc93kwqh2hm4xc22b1w9r946six";
+ };
+
+ propagatedBuildInputs = [
+ click
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [ "pur" ];
+
+ meta = with lib; {
+ description = "Python library for update and track the requirements";
+ homepage = "https://github.com/alanhamlett/pip-update-requirements";
+ license = with licenses; [ bsd2 ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/py/default.nix b/pkgs/development/python-modules/py/default.nix
index aa12deabb37..3ccf853d7c6 100644
--- a/pkgs/development/python-modules/py/default.nix
+++ b/pkgs/development/python-modules/py/default.nix
@@ -20,7 +20,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library with cross-python path, ini-parsing, io, code, log facilities";
- homepage = "https://pylib.readthedocs.org/";
+ homepage = "https://py.readthedocs.io/";
license = licenses.mit;
};
}
diff --git a/pkgs/development/python-modules/pycdio/default.nix b/pkgs/development/python-modules/pycdio/default.nix
index 7e06b18e32b..7dee3229f77 100644
--- a/pkgs/development/python-modules/pycdio/default.nix
+++ b/pkgs/development/python-modules/pycdio/default.nix
@@ -40,7 +40,6 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://www.gnu.org/software/libcdio/";
description = "Wrapper around libcdio (CD Input and Control library)";
- maintainers = with maintainers; [ rycee ];
license = licenses.gpl3Plus;
};
diff --git a/pkgs/development/python-modules/pycuda/default.nix b/pkgs/development/python-modules/pycuda/default.nix
index 1db5df28e32..5bf9114d693 100644
--- a/pkgs/development/python-modules/pycuda/default.nix
+++ b/pkgs/development/python-modules/pycuda/default.nix
@@ -1,4 +1,5 @@
{ buildPythonPackage
+, addOpenGLRunpath
, fetchPypi
, fetchFromGitHub
, Mako
@@ -40,6 +41,13 @@ buildPythonPackage rec {
ln -s ${compyte} $out/${python.sitePackages}/pycuda/compyte
'';
+ postFixup = ''
+ find $out/lib -type f \( -name '*.so' -or -name '*.so.*' \) | while read lib; do
+ echo "setting opengl runpath for $lib..."
+ addOpenGLRunpath "$lib"
+ done
+ '';
+
# Requires access to libcuda.so.1 which is provided by the driver
doCheck = false;
@@ -47,6 +55,10 @@ buildPythonPackage rec {
py.test
'';
+ nativeBuildInputs = [
+ addOpenGLRunpath
+ ];
+
propagatedBuildInputs = [
numpy
pytools
diff --git a/pkgs/development/python-modules/pydantic/default.nix b/pkgs/development/python-modules/pydantic/default.nix
index d3c6e37bbe4..11879159b4f 100644
--- a/pkgs/development/python-modules/pydantic/default.nix
+++ b/pkgs/development/python-modules/pydantic/default.nix
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "pydantic";
- version = "1.8";
+ version = "1.8.1";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "samuelcolvin";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-+HfnM/IrFlUyQJdiOYyaJUNenh8dLtd8CUJWSbn6hwQ=";
+ sha256 = "1zvcmx3927fgx37gdhi8g8igvrkri1v78rn3118p4wssqhgfwa6n";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/pyicu/default.nix b/pkgs/development/python-modules/pyicu/default.nix
index 75bbcde09cd..efb7467e485 100644
--- a/pkgs/development/python-modules/pyicu/default.nix
+++ b/pkgs/development/python-modules/pyicu/default.nix
@@ -24,7 +24,6 @@ buildPythonPackage rec {
description = "Python extension wrapping the ICU C++ API";
license = licenses.mit;
platforms = platforms.unix;
- maintainers = [ maintainers.rycee ];
};
}
diff --git a/pkgs/development/python-modules/pyimpfuzzy/default.nix b/pkgs/development/python-modules/pyimpfuzzy/default.nix
new file mode 100644
index 00000000000..43e1a1a2b82
--- /dev/null
+++ b/pkgs/development/python-modules/pyimpfuzzy/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, ssdeep
+, pefile
+}:
+buildPythonPackage rec {
+ pname = "pyimpfuzzy";
+ version = "0.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "da9796df302db4b04a197128637f84988f1882f1e08fdd69bbf9fdc6cfbaf349";
+ };
+
+ buildInputs = [
+ ssdeep
+ ];
+
+ propagatedBuildInputs = [
+ pefile
+ ];
+
+ # no tests
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "pyimpfuzzy"
+ ];
+
+ meta = with lib; {
+ description = "A Python module which calculates and compares the impfuzzy (import fuzzy hashing)";
+ homepage = "https://github.com/JPCERTCC/impfuzzy";
+ license = licenses.gpl2Only;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/pymavlink/default.nix b/pkgs/development/python-modules/pymavlink/default.nix
index cf8c9513002..2f39be79821 100644
--- a/pkgs/development/python-modules/pymavlink/default.nix
+++ b/pkgs/development/python-modules/pymavlink/default.nix
@@ -2,22 +2,27 @@
buildPythonPackage rec {
pname = "pymavlink";
- version = "2.4.14";
+ version = "2.4.15";
src = fetchPypi {
inherit pname version;
- sha256 = "3bc3709c735ebb3f98f19e96c8887868f4671077d4808076cfc5445912633881";
+ sha256 = "106va20k0ahy0l2qvxf8k5pvqkgdmxbgzd9kij9fkrahlba5mx3v";
};
propagatedBuildInputs = [ future lxml ];
- # No tests included in PyPI tarball
+ # No tests included in PyPI tarball. We cannot use the GitHub tarball because
+ # we would like to use the same commit of the mavlink messages repo as
+ # included in the PyPI tarball, and there is no easy way to determine what
+ # commit is included.
doCheck = false;
+ pythonImportsCheck = [ "pymavlink" ];
+
meta = with lib; {
description = "Python MAVLink interface and utilities";
homepage = "https://github.com/ArduPilot/pymavlink";
- license = licenses.lgpl3;
+ license = with licenses; [ lgpl3Only mit ];
maintainers = with maintainers; [ lopsided98 ];
};
}
diff --git a/pkgs/development/python-modules/pymdstat/default.nix b/pkgs/development/python-modules/pymdstat/default.nix
new file mode 100644
index 00000000000..54c20969786
--- /dev/null
+++ b/pkgs/development/python-modules/pymdstat/default.nix
@@ -0,0 +1,30 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, python
+}:
+
+buildPythonPackage rec {
+ pname = "pymdstat";
+ version = "0.4.2";
+
+ src = fetchFromGitHub {
+ owner = "nicolargo";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "01hj8vyd9f7610sqvzphpr033rvnazbwvl11gi18ia3yqlnlncp0";
+ };
+
+ checkPhase = ''
+ ${python.interpreter} $src/unitest.py
+ '';
+
+ pythonImportsCheck = [ "pymdstat" ];
+
+ meta = with lib; {
+ description = "A pythonic library to parse Linux /proc/mdstat file";
+ homepage = "https://github.com/nicolargo/pymdstat";
+ maintainers = with maintainers; [ rhoriguchi ];
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/python-modules/pymetno/default.nix b/pkgs/development/python-modules/pymetno/default.nix
index b3d91c595d8..5e0131352c3 100644
--- a/pkgs/development/python-modules/pymetno/default.nix
+++ b/pkgs/development/python-modules/pymetno/default.nix
@@ -9,18 +9,29 @@
buildPythonPackage rec {
pname = "PyMetno";
- version = "0.8.1";
+ version = "0.8.2";
+ format = "setuptools";
src = fetchFromGitHub {
repo = pname;
owner = "Danielhiversen";
rev = version;
- sha256 = "1jngf0mbn5hn166pqh1ga5snwwvv7n5kv1k9kaksrfibixkvpw6h";
+ sha256 = "0b1zm60yqj1mivc3zqw2qm9rqh8cbmx0r58jyyvm3pxzq5cafdg5";
};
- propagatedBuildInputs = [ aiohttp async-timeout pytz xmltodict ];
+ propagatedBuildInputs = [
+ aiohttp
+ async-timeout
+ pytz
+ xmltodict
+ ];
- pythonImportsCheck = [ "metno"];
+ pythonImportsCheck = [
+ "metno"
+ ];
+
+ # no tests
+ doCheck = false;
meta = with lib; {
description = "A library to communicate with the met.no api";
diff --git a/pkgs/development/python-modules/pypykatz/default.nix b/pkgs/development/python-modules/pypykatz/default.nix
index e98e2bc3dbc..f4eafdcb4fc 100644
--- a/pkgs/development/python-modules/pypykatz/default.nix
+++ b/pkgs/development/python-modules/pypykatz/default.nix
@@ -11,11 +11,11 @@
buildPythonPackage rec {
pname = "pypykatz";
- version = "0.4.7";
+ version = "0.5.0";
src = fetchPypi {
inherit pname version;
- sha256 = "0il5sj47wyf9gn76alm8v1l63rqw2vsd27v6f7q1dpn0wq209syi";
+ sha256 = "sha256-1p8v4Qi0MNqMUpcErWnxveYu4d4N5BUBCDBsw1xX96I=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/pysmart-smartx/default.nix b/pkgs/development/python-modules/pysmart-smartx/default.nix
new file mode 100644
index 00000000000..66b789668a0
--- /dev/null
+++ b/pkgs/development/python-modules/pysmart-smartx/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, isPy3k
+, future
+, pytestCheckHook
+, mock
+}:
+
+buildPythonPackage rec {
+ pname = "pysmart-smartx";
+ version = "0.3.10";
+
+ src = fetchFromGitHub {
+ owner = "smartxworks";
+ repo = "pySMART";
+ rev = "v${version}";
+ sha256 = "1irl4nlgz3ds3aikraa9928gzn6hz8chfh7jnpmq2q7d2vqbdrjs";
+ };
+
+ propagatedBuildInputs = [ future ];
+
+ # tests require contextlib.nested
+ doCheck = !isPy3k;
+
+ checkInputs = [ pytestCheckHook mock ];
+
+ pythonImportsCheck = [ "pySMART" ];
+
+ meta = with lib; {
+ description = "It's a fork of pySMART with lots of bug fix and enhances";
+ homepage = "https://github.com/smartxworks/pySMART";
+ maintainers = with maintainers; [ rhoriguchi ];
+ license = licenses.gpl2Only;
+ };
+}
diff --git a/pkgs/development/python-modules/pysonos/default.nix b/pkgs/development/python-modules/pysonos/default.nix
index 704f3c44c4e..308dd4e7f25 100644
--- a/pkgs/development/python-modules/pysonos/default.nix
+++ b/pkgs/development/python-modules/pysonos/default.nix
@@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "pysonos";
- version = "0.0.40";
+ version = "0.0.43";
disabled = !isPy3k;
@@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "amelchio";
repo = pname;
rev = "v${version}";
- sha256 = "0a0c7jwv39nbvpdcx32sd8kjmj4nyrd7k0yxhpmxdnx4zr4vvzqg";
+ sha256 = "sha256-OobKlAymXXvQH6m77Uqn2eoTlWgs8EBxYIDFJ5wwMKA=";
};
propagatedBuildInputs = [ ifaddr requests xmltodict ];
diff --git a/pkgs/development/python-modules/pystray/default.nix b/pkgs/development/python-modules/pystray/default.nix
index c0ae2be9e7b..9b778f9e216 100644
--- a/pkgs/development/python-modules/pystray/default.nix
+++ b/pkgs/development/python-modules/pystray/default.nix
@@ -25,7 +25,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://github.com/moses-palmer/pystray";
description = "This library allows you to create a system tray icon";
- license = with licenses; [ gpl3Only lgpl3Only ];
+ license = with licenses; [ gpl3Plus lgpl3Plus ];
platforms = platforms.linux;
maintainers = with maintainers; [ jojosch ];
};
diff --git a/pkgs/development/python-modules/pytest-subprocess/default.nix b/pkgs/development/python-modules/pytest-subprocess/default.nix
index d0c54c1acfb..aeacd084eec 100644
--- a/pkgs/development/python-modules/pytest-subprocess/default.nix
+++ b/pkgs/development/python-modules/pytest-subprocess/default.nix
@@ -10,15 +10,15 @@
buildPythonPackage rec {
pname = "pytest-subprocess";
- version = "1.0.1";
+ version = "1.1.0";
- disabled = pythonOlder "3.4";
+ disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "aklajnert";
repo = "pytest-subprocess";
rev = version;
- sha256 = "16ghwyv1vy45dd9cysjvcvvpm45958x071id2qrvgaziy2j6yx3j";
+ sha256 = "sha256-r6WNDdvZAHMG1kPtLJlCwvhbVG1gC1NEvRfta+Chxnk=";
};
buildInputs = [
diff --git a/pkgs/development/python-modules/python-registry/default.nix b/pkgs/development/python-modules/python-registry/default.nix
new file mode 100644
index 00000000000..44795da8ddf
--- /dev/null
+++ b/pkgs/development/python-modules/python-registry/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, enum-compat
+, unicodecsv
+}:
+buildPythonPackage rec {
+ pname = "python-registry";
+ version = "1.3.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "99185f67d5601be3e7843e55902d5769aea1740869b0882f34ff1bd4b43b1eb2";
+ };
+
+ propagatedBuildInputs = [
+ enum-compat
+ unicodecsv
+ ];
+
+ # no tests
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "Registry"
+ ];
+
+ meta = with lib; {
+ description = "Pure Python parser for Windows Registry hives";
+ homepage = "https://github.com/williballenthin/python-registry";
+ license = licenses.asl20;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/pytube/default.nix b/pkgs/development/python-modules/pytube/default.nix
index 9f32da55ff1..8bcfa8b6c7d 100644
--- a/pkgs/development/python-modules/pytube/default.nix
+++ b/pkgs/development/python-modules/pytube/default.nix
@@ -7,7 +7,7 @@
buildPythonPackage rec {
pname = "pytube";
- version = "10.7.1";
+ version = "10.7.2";
disabled = pythonOlder "3.6";
@@ -15,7 +15,7 @@ buildPythonPackage rec {
owner = "pytube";
repo = "pytube";
rev = "v${version}";
- sha256 = "sha256-a9MYEQFJXfPXYkWiuZkjt/PGs73Dm5614/Xvv6Nn8RA=";
+ sha256 = "sha256-85pHzfQYyqwX8mQ5msIojM/0FSfeaC12KJw4mXmji3g=";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/pyvex/default.nix b/pkgs/development/python-modules/pyvex/default.nix
index 13c54f6a41e..566cd79b01c 100644
--- a/pkgs/development/python-modules/pyvex/default.nix
+++ b/pkgs/development/python-modules/pyvex/default.nix
@@ -2,20 +2,20 @@
, stdenv
, archinfo
, bitstring
-, fetchPypi
-, cffi
, buildPythonPackage
+, cffi
+, fetchPypi
, future
, pycparser
}:
buildPythonPackage rec {
pname = "pyvex";
- version = "9.0.5903";
+ version = "9.0.6790";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-qhLlRlmb48zhjX2u9w6TVVv2gb0E9kSapabiv+u4J2s=";
+ sha256 = "sha256-bqOLHGlLQ12nYzbv9H9nJ0/Q5APJb/9B82YtHk3IvYQ=";
};
propagatedBuildInputs = [
@@ -26,6 +26,10 @@ buildPythonPackage rec {
pycparser
];
+ preBuild = ''
+ export CC=${stdenv.cc.targetPrefix}cc
+ '';
+
# No tests are available on PyPI, GitHub release has tests
# Switch to GitHub release after all angr parts are present
doCheck = false;
diff --git a/pkgs/development/python-modules/pywemo/default.nix b/pkgs/development/python-modules/pywemo/default.nix
index 807d08cbc1e..ceb190fe753 100644
--- a/pkgs/development/python-modules/pywemo/default.nix
+++ b/pkgs/development/python-modules/pywemo/default.nix
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
+, fetchpatch
, ifaddr
, lxml
, poetry-core
@@ -24,6 +25,14 @@ buildPythonPackage rec {
sha256 = "1hm1vs6m65vqar0lcjnynz0d9y9ri5s75fzhvp0yfjkcnp06gnfa";
};
+ patches = [
+ (fetchpatch {
+ # https://github.com/pywemo/pywemo/issues/264
+ url = "https://github.com/pywemo/pywemo/commit/4fd7af8ccc7cb2412f61d5e04b79f83c9ca4753c.patch";
+ sha256 = "1x0rm5dxr0z5llmv446bx3i1wvgcfhx22zn78qblcr0m4yv3mif4";
+ })
+ ];
+
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
@@ -38,11 +47,6 @@ buildPythonPackage rec {
pytestCheckHook
];
- disabledTests = [
- # https://github.com/pywemo/pywemo/issues/264
- "test_rules_db_from_device"
- ];
-
pythonImportsCheck = [ "pywemo" ];
meta = with lib; {
diff --git a/pkgs/development/python-modules/pyxbe/default.nix b/pkgs/development/python-modules/pyxbe/default.nix
new file mode 100644
index 00000000000..4c101ccdc3f
--- /dev/null
+++ b/pkgs/development/python-modules/pyxbe/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "pyxbe";
+ version = "unstable-2021-01-10";
+
+ src = fetchFromGitHub {
+ owner = "mborgerson";
+ repo = pname;
+ rev = "a7ae1bb21b02a57783831eb080c1edbafaad1d5d";
+ sha256 = "1cp9a5f41z8j7bzip6nhka8qnxs12v75cdf80sk2nzgf1k15wi2p";
+ };
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ # Update location for run with pytest
+ preCheck = ''
+ substituteInPlace tests/test_load.py \
+ --replace "'xbefiles'" "'tests/xbefiles'"
+ '';
+
+ pythonImportsCheck = [ "xbe" ];
+
+ meta = with lib; {
+ description = "Library to work with XBE files";
+ homepage = "https://github.com/mborgerson/pyxbe";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/qiling/default.nix b/pkgs/development/python-modules/qiling/default.nix
new file mode 100644
index 00000000000..9513280f3cf
--- /dev/null
+++ b/pkgs/development/python-modules/qiling/default.nix
@@ -0,0 +1,45 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, capstone
+, unicorn
+, pefile
+, python-registry
+, keystone-engine
+, pyelftools
+, gevent
+}:
+buildPythonPackage rec {
+ pname = "qiling";
+ version = "1.2.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "e3ed09f9e080559e73e2a9199649b934b3594f653079d1e7da4992340c19eb64";
+ };
+
+ propagatedBuildInputs = [
+ capstone
+ unicorn
+ pefile
+ python-registry
+ keystone-engine
+ pyelftools
+ gevent
+ ];
+
+ # Tests are broken (attempt to import a file that tells you not to import it,
+ # amongst other things)
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "qiling"
+ ];
+
+ meta = with lib; {
+ description = "Qiling Advanced Binary Emulation Framework";
+ homepage = "https://qiling.io/";
+ license = licenses.gpl2Only;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/requirements-parser/default.nix b/pkgs/development/python-modules/requirements-parser/default.nix
new file mode 100644
index 00000000000..71cb33560e0
--- /dev/null
+++ b/pkgs/development/python-modules/requirements-parser/default.nix
@@ -0,0 +1,33 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, nose
+}:
+buildPythonPackage rec {
+ pname = "requirements-parser";
+ version = "0.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "5963ee895c2d05ae9f58d3fc641082fb38021618979d6a152b6b1398bd7d4ed4";
+ };
+
+ checkInputs = [
+ nose
+ ];
+
+ checkPhase = ''
+ nosetests
+ '';
+
+ pythonImportsCheck = [
+ "requirements"
+ ];
+
+ meta = with lib; {
+ description = "A Pip requirements file parser";
+ homepage = "https://github.com/davidfischer/requirements-parser";
+ license = licenses.bsd2;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/sagemaker/default.nix b/pkgs/development/python-modules/sagemaker/default.nix
index f0e7b6233dd..d227b7f8c65 100644
--- a/pkgs/development/python-modules/sagemaker/default.nix
+++ b/pkgs/development/python-modules/sagemaker/default.nix
@@ -15,11 +15,11 @@
buildPythonPackage rec {
pname = "sagemaker";
- version = "2.35.0";
+ version = "2.37.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-12YYUZbctM6oRaC7Sr/hOghAM+s/Cdm5XWHaVU5Gg6Q=";
+ sha256 = "sha256-96RDi32NHfhFvPeVRhG32EDQJTiwOXEwtSmFZGVBVk0=";
};
pythonImportsCheck = [
diff --git a/pkgs/development/python-modules/sanic/default.nix b/pkgs/development/python-modules/sanic/default.nix
index e5faa440ad8..29b517ee56e 100644
--- a/pkgs/development/python-modules/sanic/default.nix
+++ b/pkgs/development/python-modules/sanic/default.nix
@@ -45,7 +45,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A microframework based on uvloop, httptools, and learnings of flask";
- homepage = "http://github.com/channelcat/sanic/";
+ homepage = "https://github.com/channelcat/sanic/";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
diff --git a/pkgs/development/python-modules/scapy/default.nix b/pkgs/development/python-modules/scapy/default.nix
index 2b9eb5517a4..d412c94a4bc 100644
--- a/pkgs/development/python-modules/scapy/default.nix
+++ b/pkgs/development/python-modules/scapy/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "scapy";
- version = "2.4.4";
+ version = "2.4.5";
disabled = isPyPy;
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "secdev";
repo = "scapy";
rev = "v${version}";
- sha256 = "1wpx7gps3g8q5ykbfcd67mxwcs416zg37b53fwfzzlc1m58vhk3p";
+ sha256 = "0nxci1v32h5517gl9ic6zjq8gc8drwr0n5pz04c91yl97xznnw94";
};
postPatch = ''
@@ -44,6 +44,7 @@ buildPythonPackage rec {
patchShebangs .
.config/ci/test.sh
'';
+ pythonImportsCheck = [ "scapy" ];
meta = with lib; {
description = "A Python-based network packet manipulation program and library";
@@ -70,7 +71,7 @@ buildPythonPackage rec {
'';
homepage = "https://scapy.net/";
changelog = "https://github.com/secdev/scapy/releases/tag/v${version}";
- license = licenses.gpl2;
+ license = licenses.gpl2Only;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos bjornfor ];
};
diff --git a/pkgs/development/python-modules/slackclient/default.nix b/pkgs/development/python-modules/slackclient/default.nix
index 4a3c2927218..cf7b161261e 100644
--- a/pkgs/development/python-modules/slackclient/default.nix
+++ b/pkgs/development/python-modules/slackclient/default.nix
@@ -18,7 +18,7 @@
}:
buildPythonPackage rec {
- pname = "python-slackclient";
+ pname = "slackclient";
version = "2.9.3";
disabled = !isPy3k;
diff --git a/pkgs/development/python-modules/slob/default.nix b/pkgs/development/python-modules/slob/default.nix
index 0caec499a95..72af69e3e7c 100644
--- a/pkgs/development/python-modules/slob/default.nix
+++ b/pkgs/development/python-modules/slob/default.nix
@@ -8,14 +8,14 @@
buildPythonPackage {
pname = "slob";
- version = "unstable-2016-11-03";
+ version = "unstable-2020-06-26";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "itkach";
repo = "slob";
- rev = "d1ed71e4778729ecdfc2fe27ed783689a220a6cd";
- sha256 = "1r510s4r124s121wwdm9qgap6zivlqqxrhxljz8nx0kv0cdyypi5";
+ rev = "018588b59999c5c0eb42d6517fdb84036f3880cb";
+ sha256 = "01195hphjnlcvgykw143rf06s6y955sjc1r825a58vhjx7hj54zh";
};
propagatedBuildInputs = [ PyICU ];
@@ -24,11 +24,11 @@ buildPythonPackage {
${python.interpreter} -m unittest slob
'';
+ pythonImportsCheck = [ "slob" ];
+
meta = with lib; {
homepage = "https://github.com/itkach/slob/";
description = "Reference implementation of the slob (sorted list of blobs) format";
- license = licenses.gpl3;
- maintainers = [ maintainers.rycee ];
+ license = licenses.gpl3Only;
};
-
}
diff --git a/pkgs/development/python-modules/snapcast/default.nix b/pkgs/development/python-modules/snapcast/default.nix
index 702b0e3e365..95d162b7f32 100644
--- a/pkgs/development/python-modules/snapcast/default.nix
+++ b/pkgs/development/python-modules/snapcast/default.nix
@@ -1,24 +1,31 @@
{ lib
, buildPythonPackage
, construct
-, fetchPypi
+, fetchFromGitHub
, isPy3k
+, pytestCheckHook
}:
buildPythonPackage rec {
pname = "snapcast";
- version = "2.1.2";
+ version = "2.1.3";
disabled = !isPy3k;
- src = fetchPypi {
- inherit pname version;
- sha256 = "sha256-ILBleqxEO7wTxAw/fvDW+4O4H4XWV5m5WWtaNeRBr4g=";
+ src = fetchFromGitHub {
+ owner = "happyleavesaoc";
+ repo = "python-snapcast";
+ rev = version;
+ sha256 = "1jigdccdd7bffszim942mxcwxyznfjx7y3r5yklz3psl7zgbzd6c";
};
- propagatedBuildInputs = [ construct ];
+ propagatedBuildInputs = [
+ construct
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ ];
- # no checks from Pypi - https://github.com/happyleavesaoc/python-snapcast/issues/23
- doCheck = false;
pythonImportsCheck = [ "snapcast" ];
meta = with lib; {
diff --git a/pkgs/development/python-modules/sparklines/default.nix b/pkgs/development/python-modules/sparklines/default.nix
new file mode 100644
index 00000000000..9913cafdbc1
--- /dev/null
+++ b/pkgs/development/python-modules/sparklines/default.nix
@@ -0,0 +1,31 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, future
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "sparklines";
+ version = "0.4.2";
+
+ src = fetchFromGitHub {
+ owner = "deeplook";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1hfxp5c4wbyddy7fgmnda819w3dia3i6gqb2323dr2z016p84r7l";
+ };
+
+ propagatedBuildInputs = [ future ];
+
+ checkInputs = [ pytestCheckHook ];
+
+ pythonImportsCheck = [ "sparklines" ];
+
+ meta = with lib; {
+ description = "This Python package implements Edward Tufte's concept of sparklines, but limited to text only";
+ homepage = "https://github.com/deeplook/sparklines";
+ maintainers = with maintainers; [ rhoriguchi ];
+ license = licenses.gpl3Only;
+ };
+}
diff --git a/pkgs/development/python-modules/sphinx-material/default.nix b/pkgs/development/python-modules/sphinx-material/default.nix
new file mode 100644
index 00000000000..aa6dc0d6bf1
--- /dev/null
+++ b/pkgs/development/python-modules/sphinx-material/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, sphinx
+, beautifulsoup4
+, python-slugify
+, unidecode
+, css-html-js-minify
+, lxml
+}:
+
+buildPythonPackage rec {
+ pname = "sphinx-material";
+ version = "0.0.32";
+
+ src = fetchPypi {
+ pname = "sphinx_material";
+ inherit version;
+ sha256 = "ec02825a1bbe8b662fe624c11b87f1cd8d40875439b5b18c38649cf3366201fa";
+ };
+
+ propagatedBuildInputs = [
+ sphinx
+ beautifulsoup4
+ python-slugify
+ unidecode
+ css-html-js-minify
+ lxml
+ ];
+
+ doCheck = false; # no tests
+
+ pythonImportsCheck = [ "sphinx_material" ];
+
+ meta = with lib; {
+ description = "A material-based, responsive theme inspired by mkdocs-material";
+ homepage = "https://bashtage.github.io/sphinx-material";
+ license = licenses.mit;
+ maintainers = with maintainers; [ FlorianFranzen ];
+ };
+}
diff --git a/pkgs/development/python-modules/tailer/default.nix b/pkgs/development/python-modules/tailer/default.nix
new file mode 100644
index 00000000000..b8e19b7d97d
--- /dev/null
+++ b/pkgs/development/python-modules/tailer/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, python
+}:
+
+buildPythonPackage rec {
+ pname = "tailer";
+ version = "0.4.1";
+
+ src = fetchFromGitHub {
+ owner = "six8";
+ repo = "pytailer";
+ rev = version;
+ sha256 = "1s5p5m3q9k7r1m0wx5wcxf20xzs0rj14qwg1ydwhf6adr17y2w5y";
+ };
+
+ checkPhase = ''
+ runHook preCheck
+ ${python.interpreter} -m doctest -v src/tailer/__init__.py
+ runHook postCheck
+ '';
+
+ pythonImportsCheck = [ "tailer" ];
+
+ meta = with lib; {
+ description = "Python implementation implementation of GNU tail and head";
+ homepage = "https://github.com/six8/pytailer";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/telfhash/default.nix b/pkgs/development/python-modules/telfhash/default.nix
new file mode 100644
index 00000000000..a7aca8866ed
--- /dev/null
+++ b/pkgs/development/python-modules/telfhash/default.nix
@@ -0,0 +1,49 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, capstone
+, pyelftools
+, tlsh
+, nose
+}:
+buildPythonPackage {
+ pname = "telfhash";
+ version = "unstable-2021-01-29";
+
+ src = fetchFromGitHub {
+ owner = "trendmicro";
+ repo = "telfhash";
+ rev = "b5e398e59dc25a56a28861751c1fccc74ef71617";
+ sha256 = "jNu6qm8Q/UyJVaCqwFOPX02xAR5DwvCK3PaH6Fvmakk=";
+ };
+
+ # The tlsh library's name is just "tlsh"
+ postPatch = ''
+ substituteInPlace requirements.txt --replace "python-tlsh" "tlsh"
+ '';
+
+ propagatedBuildInputs = [
+ capstone
+ pyelftools
+ tlsh
+ ];
+
+ checkInputs = [
+ nose
+ ];
+
+ checkPhase = ''
+ nosetests
+ '';
+
+ pythonImportsCheck = [
+ "telfhash"
+ ];
+
+ meta = with lib; {
+ description = "Symbol hash for ELF files";
+ homepage = "https://github.com/trendmicro/telfhash";
+ license = licenses.asl20;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/tensorflow/bin.nix b/pkgs/development/python-modules/tensorflow/bin.nix
index ef6d4f45ef9..7b9cbf1f990 100644
--- a/pkgs/development/python-modules/tensorflow/bin.nix
+++ b/pkgs/development/python-modules/tensorflow/bin.nix
@@ -96,10 +96,19 @@ in buildPythonPackage {
# Unpack the wheel file.
wheel unpack --dest unpacked ./*.whl
- # Tensorflow has a hard dependency on gast==0.2.2, but we relax it to
- # gast==0.3.2.
- substituteInPlace ./unpacked/tensorflow*/tensorflow_core/tools/pip_package/setup.py --replace "gast == 0.2.2" "gast == 0.3.2"
- substituteInPlace ./unpacked/tensorflow*/tensorflow_*.dist-info/METADATA --replace "gast (==0.2.2)" "gast (==0.3.2)"
+ # Tensorflow wheels tightly constrain the versions of gast, tensorflow-estimator and scipy.
+ # This code relaxes these requirements:
+ substituteInPlace ./unpacked/tensorflow*/tensorflow_core/tools/pip_package/setup.py \
+ --replace "tensorflow_estimator >= 2.1.0rc0, < 2.2.0" "tensorflow_estimator" \
+ --replace "tensorboard >= 2.1.0, < 2.2.0" "tensorboard" \
+ --replace "gast == 0.2.2" "gast" \
+ --replace "scipy == 1.2.2" "scipy"
+
+ substituteInPlace ./unpacked/tensorflow*/tensorflow*.dist-info/METADATA \
+ --replace "gast (==0.2.2)" "gast" \
+ --replace "tensorflow-estimator (<2.2.0,>=2.1.0rc0)" "tensorflow_estimator" \
+ --replace "tensorboard (<2.2.0,>=2.1.0)" "tensorboard" \
+ --replace "scipy (==1.4.1)" "scipy"
# Pack the wheel file back up.
wheel pack ./unpacked/tensorflow*
diff --git a/pkgs/development/python-modules/tern/default.nix b/pkgs/development/python-modules/tern/default.nix
new file mode 100644
index 00000000000..6247087dd67
--- /dev/null
+++ b/pkgs/development/python-modules/tern/default.nix
@@ -0,0 +1,59 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pyyaml
+, docker
+, dockerfile-parse
+, requests
+, stevedore
+, pbr
+, debut
+, regex
+, GitPython
+, prettytable
+, idna
+}:
+buildPythonPackage rec {
+ pname = "tern";
+ version = "2.5.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "606c62944991b2cbcccf3f5353be693305d6d7d318c3865b9ecca49dbeab2727";
+ };
+
+ preBuild = ''
+ cp requirements.{in,txt}
+ '';
+
+ nativeBuildInputs = [
+ pbr
+ ];
+
+ propagatedBuildInputs = [
+ pyyaml
+ docker
+ dockerfile-parse
+ requests
+ stevedore
+ debut
+ regex
+ GitPython
+ prettytable
+ idna
+ ];
+
+ # No tests
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "tern"
+ ];
+
+ meta = with lib; {
+ description = "A software composition analysis tool and Python library that generates a Software Bill of Materials for container images and Dockerfiles";
+ homepage = "https://github.com/tern-tools/tern";
+ license = licenses.bsd2;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/unify/default.nix b/pkgs/development/python-modules/unify/default.nix
new file mode 100644
index 00000000000..a1061ad9df9
--- /dev/null
+++ b/pkgs/development/python-modules/unify/default.nix
@@ -0,0 +1,30 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, untokenize
+, python
+}:
+
+buildPythonPackage rec {
+ pname = "unify";
+ version = "0.5";
+
+ # PyPi release is missing tests (see https://github.com/myint/unify/pull/18)
+ src = fetchFromGitHub {
+ owner = "myint";
+ repo = "unify";
+ rev = "v${version}";
+ sha256 = "1l6xxygaigacsxf0g5f7w5gpqha1ava6mcns81kqqy6vw91pyrbi";
+ };
+
+ propagatedBuildInputs = [ untokenize ];
+
+ checkPhase = "${python.interpreter} -m unittest discover";
+
+ meta = with lib; {
+ description = "Modifies strings to all use the same quote where possible";
+ homepage = "https://github.com/myint/unify";
+ license = licenses.mit;
+ maintainers = with maintainers; [ FlorianFranzen ];
+ };
+}
diff --git a/pkgs/development/python-modules/untokenize/default.nix b/pkgs/development/python-modules/untokenize/default.nix
new file mode 100644
index 00000000000..55becfeac4e
--- /dev/null
+++ b/pkgs/development/python-modules/untokenize/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, python
+}:
+
+buildPythonPackage rec {
+ pname = "untokenize";
+ version = "0.1.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "3865dbbbb8efb4bb5eaa72f1be7f3e0be00ea8b7f125c69cbd1f5fda926f37a2";
+ };
+
+ checkPhase = "${python.interpreter} -m unittest discover";
+
+ meta = with lib; {
+ description = "Transforms tokens into original source code while preserving whitespace";
+ homepage = "https://github.com/myint/untokenize";
+ license = licenses.mit;
+ maintainers = with maintainers; [ FlorianFranzen ];
+ };
+}
diff --git a/pkgs/development/python-modules/viv-utils/default.nix b/pkgs/development/python-modules/viv-utils/default.nix
new file mode 100644
index 00000000000..e94c96f72b0
--- /dev/null
+++ b/pkgs/development/python-modules/viv-utils/default.nix
@@ -0,0 +1,49 @@
+{ lib
+, buildPythonPackage
+, isPy3k
+, fetchFromGitHub
+, funcy
+, pefile
+, vivisect
+, intervaltree
+, setuptools
+}:
+buildPythonPackage rec {
+ pname = "viv-utils";
+ version = "0.3.17";
+ disabled = isPy3k;
+
+ src = fetchFromGitHub {
+ owner = "williballenthin";
+ repo = "viv-utils";
+ rev = "v${version}";
+ sha256 = "wZWp6PMn1to/jP6lzlY/x0IhS/0w0Ys7AdklNQ+Vmyc=";
+ };
+
+ # argparse is provided by Python itself
+ preBuild = ''
+ sed '/"argparse",/d' -i setup.py
+ '';
+
+ propagatedBuildInputs = [
+ funcy
+ pefile
+ vivisect
+ intervaltree
+ setuptools
+ ];
+
+ # no tests
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "viv_utils"
+ ];
+
+ meta = with lib; {
+ description = "Utilities for working with vivisect";
+ homepage = "https://github.com/williballenthin/viv-utils";
+ license = licenses.asl20;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/vivisect/default.nix b/pkgs/development/python-modules/vivisect/default.nix
new file mode 100644
index 00000000000..0d86f2ffbd9
--- /dev/null
+++ b/pkgs/development/python-modules/vivisect/default.nix
@@ -0,0 +1,46 @@
+{ lib
+, buildPythonPackage
+, isPy3k
+, fetchPypi
+, pyasn1
+, pyasn1-modules
+, cxxfilt
+, msgpack
+, pycparser
+}:
+buildPythonPackage rec {
+ pname = "vivisect";
+ version = "0.1.0";
+ disabled = isPy3k;
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "ed5e8c24684841d30dc7b41f2bee87c0198816a453417ae2e130b7845ccb2629";
+ };
+
+ propagatedBuildInputs = [
+ pyasn1
+ pyasn1-modules
+ cxxfilt
+ msgpack
+ pycparser
+ ];
+
+ preBuild = ''
+ sed "s@==.*'@'@" -i setup.py
+ '';
+
+ # requires another repo for test files
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "vivisect"
+ ];
+
+ meta = with lib; {
+ description = "Pure python disassembler, debugger, emulator, and static analysis framework";
+ homepage = "https://github.com/vivisect/vivisect";
+ license = licenses.asl20;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/whois/default.nix b/pkgs/development/python-modules/whois/default.nix
index 759bc0cd8ee..ef69283e6db 100644
--- a/pkgs/development/python-modules/whois/default.nix
+++ b/pkgs/development/python-modules/whois/default.nix
@@ -1,19 +1,18 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
-, pytestCheckHook
, inetutils
}:
buildPythonPackage rec {
pname = "whois";
- version = "0.9.7";
+ version = "0.9.13";
src = fetchFromGitHub {
owner = "DannyCork";
repo = "python-whois";
rev = version;
- sha256 = "1rbc4xif4dn455vc8dhxdvwszrb0nik5q9fy12db6mxfx6zikb7z";
+ sha256 = "0y2sfs6nkr2j2crrn81wkfdzn9aphb3iaddya5zd2midlgdqq7bw";
};
# whois is needed
diff --git a/pkgs/development/python-modules/woodblock/default.nix b/pkgs/development/python-modules/woodblock/default.nix
new file mode 100644
index 00000000000..7497ad15489
--- /dev/null
+++ b/pkgs/development/python-modules/woodblock/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, click
+, multimethod
+, numpy
+}:
+buildPythonPackage rec {
+ pname = "woodblock";
+ version = "0.1.7";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "c0347ece920b7009d94551983a01f42db02920ca8d7b0ff36d24a337e2c937f7";
+ };
+
+ propagatedBuildInputs = [
+ click
+ multimethod
+ numpy
+ ];
+
+ # no tests
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "woodblock"
+ ];
+
+ meta = with lib; {
+ description = "A framework to generate file carving test data";
+ homepage = "https://github.com/fkie-cad/woodblock";
+ license = licenses.mit;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/development/python-modules/yeelight/default.nix b/pkgs/development/python-modules/yeelight/default.nix
index 85b282566ee..9d435c1cce6 100644
--- a/pkgs/development/python-modules/yeelight/default.nix
+++ b/pkgs/development/python-modules/yeelight/default.nix
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "yeelight";
- version = "0.6.0";
+ version = "0.6.1";
disabled = pythonOlder "3.4";
src = fetchFromGitLab {
owner = "stavros";
repo = "python-yeelight";
rev = "v${version}";
- sha256 = "0yycc2pdqaa9y46jycvm0p6braps7ljg2vvljngdqj2l1a2jmv7x";
+ sha256 = "sha256-LB7A8E22hyqhVBElrOwtC3IPNkyQkU7ZJ1ScqaXQ6zs=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/zwave-js-server-python/default.nix b/pkgs/development/python-modules/zwave-js-server-python/default.nix
new file mode 100644
index 00000000000..61dba04a79e
--- /dev/null
+++ b/pkgs/development/python-modules/zwave-js-server-python/default.nix
@@ -0,0 +1,40 @@
+{ lib
+, aiohttp
+, buildPythonPackage
+, fetchFromGitHub
+, pytest-aiohttp
+, pytestCheckHook
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "zwave-js-server-python";
+ version = "0.23.1";
+ disabled = pythonOlder "3.8";
+
+
+ src = fetchFromGitHub {
+ owner = "home-assistant-libs";
+ repo = pname;
+ rev = version;
+ sha256 = "0kmmhn357k22ana0ysd8jlz1fyfaqlc8k74ryaik0rrw7nmn1n11";
+ };
+
+ propagatedBuildInputs = [
+ aiohttp
+ ];
+
+ checkInputs = [
+ pytest-aiohttp
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [ "zwave_js_server" ];
+
+ meta = with lib; {
+ description = "Python wrapper for zwave-js-server";
+ homepage = "https://github.com/home-assistant-libs/zwave-js-server-python";
+ license = with licenses; [ asl20 ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix
index 99c535fa338..d0d67bff21d 100644
--- a/pkgs/development/ruby-modules/gem-config/default.nix
+++ b/pkgs/development/ruby-modules/gem-config/default.nix
@@ -20,12 +20,13 @@
{ lib, fetchurl, writeScript, ruby, libkrb5, libxml2, libxslt, python, stdenv, which
, libiconv, postgresql, v8, clang, sqlite, zlib, imagemagick, lasem
, pkg-config , ncurses, xapian, gpgme, util-linux, tzdata, icu, libffi
-, cmake, libssh2, openssl, libmysqlclient, darwin, git, perl, pcre, gecode_3, curl
+, cmake, libssh2, openssl, libmysqlclient, git, perl, pcre, gecode_3, curl
, msgpack, libsodium, snappy, libossp_uuid, lxc, libpcap, xorg, gtk2, buildRubyGem
, 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, binutils, freetds, wrapGAppsHook, atk
-, bundler, libsass, libselinux ? null, libsepol ? null, shared-mime-info
+, bundler, libsass, libselinux, libsepol, shared-mime-info, libthai, libdatrie
+, CoreServices, DarwinTools, cctools
}@args:
let
@@ -41,7 +42,8 @@ in
{
atk = attrs: {
dependencies = attrs.dependencies ++ [ "gobject-introspection" ];
- nativeBuildInputs = [ rake bundler pkg-config ];
+ nativeBuildInputs = [ rake bundler pkg-config ]
+ ++ lib.optionals stdenv.isDarwin [ DarwinTools ];
propagatedBuildInputs = [ gobject-introspection wrapGAppsHook atk ];
};
@@ -61,12 +63,14 @@ in
};
cairo = attrs: {
- nativeBuildInputs = [ pkg-config ];
+ nativeBuildInputs = [ pkg-config ]
+ ++ lib.optionals stdenv.isDarwin [ DarwinTools ];
buildInputs = [ gtk2 pcre xorg.libpthreadstubs xorg.libXdmcp];
};
cairo-gobject = attrs: {
- nativeBuildInputs = [ pkg-config ];
+ nativeBuildInputs = [ pkg-config ]
+ ++ lib.optionals stdenv.isDarwin [ DarwinTools ];
buildInputs = [ cairo pcre xorg.libpthreadstubs xorg.libXdmcp ];
};
@@ -189,7 +193,8 @@ in
};
gdk_pixbuf2 = attrs: {
- nativeBuildInputs = [ pkg-config bundler rake ];
+ nativeBuildInputs = [ pkg-config bundler rake ]
+ ++ lib.optionals stdenv.isDarwin [ DarwinTools ];
propagatedBuildInputs = [ gobject-introspection wrapGAppsHook gdk-pixbuf ];
};
@@ -199,7 +204,8 @@ in
};
gio2 = attrs: {
- nativeBuildInputs = [ pkg-config ];
+ nativeBuildInputs = [ pkg-config ]
+ ++ lib.optionals stdenv.isDarwin [ DarwinTools ];
buildInputs = [ gtk2 pcre gobject-introspection ] ++ lib.optionals stdenv.isLinux [ util-linux libselinux libsepol ];
};
@@ -235,7 +241,8 @@ in
};
glib2 = attrs: {
- nativeBuildInputs = [ pkg-config ];
+ nativeBuildInputs = [ pkg-config ]
+ ++ lib.optionals stdenv.isDarwin [ DarwinTools ];
buildInputs = [ gtk2 pcre ];
};
@@ -244,7 +251,7 @@ in
binutils pkg-config
] ++ lib.optionals stdenv.isLinux [
util-linux libselinux libsepol
- ];
+ ] ++ lib.optionals stdenv.isDarwin [ DarwinTools ];
propagatedBuildInputs = [
atk
gdk-pixbuf
@@ -252,16 +259,18 @@ in
gobject-introspection
gtk2
harfbuzz
+ libdatrie
+ libthai
pcre
xorg.libpthreadstubs
xorg.libXdmcp
];
- # CFLAGS must be set for this gem to detect gdkkeysyms.h correctly
- # CFLAGS = "-I${gtk2.dev}/include/gtk-2.0 -I/non-existent-path";
+ dontStrip = stdenv.isDarwin;
};
gobject-introspection = attrs: {
- nativeBuildInputs = [ pkg-config pcre ];
+ nativeBuildInputs = [ pkg-config pcre ]
+ ++ lib.optionals stdenv.isDarwin [ DarwinTools ];
propagatedBuildInputs = [ gobject-introspection wrapGAppsHook glib ];
};
@@ -287,9 +296,7 @@ in
};
hitimes = attrs: {
- buildInputs =
- lib.optionals stdenv.isDarwin
- [ darwin.apple_sdk.frameworks.CoreServices ];
+ buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
};
iconv = attrs: {
@@ -453,7 +460,9 @@ in
pcre
xorg.libpthreadstubs
xorg.libXdmcp
- ];
+ ] ++ lib.optionals stdenv.isDarwin [ DarwinTools ];
+ buildInputs = [ libdatrie libthai ]
+ ++ lib.optionals stdenv.isLinux [ libselinux libsepol util-linux ];
propagatedBuildInputs = [ gobject-introspection wrapGAppsHook gtk2 ];
};
@@ -661,7 +670,7 @@ in
};
zookeeper = attrs: {
- buildInputs = lib.optionals stdenv.isDarwin [ darwin.cctools ];
+ buildInputs = lib.optionals stdenv.isDarwin [ cctools ];
dontBuild = false;
postPatch = ''
sed -i ext/extconf.rb -e "4a \
diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix
index aa3ba723cf4..8c8ea1a5ffc 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.148.0";
+ version = "0.149.0";
src = fetchFromGitHub {
owner = "facebook";
repo = "flow";
rev = "refs/tags/v${version}";
- sha256 = "sha256-DPHDuTBCsRq+u5kYHwImIXPxq04kW2HiqYsxJrun6n8=";
+ sha256 = "sha256-/pNCEsCKfYh/jo+3x7usRyPNBRJB4gDu2TAgosSw37c=";
};
installPhase = ''
diff --git a/pkgs/development/tools/analysis/radare2/default.nix b/pkgs/development/tools/analysis/radare2/default.nix
index 1622c616860..e59c48f91d3 100644
--- a/pkgs/development/tools/analysis/radare2/default.nix
+++ b/pkgs/development/tools/analysis/radare2/default.nix
@@ -19,67 +19,38 @@
, python3
, ruby
, lua
+, capstone
, useX11 ? false
, rubyBindings ? false
, pythonBindings ? false
, luaBindings ? false
}:
-let
- inherit (lib) optional;
-
- #
- # DO NOT EDIT! Automatically generated by ./update.py
- gittap = "5.1.1";
- gittip = "a86f8077fc148abd6443384362a3717cd4310e64";
- rev = "5.1.1";
- version = "5.1.1";
- sha256 = "0hv9x31iabasj12g8f04incr1rbcdkxi3xnqn3ggp8gl4h6pf2f3";
- cs_ver = "4.0.2";
- cs_sha256 = "0y5g74yjyliciawpn16zhdwya7bd3d7b1cccpcccc2wg8vni1k2w";
- #
-in
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "radare2";
- inherit version;
+ version = "5.2.1";
src = fetchFromGitHub {
owner = "radare";
repo = "radare2";
- inherit rev sha256;
+ rev = version;
+ sha256 = "0n3k190qjhdlj10fjqijx6ismz0g7fk28i83j0480cxdqgmmlbxc";
};
- postPatch =
- let
- capstone = fetchFromGitHub {
- owner = "aquynh";
- repo = "capstone";
- # version from $sourceRoot/shlr/Makefile
- rev = cs_ver;
- sha256 = cs_sha256;
- };
- in
- ''
- mkdir -p build/shlr
- cp -r ${capstone} capstone-${cs_ver}
- chmod -R +w capstone-${cs_ver}
- tar -czvf shlr/capstone-${cs_ver}.tar.gz capstone-${cs_ver}
- '';
-
postInstall = ''
install -D -m755 $src/binr/r2pm/r2pm $out/bin/r2pm
'';
WITHOUT_PULL = "1";
makeFlags = [
- "GITTAP=${gittap}"
- "GITTIP=${gittip}"
+ "GITTAP=${version}"
"RANLIB=${stdenv.cc.bintools.bintools}/bin/${stdenv.cc.bintools.targetPrefix}ranlib"
];
configureFlags = [
"--with-sysmagic"
"--with-syszip"
"--with-sysxxhash"
+ "--with-syscapstone"
"--with-openssl"
];
@@ -87,11 +58,20 @@ stdenv.mkDerivation {
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ pkg-config ];
- buildInputs = [ file readline libusb-compat-0_1 libewf perl zlib openssl libuv ]
- ++ optional useX11 [ gtkdialog vte gtk2 ]
- ++ optional rubyBindings [ ruby ]
- ++ optional pythonBindings [ python3 ]
- ++ optional luaBindings [ lua ];
+ buildInputs = [
+ capstone
+ file
+ readline
+ libusb-compat-0_1
+ libewf
+ perl
+ zlib
+ openssl
+ libuv
+ ] ++ lib.optional useX11 [ gtkdialog vte gtk2 ]
+ ++ lib.optional rubyBindings [ ruby ]
+ ++ lib.optional pythonBindings [ python3 ]
+ ++ lib.optional luaBindings [ lua ];
propagatedBuildInputs = [
# radare2 exposes r_lib which depends on these libraries
diff --git a/pkgs/development/tools/analysis/radare2/update.py b/pkgs/development/tools/analysis/radare2/update.py
deleted file mode 100755
index ede0a6058a9..00000000000
--- a/pkgs/development/tools/analysis/radare2/update.py
+++ /dev/null
@@ -1,121 +0,0 @@
-#!/usr/bin/env nix-shell
-#!nix-shell -p nix -p python3 -p git -i python
-# USAGE - just run the script: ./update.py
-# When editing this file, make also sure it passes the mypy typecheck
-# and is formatted with black.
-import fileinput
-import json
-import xml.etree.ElementTree as ET
-from urllib.parse import urlparse
-import re
-import subprocess
-import tempfile
-import urllib.request
-from datetime import datetime
-from pathlib import Path
-from typing import Dict
-
-SCRIPT_DIR = Path(__file__).parent.resolve()
-
-
-def sh(*args: str) -> str:
- out = subprocess.check_output(list(args))
- return out.strip().decode("utf-8")
-
-
-def prefetch_github(owner: str, repo: str, ref: str) -> str:
- return sh(
- "nix-prefetch-url",
- "--unpack",
- f"https://github.com/{owner}/{repo}/archive/{ref}.tar.gz",
- )
-
-
-def get_radare2_rev() -> str:
- feed_url = "http://github.com/radareorg/radare2/releases.atom"
- with urllib.request.urlopen(feed_url) as resp:
- tree = ET.fromstring(resp.read())
- releases = tree.findall(".//{http://www.w3.org/2005/Atom}entry")
- for release in releases:
- link = release.find("{http://www.w3.org/2005/Atom}link")
- assert link is not None
- url = urlparse(link.attrib["href"])
- tag = url.path.split("/")[-1]
- if re.match(r"[0-9.]+", tag):
- return tag
- else:
- print(f"ignore {tag}")
- raise RuntimeError(f"No release found at {feed_url}")
-
-
-def git(dirname: str, *args: str) -> str:
- return sh("git", "-C", dirname, *args)
-
-
-def get_repo_info(dirname: str, rev: str) -> Dict[str, str]:
- sha256 = prefetch_github("radare", "radare2", rev)
-
- cs_ver = None
- with open(Path(dirname).joinpath("shlr", "Makefile")) as makefile:
- for l in makefile:
- match = re.match("CS_VER=(\S+)", l)
- if match:
- cs_ver = match.group(1)
- assert cs_ver is not None
-
- cs_sha256 = prefetch_github("aquynh", "capstone", cs_ver)
-
- return dict(
- rev=rev,
- sha256=sha256,
- version_commit=git(dirname, "rev-list", "--all", "--count"),
- gittap=git(dirname, "describe", "--tags", "--match", "[0-9]*"),
- gittip=git(dirname, "rev-parse", "HEAD"),
- cs_ver=cs_ver,
- cs_sha256=cs_sha256,
- )
-
-
-def main() -> None:
- version = get_radare2_rev()
-
- with tempfile.TemporaryDirectory() as dirname:
- git(
- dirname,
- "clone",
- "--branch",
- version,
- "https://github.com/radare/radare2",
- ".",
- )
- nix_file = str(SCRIPT_DIR.joinpath("default.nix"))
-
- info = get_repo_info(dirname, version)
-
- timestamp = git(dirname, "log", "-n1", "--format=%at")
-
- in_block = False
- with fileinput.FileInput(nix_file, inplace=True) as f:
- for l in f:
- if "#" in l:
- in_block = True
- print(
- f""" #
- # DO NOT EDIT! Automatically generated by ./update.py
- gittap = "{info["gittap"]}";
- gittip = "{info["gittip"]}";
- rev = "{info["rev"]}";
- version = "{version}";
- sha256 = "{info["sha256"]}";
- cs_ver = "{info["cs_ver"]}";
- cs_sha256 = "{info["cs_sha256"]}";
- #"""
- )
- elif "#" in l:
- in_block = False
- elif not in_block:
- print(l, end="")
-
-
-if __name__ == "__main__":
- main()
diff --git a/pkgs/development/tools/analysis/spin/default.nix b/pkgs/development/tools/analysis/spin/default.nix
index 58bb58fa2b0..5f0c7bffe94 100644
--- a/pkgs/development/tools/analysis/spin/default.nix
+++ b/pkgs/development/tools/analysis/spin/default.nix
@@ -38,9 +38,9 @@ in stdenv.mkDerivation rec {
meta = with lib; {
description = "Formal verification tool for distributed software systems";
- homepage = "http://spinroot.com/";
+ homepage = "https://spinroot.com/";
license = licenses.free;
- platforms = platforms.linux;
+ platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ pSub ];
};
}
diff --git a/pkgs/development/tools/analysis/tflint/default.nix b/pkgs/development/tools/analysis/tflint/default.nix
index c8ae231dea8..d52ac500e80 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.26.0";
+ version = "0.27.0";
src = fetchFromGitHub {
owner = "terraform-linters";
repo = pname;
rev = "v${version}";
- sha256 = "054g0lr0r1xzbss4b4j9ixkls9p1llmw61afib1381z4k0lvzgwn";
+ sha256 = "1s49a3yihfkd8ib336a29ch53mpcyxzicglss7bqmqapv6zi37dg";
};
- vendorSha256 = "0j2avkhyq6vz6113lkf004d4hysygc6iw78v70z98s6m15mg9imn";
+ vendorSha256 = "1w72n1sprwylaj96aj03h4qq43525q15iwb6vf23gf6913zhvqy3";
doCheck = false;
diff --git a/pkgs/development/tools/azcopy/default.nix b/pkgs/development/tools/azcopy/default.nix
index 6b94ed0a93f..0be3f5c0b7e 100644
--- a/pkgs/development/tools/azcopy/default.nix
+++ b/pkgs/development/tools/azcopy/default.nix
@@ -2,18 +2,18 @@
buildGoModule rec {
pname = "azure-storage-azcopy";
- version = "10.9.0";
+ version = "10.10.0";
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-storage-azcopy";
rev = "v${version}";
- sha256 = "sha256-IVbvBqp/7Y3La0pP6gbWl0ATfEvkCuR4J9ChTDPNhB0=";
+ sha256 = "sha256-gWU219QlV+24RxnTHqQzQeGZHzVwmBXNKU+3QI6WvHI=";
};
subPackages = [ "." ];
- vendorSha256 = "sha256-mj1TvNuFFPJGAJCBTQtU5WWPhHbiXUxRiMZQ/XvEy0U=";
+ vendorSha256 = "sha256-d965Rt8W74bsIZAZPZLe3twuUpp4wrnNc0qwjsKikOE=";
doCheck = false;
diff --git a/pkgs/development/tools/build-managers/buck/default.nix b/pkgs/development/tools/build-managers/buck/default.nix
index 0fbcb95704b..c275d5bc30a 100644
--- a/pkgs/development/tools/build-managers/buck/default.nix
+++ b/pkgs/development/tools/build-managers/buck/default.nix
@@ -1,14 +1,14 @@
-{ lib, stdenv, fetchFromGitHub, jdk, ant, python2, python2Packages, watchman, bash, makeWrapper }:
+{ lib, stdenv, fetchFromGitHub, jdk11, ant, python3, watchman, bash, makeWrapper }:
stdenv.mkDerivation rec {
pname = "buck";
- version = "2019.10.17.01";
+ version = "2021.01.12.01";
src = fetchFromGitHub {
owner = "facebook";
repo = pname;
rev = "v${version}";
- sha256 = "1irgp8yq1z11bq3b83yxvj35wqqq7y7b8q4d4y0hc05ac19ja0vj";
+ sha256 = "sha256-NFiMQ+cG93R10LlkfUMzZ4TnV0uO5G+8S5TiMI6hU5o=";
};
patches = [ ./pex-mtime.patch ];
@@ -17,20 +17,21 @@ stdenv.mkDerivation rec {
grep -l -r '/bin/bash' --null | xargs -0 sed -i -e "s!/bin/bash!${bash}/bin/bash!g"
'';
- buildInputs = [ jdk ant python2 watchman python2Packages.pywatchman ];
- nativeBuildInputs = [ makeWrapper ];
+ nativeBuildInputs = [ makeWrapper python3 jdk11 ant watchman ];
buildPhase = ''
+ # Set correct version, see https://github.com/facebook/buck/issues/2607
+ echo v${version} > .buckrelease
+
ant
PYTHONDONTWRITEBYTECODE=true ./bin/buck build -c buck.release_version=${version} buck
'';
installPhase = ''
- install -D -m755 buck-out/gen/programs/buck.pex $out/bin/buck
+ install -D -m755 buck-out/gen/*/programs/buck.pex $out/bin/buck
wrapProgram $out/bin/buck \
- --prefix PYTHONPATH : $PYTHONPATH \
- --prefix PATH : "${lib.makeBinPath [jdk watchman]}"
+ --prefix PATH : "${lib.makeBinPath [ jdk11 watchman python3 ]}"
'';
meta = with lib; {
diff --git a/pkgs/development/tools/build-managers/remake/default.nix b/pkgs/development/tools/build-managers/remake/default.nix
index f61a7e77458..dc3920d1747 100644
--- a/pkgs/development/tools/build-managers/remake/default.nix
+++ b/pkgs/development/tools/build-managers/remake/default.nix
@@ -1,27 +1,40 @@
-{ lib, stdenv, fetchurl, readline }:
+{ lib
+, stdenv
+, fetchurl
+, pkg-config
+, readline
+, guileSupport ? false
+, guile
+}:
stdenv.mkDerivation rec {
pname = "remake";
- remakeVersion = "4.1";
- dbgVersion = "1.1";
+ remakeVersion = "4.3";
+ dbgVersion = "1.5";
version = "${remakeVersion}+dbg-${dbgVersion}";
src = fetchurl {
- url = "mirror://sourceforge/project/bashdb/remake/${version}/remake-${remakeVersion}+dbg${dbgVersion}.tar.bz2";
- sha256 = "1zi16pl7sqn1aa8b7zqm9qnd9vjqyfywqm8s6iap4clf86l7kss2";
+ url = "mirror://sourceforge/project/bashdb/remake/${version}/remake-${remakeVersion}+dbg-${dbgVersion}.tar.gz";
+ sha256 = "0xlx2485y0israv2pfghmv74lxcv9i5y65agy69mif76yc4vfvif";
};
patches = [
./glibc-2.27-glob.patch
];
- buildInputs = [ readline ];
+ nativeBuildInputs = [
+ pkg-config
+ ];
+ buildInputs = [ readline ]
+ ++ lib.optionals guileSupport [ guile ];
+
+ # make check fails, see https://github.com/rocky/remake/issues/117
meta = {
homepage = "http://bashdb.sourceforge.net/remake/";
- license = lib.licenses.gpl3;
+ license = lib.licenses.gpl3Plus;
description = "GNU Make with comprehensible tracing and a debugger";
platforms = with lib.platforms; linux ++ darwin;
- maintainers = with lib.maintainers; [ bjornfor ];
+ maintainers = with lib.maintainers; [ bjornfor shamilton ];
};
}
diff --git a/pkgs/development/tools/build-managers/tup/default.nix b/pkgs/development/tools/build-managers/tup/default.nix
index f0e6efdca3e..85bf919f778 100644
--- a/pkgs/development/tools/build-managers/tup/default.nix
+++ b/pkgs/development/tools/build-managers/tup/default.nix
@@ -1,6 +1,8 @@
-{ lib, stdenv, fetchFromGitHub, fuse3, pkg-config, pcre }:
+{ lib, stdenv, fetchFromGitHub, fuse3, macfuse-stubs, pkg-config, pcre }:
-stdenv.mkDerivation rec {
+let
+ fuse = if stdenv.isDarwin then macfuse-stubs else fuse3;
+in stdenv.mkDerivation rec {
pname = "tup";
version = "0.7.10";
outputs = [ "bin" "man" "out" ];
@@ -13,7 +15,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config ];
- buildInputs = [ fuse3 pcre ];
+ buildInputs = [ fuse pcre ];
configurePhase = ''
sed -i 's/`git describe`/v${version}/g' src/tup/link.sh
@@ -50,6 +52,13 @@ stdenv.mkDerivation rec {
homepage = "http://gittup.org/tup/";
license = licenses.gpl2;
maintainers = with maintainers; [ ehmry ];
- platforms = platforms.linux ++ platforms.darwin;
+ platforms = platforms.unix;
+
+ # TODO: Remove once nixpkgs uses newer SDKs that supports '*at' functions.
+ # Probably MacOS SDK 10.13 or later. Check the current version in
+ # ../../../../os-specific/darwin/apple-sdk/default.nix
+ #
+ # https://github.com/gittup/tup/commit/3697c74
+ broken = stdenv.isDarwin;
};
}
diff --git a/pkgs/development/tools/clj-kondo/default.nix b/pkgs/development/tools/clj-kondo/default.nix
index 5539489afb0..5484652d384 100644
--- a/pkgs/development/tools/clj-kondo/default.nix
+++ b/pkgs/development/tools/clj-kondo/default.nix
@@ -2,17 +2,17 @@
stdenv.mkDerivation rec {
pname = "clj-kondo";
- version = "2021.02.13";
+ version = "2021.03.31";
reflectionJson = fetchurl {
name = "reflection.json";
- url = "https://raw.githubusercontent.com/borkdude/${pname}/v${version}/reflection.json";
- sha256 = "ea5c18586fd8803b138a4dd197a0019d5e5a2c76ebe4925b9b54a10125a68c57";
+ url = "https://raw.githubusercontent.com/clj-kondo/${pname}/v${version}/reflection.json";
+ sha256 = "sha256-C4QYk5lLienCHKnWXXZPcKmsCTMtIIkXOkvCrZfyIhA=";
};
src = fetchurl {
- url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar";
- sha256 = "sha256-Rq7W5sP9nRB0TGRUSQIyC3U568uExmcM/gd+1HjAqac=";
+ url = "https://github.com/clj-kondo/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar";
+ sha256 = "sha256-XSs0u758wEuaqZvFIevBrL61YNPUJ9Sc1DS+O9agj94=";
};
dontUnpack = true;
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A linter for Clojure code that sparks joy";
- homepage = "https://github.com/borkdude/clj-kondo";
+ homepage = "https://github.com/clj-kondo/clj-kondo";
license = licenses.epl10;
platforms = graalvm11-ce.meta.platforms;
maintainers = with maintainers; [ jlesquembre bandresen ];
diff --git a/pkgs/development/tools/cloud-nuke/default.nix b/pkgs/development/tools/cloud-nuke/default.nix
index 9085be14284..6254ec0a2c2 100644
--- a/pkgs/development/tools/cloud-nuke/default.nix
+++ b/pkgs/development/tools/cloud-nuke/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "cloud-nuke";
- version = "0.1.28";
+ version = "0.1.29";
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-UssjIix2sFLqau5PMFNDP9XPCSNUdRO6aBixIQNtSy8=";
+ sha256 = "sha256-RPlEFajIjEBKdL97xjQP6r3AAcCQlxw2Il8nkSjxa+k=";
};
vendorSha256 = "sha256-pl3dLisu4Oc77kgfuteKbsZaDzrHo1wUigZEkM4081Q=";
diff --git a/pkgs/development/tools/conftest/default.nix b/pkgs/development/tools/conftest/default.nix
index 7f2e65fd991..4c6cbbbe6b0 100644
--- a/pkgs/development/tools/conftest/default.nix
+++ b/pkgs/development/tools/conftest/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "conftest";
- version = "0.23.0";
+ version = "0.24.0";
src = fetchFromGitHub {
owner = "open-policy-agent";
repo = "conftest";
rev = "v${version}";
- sha256 = "sha256-mSiZjpsFZfkM522f1WcJgBexiBS0o3uf1g94pjhgGVU=";
+ sha256 = "sha256-iFxRZq/8TW7Df+aAc5IN+FAXU4kvbDiHWiFOlWMmCY0=";
};
- vendorSha256 = "sha256-iCIuEvwkbfBZ858yZZyVf5om6YLsGKRvzFmYzJBrRf4=";
+ vendorSha256 = "sha256-LvaSs1y1CEP+cJc0vqTh/8MezmtuFAbfMgqloAjLZl8=";
doCheck = false;
diff --git a/pkgs/development/tools/continuous-integration/github-runner/default.nix b/pkgs/development/tools/continuous-integration/github-runner/default.nix
index e453a78dec4..b03dcc89d44 100644
--- a/pkgs/development/tools/continuous-integration/github-runner/default.nix
+++ b/pkgs/development/tools/continuous-integration/github-runner/default.nix
@@ -20,7 +20,7 @@
}:
let
pname = "github-actions-runner";
- version = "2.277.1";
+ version = "2.278.0";
deps = (import ./deps.nix { inherit fetchurl; });
nugetPackages = map
@@ -80,8 +80,8 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "actions";
repo = "runner";
- rev = "183a3dd9a0d4d51feddc5fe9fa6c3b5f8b08343d"; # v${version}
- sha256 = "sha256-fQH4QwdR8E76ckUjMCaKOsDjNoVBIWAw2YcFRrVucX8=";
+ rev = "62d926efce35d3ea16d7624a25aaa5b300737def"; # v${version}
+ sha256 = "sha256-KAb14739DYnuNIf7ZNZk5CShye6XFGn8aLu8BAcuT/c=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
index eeffee057d4..d03d59edb1f 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 = "13.10.0";
+ version = "13.11.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 = "0lw087xcbzf4d68mq0h0s31na7lww2d9nv43icw9qx05aknlcddv";
+ sha256 = "1vmj7vxz1a4js9kqz7mm6xgnkmb37c1jbx2lwsq2qkrybkxfcw8k";
};
docker_arm = fetchurl {
url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-arm.tar.xz";
- sha256 = "1mf3w85ivc8r2rmb78r4b87rrxmbb1zda9pp8n4nvd0igg23xqk8";
+ sha256 = "1c1pywz7ylaysplvq1m15v7rf1sgdkh9scbqklzcm55fjk128lif";
};
in
buildGoPackage rec {
@@ -30,7 +30,7 @@ buildGoPackage rec {
owner = "gitlab-org";
repo = "gitlab-runner";
rev = "v${version}";
- sha256 = "0xy5mpcpxcmwfdrspd29z8nyn1m9i4ma7d5kbihwa2yxznylydpx";
+ sha256 = "07jqsxac50xwmhlv0nbnn098290nkpsmrxw872yh67n1s9gqfd27";
};
patches = [ ./fix-shell-path.patch ];
diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix
index 669dc846e10..5373b2d359b 100644
--- a/pkgs/development/tools/continuous-integration/jenkins/default.nix
+++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
pname = "jenkins";
- version = "2.277.2";
+ version = "2.277.3";
src = fetchurl {
url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war";
- sha256 = "08lv5v5kxp9ln798gjmh8j9a8r8xc471fbhiz2l7gxncpxn50ga2";
+ sha256 = "1awixb55bkpqcvf2s59aph3kxdd70g9x1a5s5kly33kwrplcf8iy";
};
buildCommand = ''
diff --git a/pkgs/development/tools/continuous-integration/laminar/default.nix b/pkgs/development/tools/continuous-integration/laminar/default.nix
index 5b492ee67b3..8d06ff94a03 100644
--- a/pkgs/development/tools/continuous-integration/laminar/default.nix
+++ b/pkgs/development/tools/continuous-integration/laminar/default.nix
@@ -58,7 +58,7 @@ in stdenv.mkDerivation rec {
meta = with lib; {
description = "Lightweight and modular continuous integration service";
homepage = "https://laminar.ohwg.net";
- license = licenses.gpl3;
+ license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ kaction maralorn ];
};
diff --git a/pkgs/development/tools/database/liquibase/default.nix b/pkgs/development/tools/database/liquibase/default.nix
index 0be77237f42..32ab88bf412 100644
--- a/pkgs/development/tools/database/liquibase/default.nix
+++ b/pkgs/development/tools/database/liquibase/default.nix
@@ -10,11 +10,11 @@ in
stdenv.mkDerivation rec {
pname = "liquibase";
- version = "4.3.1";
+ version = "4.3.2";
src = fetchurl {
url = "https://github.com/liquibase/liquibase/releases/download/v${version}/${pname}-${version}.tar.gz";
- sha256 = "sha256-hOemDLfkjjPXQErKKCIMl8c5EPZe40B1HlNfvg7IZKU=";
+ sha256 = "sha256-sc/W4N+pd1bhLiyQLqm0j2o/RviT8iKzBZcD0GRDqqE=";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/development/tools/doctl/default.nix b/pkgs/development/tools/doctl/default.nix
index 227834da97f..83256efd5fa 100644
--- a/pkgs/development/tools/doctl/default.nix
+++ b/pkgs/development/tools/doctl/default.nix
@@ -2,7 +2,7 @@
buildGoModule rec {
pname = "doctl";
- version = "1.58.0";
+ version = "1.59.0";
vendorSha256 = null;
@@ -32,7 +32,7 @@ buildGoModule rec {
owner = "digitalocean";
repo = "doctl";
rev = "v${version}";
- sha256 = "sha256-zOEd7e9OgkQxVaHIw9LZJ7ufl2sNpMnTTM3KetiWl+w=";
+ sha256 = "sha256-mkFKYWPUEHVtQi9eUPxvWYxNCfVrKdjo2bH2DEwL1d0=";
};
meta = with lib; {
diff --git a/pkgs/development/tools/electron/default.nix b/pkgs/development/tools/electron/default.nix
index 518eef2d1a0..ddd51f268e2 100644
--- a/pkgs/development/tools/electron/default.nix
+++ b/pkgs/development/tools/electron/default.nix
@@ -86,30 +86,30 @@ rec {
headers = "0yx8mkrm15ha977hzh7g2sc5fab9sdvlk1bk3yxignhxrqqbw885";
};
- electron_10 = mkElectron "10.4.2" {
- x86_64-linux = "3d613b413f01c8af1600be42c82941761452407e1160125eca60feec0d7dd0c0";
- x86_64-darwin = "87b18811d165f2fd64606ae13a567b737f54bd41c7e2204a047a3532f4fa2d9c";
- i686-linux = "297083ca9b21554ea1f729ed17c0c8b13aaea24e77194f9c1b340489fcfc0fa6";
- armv7l-linux = "3d93ec220824cce5d99b3a7511604b89c63935bd1130fc64ce08b8436e34c096";
- aarch64-linux = "0060e37eada91bac51945ae325ab04309438609089d31ab3f8bbfda73cc26166";
- headers = "13cpkblkvhvd3sww8n1gw4rhva84x2fkkg81yr3n2mb0virlfgpn";
+ electron_10 = mkElectron "10.4.3" {
+ x86_64-linux = "48793fc6c6d3bfb8df81cd29f6c52e68c8c6b901693c6ba4ed505799fa673e9f";
+ x86_64-darwin = "28cbacf51e0528e0d4ba30a2c56efd6a8e7f836104786733aae0c5fc99dc2615";
+ i686-linux = "b9b7fd9b91630350dafe97a31c918f941ab15b044f0b4e9b2a705482447fe78f";
+ armv7l-linux = "b1e1b4d0620eae647915c95d21656d21c00efe89f44198938d9fd9fba045e39c";
+ aarch64-linux = "aa9177becf787920cef4cde27a6ed08e2e23976678162a3cd6b77615b1582c05";
+ headers = "0phv08myxq226blrqzg3fza3mh3ivgfmcja98b7377pc3x7bv76g";
};
- electron_11 = mkElectron "11.4.1" {
- x86_64-linux = "3efd3d3b5a9f71323320288aece65fcec89ea0331c3d6d3afc2495d3b0dc95d3";
- x86_64-darwin = "6ff91613c51b2ebaf280eb86b826f47d62639081a0f38c2012c428a17619a163";
- i686-linux = "513e1bc7a3e546dc0e712836886ac89c9f76bb7fb1e4b7a1f9d9cbc7347d8569";
- armv7l-linux = "838fc96d90cfcc5e1e892287008f9d9d2dbe27f3d4cf2479e6275ecdd140fb65";
- aarch64-linux = "a3de4208b5033a19ffa9dd8130d440909b181c0ef57cb51c8f9c8dbbb1267a26";
- headers = "1bpsmmlxl4gk9yn5w7f8m6g8k1gmvwk0jwpqlk5islpkcy6x7107";
+ electron_11 = mkElectron "11.4.3" {
+ x86_64-linux = "222e7aa51d5516796d532f784c574f07315bad4bf29efb0ce687014f93ba5fa5";
+ x86_64-darwin = "6cccbaf8dca7eb3819b0ac3044686f6705c5d51c88ee1361d8573c2b83c8dc0a";
+ i686-linux = "1910729fd6088e9c914db9fdd6c42ce6747fcb048947dd83fa2cdf564c786353";
+ armv7l-linux = "e0e1375bdb79a6917467490683e49bb59da9260b73d7b710a5e4e4535c1c5e80";
+ aarch64-linux = "9fb287ed8bcc7782775bd615fe1c31db4a8b6d548209fd15ef5312ac72a04d07";
+ headers = "00gln9jlb621gvxx1z7s212wakjbdigdqv02vx1pjvkg62aazg8j";
};
- electron_12 = mkElectron "12.0.2" {
- x86_64-linux = "fc3ff888d8cd4ada8368420c8951ed1b5ad78919bdcb688abe698d00e12a2e0a";
- x86_64-darwin = "766ca8f8adc4535db3069665ea8983979ea79dd5ec376e1c298f858b420ec58f";
- i686-linux = "78ab55db275b85210c6cc14ddf41607fbd5cefed93ef4d1b6b74630b0841b23c";
- armv7l-linux = "8be8c6ea05da669d79179c5969ddee853710a1dd44f86e8f3bbe1167a2daf13c";
- aarch64-linux = "9ef70ab9347be63555784cac99efbaff1ef2d02dcc79070d7bccd18c38de87ef";
- headers = "07095b5rylilbmyd0syamm6fc4pngazldj5jgm7blgirdi8yzzd2";
+ electron_12 = mkElectron "12.0.4" {
+ x86_64-linux = "6419716f614f396954981e6432afe77277dff2b64ecb84e2bbd6d740362ea01c";
+ x86_64-darwin = "3072f1854eb5b91d5f24e03a313583bb85d696cda48381bdf3e40ee2c93dfe34";
+ i686-linux = "fa241874aacca8fe4b4f940fa9133fe65fdcf9ef0847322332f0c67ee7b42aa0";
+ armv7l-linux = "8d88d13bf117820bc3b46501d34004f18ebf402f2817836a2a7ba4fc60433653";
+ aarch64-linux = "c5cbcbb5b397407e45e682480b30da4fcf94154ac92d8f6eea4c79a50d56626a";
+ headers = "121falvhz0bfxc2h7wwvyfqdagr3aznida4f4phzqp0ja3rznxf3";
};
}
diff --git a/pkgs/development/tools/esbuild/default.nix b/pkgs/development/tools/esbuild/default.nix
new file mode 100644
index 00000000000..e23894c42a0
--- /dev/null
+++ b/pkgs/development/tools/esbuild/default.nix
@@ -0,0 +1,22 @@
+{ buildGoModule, fetchFromGitHub, lib }:
+
+buildGoModule rec {
+ pname = "esbuild";
+ version = "0.11.12";
+
+ src = fetchFromGitHub {
+ owner = "evanw";
+ repo = "esbuild";
+ rev = "v${version}";
+ sha256 = "1mxj4mrq1zbvv25alnc3s36bhnnhghivgwp45a7m3cp1389ffcd1";
+ };
+
+ vendorSha256 = "1n5538yik72x94vzfq31qaqrkpxds5xys1wlibw2gn2am0z5c06q";
+
+ meta = with lib; {
+ description = "An extremely fast JavaScript bundler";
+ homepage = "https://esbuild.github.io";
+ license = licenses.mit;
+ maintainers = with maintainers; [ lucus16 ];
+ };
+}
diff --git a/pkgs/development/tools/go-task/default.nix b/pkgs/development/tools/go-task/default.nix
index d2ea8a4f6bd..2e8988ec788 100644
--- a/pkgs/development/tools/go-task/default.nix
+++ b/pkgs/development/tools/go-task/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "go-task";
- version = "3.3.0";
+ version = "3.4.1";
src = fetchFromGitHub {
owner = pname;
repo = "task";
rev = "v${version}";
- sha256 = "sha256-+JhU0DXSUbpaHWJYEgiUwsR8DucGRwkiNiKDyhJroqk=";
+ sha256 = "sha256-r0AHGgv2huMaZfsbK7o4KKJirNeOff1M3jgG8ZUJoiA=";
};
- vendorSha256 = "sha256-pNKzqUtEIQs0TP387ACHfCv1RsMjZi7O8P1A8df+QtI=";
+ vendorSha256 = "sha256-qKjCGZnCts4GfBafSRXR7xTvfJdqK8zjpu01eiyITkU=";
doCheck = false;
diff --git a/pkgs/development/tools/godot/export-templates.nix b/pkgs/development/tools/godot/export-templates.nix
new file mode 100644
index 00000000000..bfcf3e3b3dc
--- /dev/null
+++ b/pkgs/development/tools/godot/export-templates.nix
@@ -0,0 +1,17 @@
+{ godot, lib }:
+
+# https://docs.godotengine.org/en/stable/development/compiling/compiling_for_x11.html#building-export-templates
+godot.overrideAttrs (oldAttrs: rec {
+ pname = "godot-export-templates";
+ sconsFlags = "target=release platform=x11 tools=no";
+ installPhase = ''
+ # The godot export command expects the export templates at
+ # .../share/godot/templates/3.2.3.stable with 3.2.3 being the godot version.
+ mkdir -p "$out/share/godot/templates/${oldAttrs.version}.stable"
+ cp bin/godot.x11.opt.64 $out/share/godot/templates/${oldAttrs.version}.stable/linux_x11_64_release
+ '';
+ outputs = [ "out" ];
+ meta.description =
+ "Free and Open Source 2D and 3D game engine (export templates)";
+ meta.maintainers = with lib.maintainers; [ twey jojosch ];
+})
diff --git a/pkgs/development/tools/gopls/default.nix b/pkgs/development/tools/gopls/default.nix
index 1617900acee..cfe69886d4b 100644
--- a/pkgs/development/tools/gopls/default.nix
+++ b/pkgs/development/tools/gopls/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "gopls";
- version = "0.6.2";
+ version = "0.6.10";
src = fetchgit {
rev = "gopls/v${version}";
url = "https://go.googlesource.com/tools";
- sha256 = "0hbfxdsbfz044vw8zp223ni6m7gcwqpff4xpjiqmihhgga5849lf";
+ sha256 = "13mv6rvqlmgn1shx0hnlqxgqiiiz1ij37j30jz1jkr9kcrbxpacr";
};
modRoot = "gopls";
- vendorSha256 = "0r9bffgi9ainqrl4kraqy71rgwdfcbqmv3srs12h3xvj0w5ya5rz";
+ vendorSha256 = "01apsvkds8f3m88inb37z4lgalrbjp12xr2jikwx7n10hjddgbqi";
doCheck = false;
diff --git a/pkgs/development/tools/gops/default.nix b/pkgs/development/tools/gops/default.nix
index ff9b2064cec..d23aa71a8ab 100644
--- a/pkgs/development/tools/gops/default.nix
+++ b/pkgs/development/tools/gops/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "gops";
- version = "0.3.17";
+ version = "0.3.18";
src = fetchFromGitHub {
owner = "google";
repo = "gops";
rev = "v${version}";
- sha256 = "1l0k1v2wwwdrwwznrdq2ivbrl5z3hxa89xm89jlaglkd7jjg74zk";
+ sha256 = "0534jyravpsj73lgdmw6fns1qaqiw401jlfk04wa0as5sv09rfhy";
};
vendorSha256 = null;
diff --git a/pkgs/development/tools/gotestsum/default.nix b/pkgs/development/tools/gotestsum/default.nix
index 6c6d6343d43..e9bc48b0dcf 100644
--- a/pkgs/development/tools/gotestsum/default.nix
+++ b/pkgs/development/tools/gotestsum/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "gotestsum";
- version = "1.6.3";
+ version = "1.6.4";
src = fetchFromGitHub {
owner = "gotestyourself";
repo = "gotestsum";
rev = "v${version}";
- sha256 = "sha256-xUDhJLTO3JZ7rlUUzcypUev60qmRK9zOlO2VYeXqT4o=";
+ sha256 = "sha256-5iSUk/J73enbc/N3bn7M4oj2A0yoF1jTWpnXD380hFI=";
};
vendorSha256 = "sha256-sHi8iW+ZV/coeAwDUYnSH039UNtUO9HK0Bhz9Gmtv8k=";
diff --git a/pkgs/development/tools/jql/default.nix b/pkgs/development/tools/jql/default.nix
new file mode 100644
index 00000000000..381a53f0f1e
--- /dev/null
+++ b/pkgs/development/tools/jql/default.nix
@@ -0,0 +1,22 @@
+{ lib, fetchFromGitHub, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "jql";
+ version = "2.9.4";
+
+ src = fetchFromGitHub {
+ owner = "yamafaktory";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1rwnmp2rnzwc7anmk7nr8l4ncza8s1f8sn0r2la4ai2sx1iqn06h";
+ };
+
+ cargoSha256 = "1c83mmdxci7l3c6ja5fhk4cak1gcbg0r0nlpbpims5gi16nf99r3";
+
+ meta = with lib; {
+ description = "A JSON Query Language CLI tool built with Rust";
+ homepage = "https://github.com/yamafaktory/jql";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ akshgpt7 ];
+ };
+}
diff --git a/pkgs/development/tools/just/default.nix b/pkgs/development/tools/just/default.nix
index 38439e62473..c6863d535dd 100644
--- a/pkgs/development/tools/just/default.nix
+++ b/pkgs/development/tools/just/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "just";
- version = "0.8.4";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "casey";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-K8jeX1/Wn6mbf48GIR2wRAwiwg1rxtbtCPjjH+4dPYw=";
+ sha256 = "sha256-orHUovyFFOPRvbfLKQhkfZzM0Gs2Cpe1uJg/6+P8HKY=";
};
- cargoSha256 = "sha256-a9SBeX3oesdoC5G+4dK2tbt+W7VA4jPqCM9tOAex4DI=";
+ cargoSha256 = "sha256-YDIGZRbszhgWM7iAc2i89jyndZvZZsg63ADQfqFxfXw=";
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/development/tools/metals/default.nix b/pkgs/development/tools/metals/default.nix
index 78c99d94c8d..d686067e633 100644
--- a/pkgs/development/tools/metals/default.nix
+++ b/pkgs/development/tools/metals/default.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "metals";
- version = "0.10.1";
+ version = "0.10.2";
deps = stdenv.mkDerivation {
name = "${pname}-deps-${version}";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
'';
outputHashMode = "recursive";
outputHashAlgo = "sha256";
- outputHash = "0z4ddnwx510hnx6w72fxmksmnwxg8p2nqxg7i7xix24gykgmgj5a";
+ outputHash = "1yck935pcj9cg3qxzrmvgd16afsckz8wgmzf2rlmii2c1glrbq9c";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/development/tools/misc/checkbashisms/default.nix b/pkgs/development/tools/misc/checkbashisms/default.nix
index 524abbfdc90..6222bb312bb 100644
--- a/pkgs/development/tools/misc/checkbashisms/default.nix
+++ b/pkgs/development/tools/misc/checkbashisms/default.nix
@@ -1,26 +1,39 @@
-{ lib, stdenv, fetchurl, perl }:
+{ lib, stdenv, fetchurl, perl, installShellFiles }:
stdenv.mkDerivation rec {
- version = "2.0.0.2";
+ version = "2.21.1";
pname = "checkbashisms";
src = fetchurl {
- url = "mirror://sourceforge/project/checkbaskisms/${version}/checkbashisms";
- sha256 = "1vm0yykkg58ja9ianfpm3mgrpah109gj33b41kl0jmmm11zip9jd";
+ url = "mirror://debian/pool/main/d/devscripts/devscripts_${version}.tar.xz";
+ hash = "sha256-1ZbIiUrFd38uMVLy7YayLLm5RrmcovsA++JTb8PbTFI=";
};
+ nativeBuildInputs = [ installShellFiles ];
buildInputs = [ perl ];
- # The link returns directly the script. No need for unpacking
- dontUnpack = true;
+ buildPhase = ''
+ runHook preBuild
+ substituteInPlace ./scripts/checkbashisms.pl \
+ --replace '###VERSION###' "$version"
+
+ runHook postBuild
+ '';
installPhase = ''
- install -D -m755 $src $out/bin/checkbashisms
+ runHook preInstall
+
+ installManPage scripts/$pname.1
+ installShellCompletion --bash --name $pname scripts/$pname.bash_completion
+ install -D -m755 scripts/$pname.pl $out/bin/$pname
+
+ runHook postInstall
'';
meta = {
homepage = "https://sourceforge.net/projects/checkbaskisms/";
description = "Check shell scripts for non-portable syntax";
- license = lib.licenses.gpl2;
+ license = lib.licenses.gpl2Plus;
+ maintainers = with lib.maintainers; [ kaction ];
platforms = lib.platforms.unix;
};
}
diff --git a/pkgs/development/tools/misc/inotify-tools/default.nix b/pkgs/development/tools/misc/inotify-tools/default.nix
index e085d3dd259..48e2139b74d 100644
--- a/pkgs/development/tools/misc/inotify-tools/default.nix
+++ b/pkgs/development/tools/misc/inotify-tools/default.nix
@@ -1,29 +1,22 @@
-{ lib, stdenv, autoreconfHook, fetchFromGitHub, fetchpatch }:
+{ lib, stdenv, autoreconfHook, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "inotify-tools";
- version = "3.20.2.2";
+ version = "3.20.11.0";
src = fetchFromGitHub {
repo = "inotify-tools";
owner = "rvoicilas";
rev = version;
- sha256 = "1r12bglkb0bkqff6kgxjm81hk6z20nrxq3m7iv15d4nrqf9pm7s0";
+ sha256 = "1m8avqccrhm38krlhp88a7v949f3hrzx060bbrr5dp5qw2nmw9j2";
};
- patches = [
- (fetchpatch {
- url = "https://github.com/inotify-tools/inotify-tools/commit/7ddf45158af0c1e93b02181a45c5b65a0e5bed25.patch";
- sha256 = "08imqancx8l0bg9q7xaiql1xlalmbfnpjfjshp495sjais0r6gy7";
- })
- ];
-
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
homepage = "https://github.com/rvoicilas/inotify-tools/wiki";
- license = licenses.gpl2;
- maintainers = with maintainers; [ marcweber pSub ];
+ license = licenses.gpl2Plus;
+ maintainers = with maintainers; [ marcweber pSub shamilton ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/tools/ocaml/ocamlformat/default.nix b/pkgs/development/tools/ocaml/ocamlformat/default.nix
index c3b4182a0b5..4c8a4b9e9d0 100644
--- a/pkgs/development/tools/ocaml/ocamlformat/default.nix
+++ b/pkgs/development/tools/ocaml/ocamlformat/default.nix
@@ -52,5 +52,9 @@ rec {
version = "0.17.0";
};
- ocamlformat = ocamlformat_0_17_0;
+ ocamlformat_0_18_0 = mkOCamlformat {
+ version = "0.18.0";
+ };
+
+ ocamlformat = ocamlformat_0_18_0;
}
diff --git a/pkgs/development/tools/ocaml/ocamlformat/generic.nix b/pkgs/development/tools/ocaml/ocamlformat/generic.nix
index 69f26c5b887..223ac39c6aa 100644
--- a/pkgs/development/tools/ocaml/ocamlformat/generic.nix
+++ b/pkgs/development/tools/ocaml/ocamlformat/generic.nix
@@ -21,11 +21,10 @@ let src =
"0.15.1" = "1x6fha495sgk4z05g0p0q3zfqm5l6xzmf6vjm9g9g7c820ym2q9a";
"0.16.0" = "1vwjvvwha0ljc014v8jp8snki5zsqxlwd7x0dl0rg2i9kcmwc4mr";
"0.17.0" = "0f1lxp697yq61z8gqxjjaqd2ns8fd1vjfggn55x0gh9dx098p138";
+ "0.18.0" = "0571kzmb1h03qj74090n3mg8wfbh29qqrkdjkai6rnl5chll86lq";
}."${version}";
- }
-; in
-
-let ocamlPackages =
+ };
+ ocamlPackages =
if lib.versionAtLeast version "0.14.3"
then ocaml-ng.ocamlPackages
else ocaml-ng.ocamlPackages_4_07
@@ -33,7 +32,7 @@ let ocamlPackages =
with ocamlPackages;
-buildDunePackage rec {
+buildDunePackage {
pname = "ocamlformat";
inherit src version;
@@ -45,7 +44,24 @@ buildDunePackage rec {
useDune2 = true;
buildInputs =
- if lib.versionAtLeast version "0.17.0"
+ if lib.versionAtLeast version "0.18.0"
+ then [
+ base
+ cmdliner
+ fpath
+ odoc
+ re
+ stdio
+ uuseg
+ uutf
+ fix
+ menhir
+ dune-build-info
+ ocaml-version
+ # Changed since 0.16.0:
+ (ppxlib.override { version = "0.22.0"; })
+ ]
+ else if lib.versionAtLeast version "0.17.0"
then [
base
cmdliner
diff --git a/pkgs/development/tools/parsing/tree-sitter/default.nix b/pkgs/development/tools/parsing/tree-sitter/default.nix
index 0ce151f6507..293b8bb095a 100644
--- a/pkgs/development/tools/parsing/tree-sitter/default.nix
+++ b/pkgs/development/tools/parsing/tree-sitter/default.nix
@@ -71,6 +71,35 @@ let
in
lib.mapAttrs change grammars;
+ # Usage:
+ # pkgs.tree-sitter.withPlugins (p: [ p.tree-sitter-c p.tree-sitter-java ... ])
+ #
+ # or for all grammars:
+ # pkgs.tree-sitter.withPlugins (_: allGrammars)
+ # which is equivalent to
+ # pkgs.tree-sitter.withPlugins (p: builtins.attrValues p)
+ withPlugins = grammarFn:
+ let
+ grammars = grammarFn builtGrammars;
+ in
+ linkFarm "grammars"
+ (map
+ (drv:
+ let
+ name = lib.strings.getName drv;
+ in
+ {
+ name =
+ (lib.strings.removePrefix "tree-sitter-"
+ (lib.strings.removeSuffix "-grammar" name))
+ + stdenv.hostPlatform.extensions.sharedLibrary;
+ path = "${drv}/parser";
+ }
+ )
+ grammars);
+
+ allGrammars = builtins.attrValues builtGrammars;
+
in
rustPlatform.buildRustPackage {
pname = "tree-sitter";
@@ -111,7 +140,7 @@ rustPlatform.buildRustPackage {
updater = {
inherit update-all-grammars;
};
- inherit grammars builtGrammars;
+ inherit grammars builtGrammars withPlugins allGrammars;
tests = {
# make sure all grammars build
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-c-sharp.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-c-sharp.json
index 03c4bb06a0c..dd6a3a380bc 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-c-sharp.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-c-sharp.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-c-sharp",
- "rev": "70fd2cba742506903589b5e046c32e0e3e06404a",
- "date": "2021-03-03T17:18:54-08:00",
- "path": "/nix/store/m0pzbb0vg0fm9nycj05ay0yldzp7qwbi-tree-sitter-c-sharp",
- "sha256": "12jj66rsn1klsk24yj0ymgsqwy7lc5kb3nkj7griip8rmi3kgy41",
+ "rev": "09749b7b5428e770cc2ebdf2e90029c0f4a2d411",
+ "date": "2021-04-13T07:05:48+01:00",
+ "path": "/nix/store/w99nivk866bglvijxb5m0c789qh99x1m-tree-sitter-c-sharp",
+ "sha256": "17n7r1j1ib3gzjf0qw88512flzamjrvilksbf1p15dqa17rmwyq1",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-c.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-c.json
index 3d98f69f053..13fd9681709 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-c.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-c.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-c",
- "rev": "5aa0bbbfc41868a3727b7a89a90e9f52e0964b2b",
- "date": "2021-03-03T17:00:36-08:00",
- "path": "/nix/store/2wa64ii39p31wpngvqk4ni8z8ws29r2g-tree-sitter-c",
- "sha256": "1diys8yigvhm4ppbmp3a473yxjg2d5lk11y0ay7qprcz7233lakv",
+ "rev": "f05e279aedde06a25801c3f2b2cc8ac17fac52ae",
+ "date": "2021-03-28T09:12:10-07:00",
+ "path": "/nix/store/4bcxsfrgrcpjy3f6dsmqli2xawjpyz44-tree-sitter-c",
+ "sha256": "1rismmgaqii1sdnri66h75sgw3mky4aha9hff6fan1qzll4f3hif",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-cpp.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-cpp.json
index fcd0457454d..f88c5f9cf99 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-cpp.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-cpp.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-cpp",
- "rev": "05cf2030e5415e9e931f620f0924107f73976796",
- "date": "2021-03-04T10:01:34-08:00",
- "path": "/nix/store/fraya34acwl9i3cxpml9hwzfkyc8vs89-tree-sitter-cpp",
- "sha256": "08ywv6n80sa541rr08bqz4zyg7byvjcabp68lvxmcahjk8xzcgwk",
+ "rev": "c61212414a3e95b5f7507f98e83de1d638044adc",
+ "date": "2021-03-27T10:08:51-07:00",
+ "path": "/nix/store/a8cd3sv1j900sd8l7cdjw91iw7pp3jhv-tree-sitter-cpp",
+ "sha256": "04nv9j03q20idk9pnm2lgw7rbwzy5jf9v0y6l102by68z4lv79fi",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-fennel.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-fennel.json
index 8d3c6608ab8..85e2f5e71b8 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-fennel.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-fennel.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/travonted/tree-sitter-fennel",
- "rev": "5aad9d1f490b7fc8a847a5b260f23396c56024f5",
- "date": "2020-11-03T09:22:17-05:00",
- "path": "/nix/store/gsxg67brk198201h70lip7miwny084sy-tree-sitter-fennel",
- "sha256": "1imv5nwmhsyxwq7b9z4qz72lfva40wgybdkmq0gbbfbszl9a9bgl",
+ "rev": "bc689e2ef264e2cba499cfdcd16194e8f5fe87d2",
+ "date": "2021-03-09T16:47:45-05:00",
+ "path": "/nix/store/3h4j1mrqvn0ybqjalic92bnhk7c15442-tree-sitter-fennel",
+ "sha256": "1jm21bmsdrz9x5skqmx433q9b4mfi88gzc4la5hqps4is28inqms",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-go.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-go.json
index d0a7188c6b2..6783d4381f6 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-go.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-go.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-go",
- "rev": "e41dd569d91eb58725baa7089c34fc3d785b2978",
- "date": "2021-03-03T17:11:05-08:00",
- "path": "/nix/store/87n5nl5p1fnmwgy0zshz90vyvha6b7mn-tree-sitter-go",
- "sha256": "0nxs47vd2fc2fr0qlxq496y852rwg39flhg334s7dlyq7d3lcx4x",
+ "rev": "2a83dfdd759a632651f852aa4dc0af2525fae5cd",
+ "date": "2021-03-09T16:11:33-05:00",
+ "path": "/nix/store/2jk1bacllxsii8nlbc5lyi3k376ylf3q-tree-sitter-go",
+ "sha256": "001p8kb8g4vghn78690bnav42inkypld2k1mbd5pbmd5svvacfav",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-haskell.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-haskell.json
index 191a23dd78c..3dc04b3b08a 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-haskell.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-haskell.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-haskell",
- "rev": "24cf84ff618e96528882c67c8740fadcd6c4a921",
- "date": "2021-03-06T17:58:27+01:00",
- "path": "/nix/store/46hpbz06d1p5n0rp6z3iwy2lpwrn8kgl-tree-sitter-haskell",
- "sha256": "1l004x1z9g1p8313ipvrf581vr2wi82qcwc0281kg083m2z4535p",
+ "rev": "2e33ffa3313830faa325fe25ebc3769896b3a68b",
+ "date": "2021-04-19T23:45:03+02:00",
+ "path": "/nix/store/75mc2mfs4sm21c871s5lm9djnjk90r7n-tree-sitter-haskell",
+ "sha256": "0np7mzi1na1qscdxsjpyw314iwcmpzzrx1v7fk3yxc70qwzjcpp1",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-java.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-java.json
index 19c8edef5e2..c3e5cb9d20f 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-java.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-java.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-java",
- "rev": "7ad106e81963b4d5c0aff99b93d16dc577fa3bc8",
- "date": "2021-03-05T16:03:00-08:00",
- "path": "/nix/store/ax9m7v0pv7q7xsnrjlfdpljs4f6xi2z3-tree-sitter-java",
- "sha256": "1594mrhqcdfs8b7wmwpzcwna4m3ra8cbzq162flwrhcsb3w0rr9w",
+ "rev": "ee8e358637e05188f9f65d8d1ad88a4412c975ce",
+ "date": "2021-04-20T10:40:14-04:00",
+ "path": "/nix/store/8612qackwqdsvbfc03lzc5vds6mvqwxf-tree-sitter-java",
+ "sha256": "19qxfimy8w49gqc97siknd27kvkz73qp2v2118pvdbdz7c5dv27r",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-javascript.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-javascript.json
index 6f31e096f59..351a0f262cb 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-javascript.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-javascript.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-javascript",
- "rev": "b3e7667995c065be724d10b69fbc3d0177ccef0b",
- "date": "2021-03-08T13:12:59-08:00",
- "path": "/nix/store/1y3nirw7bbnld4qy7ysm20bq0x9403wz-tree-sitter-javascript",
- "sha256": "0bzyq5x8x1r34fzy1f05yqdlz51b1i1jmyssm0i571n9n6142s3j",
+ "rev": "a263a8f53266f8f0e47e21598e488f0ef365a085",
+ "date": "2021-04-20T10:37:09-04:00",
+ "path": "/nix/store/y6qbdzdx4g1g1sa2rb7dnk9snjs6lhpp-tree-sitter-javascript",
+ "sha256": "04s1jb9c96kwq0nrh6516idlh58d2b1k66amqa2sl5kk32pl9pmm",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-json.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-json.json
index 34f2563b12a..ad00365e71e 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-json.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-json.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-json",
- "rev": "89607925e8989f2638cc935b8de7e44ac3c91907",
- "date": "2021-03-04T14:55:58-08:00",
- "path": "/nix/store/xpykb8mr4xarh6finzkz71z2bpqm8k26-tree-sitter-json",
- "sha256": "06pjh31bv9ja9hlnykk257a6zh8bsxg2fqa54al7qk1r4n9ksnff",
+ "rev": "65bceef69c3b0f24c0b19ce67d79f57c96e90fcb",
+ "date": "2021-03-09T16:25:11-05:00",
+ "path": "/nix/store/bn5smxwwg4zzdc52wp2qb6s6yjdfi8mg-tree-sitter-json",
+ "sha256": "13p4ffmajirl9qh64d6qnng1gjnh5f6jkqbra0nlc1260nsf12hp",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-markdown.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-markdown.json
index 164b7c0549b..0079a47810a 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-markdown.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-markdown.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/ikatyang/tree-sitter-markdown",
- "rev": "5a139bed455268a06410471bf48b19d11abdd367",
- "date": "2021-01-24T15:17:18+08:00",
- "path": "/nix/store/125cbxcqvwyq8b7kvmg7wxjjz16s2jvw-tree-sitter-markdown",
- "sha256": "072b4nnpymrh90y4dk18kr8l1g7m83r3gvp6v0ad9f9dnq47fgax",
+ "rev": "8b8b77af0493e26d378135a3e7f5ae25b555b375",
+ "date": "2021-04-18T20:49:21+08:00",
+ "path": "/nix/store/4z2k0q6rwqmb7vbqr4vgc26w28szlan3-tree-sitter-markdown",
+ "sha256": "1a2899x7i6dgbsrf13qzmh133hgfrlvmjsr3bbpffi1ixw1h7azk",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-nix.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-nix.json
index 8d0b5aaf0e4..eb97bb46f68 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-nix.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-nix.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/cstrahan/tree-sitter-nix",
- "rev": "a6bae0619126d70c756c11e404d8f4ad5108242f",
- "date": "2021-02-09T00:48:18-06:00",
- "path": "/nix/store/1rfsi62v549h72vw7ysciaw17vr5h9yx-tree-sitter-nix",
- "sha256": "08n496k0vn7c2751gywl1v40490azlri7c92dr2wfgw5jxhjmb0d",
+ "rev": "d5287aac195ab06da4fe64ccf93a76ce7c918445",
+ "date": "2021-04-21T19:11:29-05:00",
+ "path": "/nix/store/6labzn2qd3wyn4k2ddb09z2avpgqwbp1-tree-sitter-nix",
+ "sha256": "0mapqdqrinskdxlarrrvyd55mjg97gbd6jm9vbjmdm4xi2hhzvxa",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-ocaml.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-ocaml.json
index d13f77a9f04..941a9664684 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-ocaml.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-ocaml.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-ocaml",
- "rev": "19a8d2aab425c4c4c8dc6a882e67c37010620c3b",
- "date": "2021-03-08T16:57:09-08:00",
- "path": "/nix/store/y8jsf6vp278svqm4c6xnl4i6vanslrkk-tree-sitter-ocaml",
- "sha256": "0c5wjanka87bhha0aq3m5p448apxhv8hndlqvhly6qafj99jp85i",
+ "rev": "2f962cf4eb0bee87bba755347a79ee501cd58313",
+ "date": "2021-03-11T02:13:42+01:00",
+ "path": "/nix/store/pwf6di3pdghsnb83c87vvm3w0d5aanvp-tree-sitter-ocaml",
+ "sha256": "1dfan7kbs7i0nz9dkxv8ipn0b341j1fr9fn0a2zfqsx6xxkra56r",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-php.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-php.json
index 8a013179e3d..a536d54b651 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-php.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-php.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-php",
- "rev": "ba231f9844e5a1bf60e1cb72c34c0a431239585a",
- "date": "2021-03-03T17:17:11-08:00",
- "path": "/nix/store/cn06h14pgq3psjq3ms0yvdm3x1wwbc1j-tree-sitter-php",
- "sha256": "1xaml64b7cx3hn6x35bbgar8cp7ccxkwvxddjdvyj5nzfx1id8y3",
+ "rev": "4dcc061668fbc68b79421c72eb8a8baeeb0f3693",
+ "date": "2021-04-19T12:44:47-04:00",
+ "path": "/nix/store/2i80zds4dbynrdim9ngc8yp6yn825byb-tree-sitter-php",
+ "sha256": "0hs6dfw9n6sp7vbp7zfid0f0sxydyya3dyp5ghckz7al069g3vx2",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-python.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-python.json
index 976ec6c57cd..1b6e562f85a 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-python.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-python.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-python",
- "rev": "dd98afca32aaceff9025f9e85031ac50bee8b08b",
- "date": "2021-03-05T16:00:15-08:00",
- "path": "/nix/store/6sbmzgva73fhgqhsdrg5zy7vbs9lzll9-tree-sitter-python",
- "sha256": "01ykryrv1nn2y8dcbl64d31h1ipz2569ywzjp10pd93h1s6czpnl",
+ "rev": "d6210ceab11e8d812d4ab59c07c81458ec6e5184",
+ "date": "2021-03-27T09:41:53-07:00",
+ "path": "/nix/store/4v24ahydid4hr7kj0xi41mgbpglfnnki-tree-sitter-python",
+ "sha256": "173lpxi4vqa42dcdr9aj5phg5g6ny9ns04djw9n86pasx2w66dhk",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-rust.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-rust.json
index c88d6e2460c..b83bcb25885 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-rust.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-rust.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-rust",
- "rev": "20f064bd758f94b8f47ce5a21e4383c7349ca182",
- "date": "2021-03-04T14:06:14-08:00",
- "path": "/nix/store/za0yxqjjp9vxgwrp014qwv2v2qffl0di-tree-sitter-rust",
- "sha256": "118vkhv7n3sw8y9pi0987cgdcd74sjqwviijw01mhnk3bkyczi3l",
+ "rev": "a360da0a29a19c281d08295a35ecd0544d2da211",
+ "date": "2021-03-27T09:50:22-07:00",
+ "path": "/nix/store/h4snh879ccy159fa390qr8l0nyaf5ndr-tree-sitter-rust",
+ "sha256": "0knaza3ww5h5w95hzdaalg5yrfpiv0r394q0imadxp5611132hxz",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-scala.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-scala.json
index 3ec792c7190..b7c214cc720 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-scala.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-scala.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-scala",
- "rev": "262797b1dfe0303818c2418c0a88f6be65f37245",
- "date": "2021-03-04T15:02:28-08:00",
- "path": "/nix/store/vc5fr00vqx5nf17r9grdwb11wci3xrkm-tree-sitter-scala",
- "sha256": "1zf3b1x1s94dgzjbc6l8ind5fd1mmny3893d4bqc63h4qp0n0bp3",
+ "rev": "fb23ed9a99da012d86b7a5059b9d8928607cce29",
+ "date": "2021-04-01T10:11:15-07:00",
+ "path": "/nix/store/n1wvxkz4h38770lxvwakway34ac2a8h7-tree-sitter-scala",
+ "sha256": "05g95340g4labkdvfka5cbg7pr6vzigc40y54js1b5wml0w3d8f7",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-svelte.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-svelte.json
index 6cd63a61e89..41c4fcfe734 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-svelte.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-svelte.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/Himujjal/tree-sitter-svelte",
- "rev": "a96899bd1ab6a18e3837f232fd688af69e3a8071",
- "date": "2021-03-09T15:14:24+05:30",
- "path": "/nix/store/nlpf6gilkk19aw7pk1kbys2alhnqagqj-tree-sitter-svelte",
- "sha256": "04virfsiqqhh3gc3cmcjd4s1zn9wdxi47m55x938napaqiaw29nx",
+ "rev": "c696a13a587b0595baf7998f1fb9e95c42750263",
+ "date": "2021-03-20T16:45:11+05:30",
+ "path": "/nix/store/8krdxqwpi95ljrb5jgalwgygz3aljqr8-tree-sitter-svelte",
+ "sha256": "0ckmss5gmvffm6danlsvgh6gwvrlznxsqf6i6ipkn7k5lxg1awg3",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-typescript.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-typescript.json
index 3ff85a0766b..a59dd9a0004 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-typescript.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-typescript.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-typescript",
- "rev": "7e119621b1d2ab1873ba14d8702f62458df70409",
- "date": "2021-03-08T13:23:30-08:00",
- "path": "/nix/store/k7vam1w5c2r0hhxy0bgpmj65bw5wnh96-tree-sitter-typescript",
- "sha256": "1fv6q1bc0j6b89skz7x2ibi6bxx0ijrb676y23aahycvz2p8x4z0",
+ "rev": "82916165120f840164f11119f268a4de819ea90b",
+ "date": "2021-04-19T18:16:19-07:00",
+ "path": "/nix/store/0c0kkiiamms3yl3mf1clyrqcjwp5j920-tree-sitter-typescript",
+ "sha256": "1jnf0hn6hmn4x2cvy29mk8g1wlp0afs8immp461by3q5hcq8fzb4",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-verilog.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-verilog.json
index 7ab79c6f2d5..5e4e14a95b3 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-verilog.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-verilog.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/tree-sitter/tree-sitter-verilog",
- "rev": "ad551aae2649da56582bc0557478a7dc979c0be3",
- "date": "2020-10-13T17:40:47-07:00",
- "path": "/nix/store/nfaxfqrqkxpwaq8rnk7kcp28nnj8y6m2-tree-sitter-verilog",
- "sha256": "0cy29i200rnc34d237s19r6a1n5vv4d3wgwpbywxg6ahcankc34m",
+ "rev": "1b624ab8b3f8d54ecc37847aa04512844f0226ac",
+ "date": "2021-03-31T21:27:26-07:00",
+ "path": "/nix/store/4j6hrf8bc8zjd7r9xnna9njpw0i4z817-tree-sitter-verilog",
+ "sha256": "0ygm6bdxqzpl3qn5l58mnqyj730db0mbasj373bbsx81qmmzkgzz",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-yaml.json b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-yaml.json
index 8231a0354d7..c8544d7dbec 100644
--- a/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-yaml.json
+++ b/pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-yaml.json
@@ -1,9 +1,9 @@
{
"url": "https://github.com/ikatyang/tree-sitter-yaml",
- "rev": "ab0ce67ce98f8d9cc0224ebab49c64d01fedc1a1",
- "date": "2021-01-01T21:13:43+08:00",
- "path": "/nix/store/3vnhqr4l2hb0ank13avj8af4qbni5szw-tree-sitter-yaml",
- "sha256": "14f0abv68cjkwdcjjwa1nzjpwp6w59cj5v4m5h5h3jxi96z65459",
+ "rev": "6129a83eeec7d6070b1c0567ec7ce3509ead607c",
+ "date": "2021-04-18T14:25:59+08:00",
+ "path": "/nix/store/8wrwm71z9flfk00phrh9aaxpvsrw1m67-tree-sitter-yaml",
+ "sha256": "1bimf5fq85wn8dwlk665w15n2bj37fma5rsfxrph3i9yb0lvzi3q",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/development/tools/protoc-gen-twirp_php/default.nix b/pkgs/development/tools/protoc-gen-twirp_php/default.nix
index 40df9e974e4..08c8214c637 100644
--- a/pkgs/development/tools/protoc-gen-twirp_php/default.nix
+++ b/pkgs/development/tools/protoc-gen-twirp_php/default.nix
@@ -2,23 +2,19 @@
buildGoModule rec {
pname = "protoc-gen-twirp_php";
- version = "0.6.0";
+ version = "0.7.1";
# fetchFromGitHub currently not possible, because go.mod and go.sum are export-ignored
src = fetchgit {
url = "https://github.com/twirphp/twirp.git";
rev = "v${version}";
- sha256 = "sha256-WnvCdAJIMA4A+f7H61qcVbKNn23bNVOC15vMCEKc+CI=";
+ sha256 = "sha256-94GN/Gq3RXXg83eUsmIcdF4VuK4syCgD0Zkc5eDiVYE=";
};
- vendorSha256 = "sha256-LIMxrWXlK7+JIRmtukdXPqfw8H991FCAOuyEf7ZLSTs=";
+ vendorSha256 = "sha256-gz4JELCffuh7dyFdBex8/SFZ1/PDXuC/93m3WNHwRss=";
subPackages = [ "protoc-gen-twirp_php" ];
- preBuild = ''
- go generate ./...
- '';
-
meta = with lib; {
description = "PHP port of Twitch's Twirp RPC framework";
homepage = "https://github.com/twirphp/twirp";
diff --git a/pkgs/development/tools/rust/cargo-crev/default.nix b/pkgs/development/tools/rust/cargo-crev/default.nix
index eeec0487c65..57866918f07 100644
--- a/pkgs/development/tools/rust/cargo-crev/default.nix
+++ b/pkgs/development/tools/rust/cargo-crev/default.nix
@@ -11,16 +11,16 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-crev";
- version = "0.19.1";
+ version = "0.19.2";
src = fetchFromGitHub {
owner = "crev-dev";
repo = "cargo-crev";
rev = "v${version}";
- sha256 = "sha256-/TROCaguzIdXnkQ4BpVR1W14ppGODGQ0MQAjJExMGVw=";
+ sha256 = "sha256-aqvdAljAJsYtmxz/WtMrrnmJJRXDpqDjUn1LusoM8ns=";
};
- cargoSha256 = "sha256-3uIf6vyeDeww8+dqrzOG4J/T9QbXAnKQKXRbeujeqSo=";
+ cargoSha256 = "sha256-KwnZmehh0vdR1eSPBrY6yHJR6r7mhIEgfN4soEBDTjU=";
nativeBuildInputs = [ perl pkg-config ];
diff --git a/pkgs/development/tools/rust/cargo-make/default.nix b/pkgs/development/tools/rust/cargo-make/default.nix
index 54eead5d2a6..4300719147d 100644
--- a/pkgs/development/tools/rust/cargo-make/default.nix
+++ b/pkgs/development/tools/rust/cargo-make/default.nix
@@ -1,22 +1,31 @@
-{ lib, stdenv, fetchurl, runCommand, fetchCrate, rustPlatform, Security, openssl, pkg-config
+{ lib
+, stdenv
+, fetchurl
+, runCommand
+, fetchCrate
+, rustPlatform
+, Security
+, openssl
+, pkg-config
, SystemConfiguration
+, libiconv
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-make";
- version = "0.32.16";
+ version = "0.32.17";
src = fetchCrate {
inherit pname version;
- sha256 = "sha256-FrrQcZHy5WjNYCod2TBWVAj4clNWPLWLIR2/Kvkz4q0=";
+ sha256 = "sha256-D/8fjJIyHCRzkomRsYUnGjDMCusjNX8ZYmLjowCYgcM=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ]
- ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
+ ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration libiconv ];
- cargoSha256 = "sha256-QEHl/Hhug0Ua/SZV0iq1jc6QGGxA1NwheEgGBZRYunI=";
+ cargoSha256 = "sha256-Upegh3W31sTaXl0iHZ3HiYs9urgXH/XhC0vQBAWvDIc=";
# Some tests fail because they need network access.
# However, Travis ensures a proper build.
diff --git a/pkgs/development/tools/rust/rust-analyzer/default.nix b/pkgs/development/tools/rust/rust-analyzer/default.nix
index df4c4ad77d3..4a30a70fa09 100644
--- a/pkgs/development/tools/rust/rust-analyzer/default.nix
+++ b/pkgs/development/tools/rust/rust-analyzer/default.nix
@@ -6,14 +6,14 @@
rustPlatform.buildRustPackage rec {
pname = "rust-analyzer-unwrapped";
- version = "2021-04-12";
- cargoSha256 = "1mnx0mnfkvz6gmzy2jcl0wrdwd1mgfnrny4xf9wkd5vd4ks4k338";
+ version = "2021-04-19";
+ cargoSha256 = "sha256-CXkI3CQ/v6RBMM2Dpp2u+qnRwba+nqzeaPSJGBiQUoY=";
src = fetchFromGitHub {
owner = "rust-analyzer";
repo = "rust-analyzer";
rev = version;
- sha256 = "1rg20aswbh9palwr3qfcnscsvzmbmhghn4k0nl11m9j7z6hva6bg";
+ sha256 = "sha256-W/cUwZEvlUXzqQ/futeNFwDWR/cTL/RLZaW2srIs83Q=";
};
buildAndTestSubdir = "crates/rust-analyzer";
diff --git a/pkgs/development/tools/sumneko-lua-language-server/default.nix b/pkgs/development/tools/sumneko-lua-language-server/default.nix
index f962447feb7..95c10ad7d26 100644
--- a/pkgs/development/tools/sumneko-lua-language-server/default.nix
+++ b/pkgs/development/tools/sumneko-lua-language-server/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "sumneko-lua-language-server";
- version = "1.16.0";
+ version = "1.20.2";
src = fetchFromGitHub {
owner = "sumneko";
repo = "lua-language-server";
rev = version;
- sha256 = "1fqhvmz7a4qgz3zq6qgpcjhhhm2j4wpx0385n3zcphd9h9s3a9xa";
+ sha256 = "sha256-7Ishq/TonJsteHBGDTNjImIwGPdeRgPS1g60d8bhTYg=";
fetchSubmodules = true;
};
@@ -22,8 +22,8 @@ stdenv.mkDerivation rec {
'';
ninjaFlags = [
- "-f ninja/linux.ninja"
- ];
+ "-fninja/linux.ninja"
+ ];
postBuild = ''
cd ../..
@@ -31,6 +31,8 @@ stdenv.mkDerivation rec {
'';
installPhase = ''
+ runHook preInstall
+
mkdir -p $out/bin $out/extras
cp -r ./{locale,meta,script,*.lua} $out/extras/
cp ./bin/Linux/{bee.so,lpeglabel.so} $out/extras
@@ -40,6 +42,8 @@ stdenv.mkDerivation rec {
--add-flags "-E $out/extras/main.lua \
--logpath='~/.cache/sumneko_lua/log' \
--metapath='~/.cache/sumneko_lua/meta'"
+
+ runHook postInstall
'';
meta = with lib; {
diff --git a/pkgs/development/tools/vala-language-server/default.nix b/pkgs/development/tools/vala-language-server/default.nix
index 696776a6972..4cad79f9a85 100644
--- a/pkgs/development/tools/vala-language-server/default.nix
+++ b/pkgs/development/tools/vala-language-server/default.nix
@@ -16,13 +16,13 @@
stdenv.mkDerivation rec {
pname = "vala-language-server";
- version = "0.48.1";
+ version = "0.48.2";
src = fetchFromGitHub {
owner = "benwaffle";
repo = pname;
rev = version;
- sha256 = "12k095052jkvbiyz8gzkj6w7r7p16d5m18fyikl48yvh5nln8fw0";
+ sha256 = "sha256-vtb2l4su+zuwGbS9F+Sv0tDInQMH4Uw6GjT+s7fHIio=";
};
passthru = {
diff --git a/pkgs/development/web/deno/default.nix b/pkgs/development/web/deno/default.nix
index 6faba30bf77..4586477293b 100644
--- a/pkgs/development/web/deno/default.nix
+++ b/pkgs/development/web/deno/default.nix
@@ -5,6 +5,7 @@
, rust
, rustPlatform
, installShellFiles
+, libiconv
, libobjc
, Security
, CoreServices
@@ -15,20 +16,20 @@
rustPlatform.buildRustPackage rec {
pname = "deno";
- version = "1.9.0";
+ version = "1.9.1";
src = fetchFromGitHub {
owner = "denoland";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-LrJGwsP+P8zXYwboF5791YuWGVdhcQJLOoBv+VzrYzs=";
+ sha256 = "sha256-h8dXGSu7DebzwZdc92A2d9xlYy6wD34phBUj5v5KuIc=";
};
- cargoSha256 = "sha256-JDapls3nRNETri6nZPRjZFlAFVN1Owhp965zf0Rn3ug=";
+ cargoSha256 = "sha256-htxpaALOXFQpQ68YE4b0T0jhcCIONgUZwpMPCcSdcgs=";
# Install completions post-install
nativeBuildInputs = [ installShellFiles ];
- buildInputs = lib.optionals stdenv.isDarwin [ libobjc Security CoreServices Metal Foundation ];
+ buildInputs = lib.optionals stdenv.isDarwin [ libiconv libobjc Security CoreServices Metal Foundation ];
# The rusty_v8 package will try to download a `librusty_v8.a` release at build time to our read-only filesystem
# To avoid this we pre-download the file and place it in the locations it will require it in advance
diff --git a/pkgs/development/web/flyctl/default.nix b/pkgs/development/web/flyctl/default.nix
index 08dc303e1fa..0cf9fc4d727 100644
--- a/pkgs/development/web/flyctl/default.nix
+++ b/pkgs/development/web/flyctl/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "flyctl";
- version = "0.0.170";
+ version = "0.0.210";
src = fetchFromGitHub {
owner = "superfly";
repo = "flyctl";
rev = "v${version}";
- sha256 = "sha256-9lpO4E6tC2ao1/DFu++siHD0RRtOfUAhfMvVZPGdMsk=";
+ sha256 = "sha256-9SHH54ryll2Mt22Z82YQIcNYk9raPyOZ/QFri2ebPrQ=";
};
preBuild = ''
@@ -17,7 +17,7 @@ buildGoModule rec {
subPackages = [ "." ];
- vendorSha256 = "sha256-DPbCC2n4NpcUuniig7BLanJ84ny9U6eyhzGhsJLpgHA=";
+ vendorSha256 = "sha256-eEcFxEpVBad57mJXaCCYVeMO+cooUOLsSTKIZnu8Bok=";
doCheck = false;
diff --git a/pkgs/development/web/nodejs/v16.nix b/pkgs/development/web/nodejs/v16.nix
new file mode 100644
index 00000000000..b114c65cd16
--- /dev/null
+++ b/pkgs/development/web/nodejs/v16.nix
@@ -0,0 +1,13 @@
+{ callPackage, openssl, python3, enableNpm ? true }:
+
+let
+ buildNodejs = callPackage ./nodejs.nix {
+ inherit openssl;
+ python = python3;
+ };
+in
+ buildNodejs {
+ inherit enableNpm;
+ version = "16.0.0";
+ sha256 = "00mada0vvybizygwhzsq6gcz0m2k864lfiiqqlnw8gcc3q8r1js7";
+ }
diff --git a/pkgs/development/web/remarkjs/node-packages.nix b/pkgs/development/web/remarkjs/node-packages.nix
index beac26c5f00..5f5d3576b76 100644
--- a/pkgs/development/web/remarkjs/node-packages.nix
+++ b/pkgs/development/web/remarkjs/node-packages.nix
@@ -3712,7 +3712,7 @@ in
buildInputs = globalBuildInputs;
meta = {
description = "Portable Unix shell commands for Node.js";
- homepage = "http://github.com/shelljs/shelljs";
+ homepage = "https://github.com/shelljs/shelljs";
license = "BSD-3-Clause";
};
production = true;
diff --git a/pkgs/games/flightgear/default.nix b/pkgs/games/flightgear/default.nix
index 62db756a483..0996d4bd512 100644
--- a/pkgs/games/flightgear/default.nix
+++ b/pkgs/games/flightgear/default.nix
@@ -6,15 +6,15 @@
}:
let
- version = "2020.3.4";
+ version = "2020.3.8";
shortVersion = builtins.substring 0 6 version;
data = stdenv.mkDerivation rec {
pname = "flightgear-data";
inherit version;
src = fetchurl {
- url = "mirror://sourceforge/flightgear/release-${shortVersion}/FlightGear-${version}-data.tar.bz2";
- sha256 = "1cqikbqvidfaynml9bhqfr9yw5ga35gpqrbz62z94a1skdijkpkg";
+ url = "mirror://sourceforge/flightgear/release-${shortVersion}/FlightGear-${version}-data.txz";
+ sha256 = "sha256-/KFumHRkmRvsU/L1i11jG/KbqobnOEP7l4lyPMKHycA=";
};
phases = [ "installPhase" ];
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://sourceforge/flightgear/release-${shortVersion}/${pname}-${version}.tar.bz2";
- sha256 = "02d9h10p8hyn0a25csragj6pbwmrir1z8zb92023s9vi21j7bwy8";
+ sha256 = "XXDqhZ9nR+FwQ3LauZe8iGxOjlyDXDrEtj61BQGVDYc=";
};
# Of all the files in the source and data archives, there doesn't seem to be
diff --git a/pkgs/games/ja2-stracciatella/Cargo.lock b/pkgs/games/ja2-stracciatella/Cargo.lock
deleted file mode 100644
index d017e93e4db..00000000000
--- a/pkgs/games/ja2-stracciatella/Cargo.lock
+++ /dev/null
@@ -1,291 +0,0 @@
-[[package]]
-name = "aho-corasick"
-version = "0.5.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "bitflags"
-version = "1.0.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
-name = "dtoa"
-version = "0.4.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
-name = "fuchsia-zircon"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "fuchsia-zircon-sys"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
-name = "getopts"
-version = "0.2.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "itoa"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
-name = "kernel32-sys"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
- "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "libc"
-version = "0.2.42"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
-name = "memchr"
-version = "0.1.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "proc-macro2"
-version = "0.4.6"
-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.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "rand"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)",
- "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "regex"
-version = "0.1.80"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "aho-corasick 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
- "regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
- "thread_local 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
- "utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "regex-syntax"
-version = "0.3.9"
-source = "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.5 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "serde"
-version = "1.0.70"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
-name = "serde_derive"
-version = "1.0.70"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
- "quote 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "syn 0.14.4 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "serde_json"
-version = "1.0.22"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "itoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "shell32-sys"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
- "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "stracciatella"
-version = "0.1.0"
-dependencies = [
- "getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
- "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)",
- "regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)",
- "serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)",
- "serde_derive 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)",
- "serde_json 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)",
- "shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
- "user32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "syn"
-version = "0.14.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
- "quote 0.6.3 (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 = "tempdir"
-version = "0.3.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "thread-id"
-version = "2.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "thread_local"
-version = "0.2.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "thread-id 2.0.0 (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 = "user32-sys"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
- "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
-name = "utf8-ranges"
-version = "0.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
-name = "winapi"
-version = "0.2.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
-name = "winapi"
-version = "0.3.5"
-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-build"
-version = "0.1.1"
-source = "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"
-
-[metadata]
-"checksum aho-corasick 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ca972c2ea5f742bfce5687b9aef75506a764f61d37f8f649047846a9686ddb66"
-"checksum bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d0c54bb8f454c567f21197eefcdbf5679d0bd99f2ddbe52e84c77061952e6789"
-"checksum dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d301140eb411af13d3115f9a562c85cc6b541ade9dfa314132244aaee7489dd"
-"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
-"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
-"checksum getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "0a7292d30132fb5424b354f5dc02512a86e4c516fe544bb7a25e7f266951b797"
-"checksum itoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5adb58558dcd1d786b5f0bd15f3226ee23486e24b7b58304b60f64dc68e62606"
-"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
-"checksum libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)" = "b685088df2b950fccadf07a7187c8ef846a959c142338a48f9dc0b94517eb5f1"
-"checksum memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d8b629fb514376c675b98c1421e80b151d3817ac42d7c667717d282761418d20"
-"checksum proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "effdb53b25cdad54f8f48843d67398f7ef2e14f12c1b4cb4effc549a6462a4d6"
-"checksum quote 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e44651a0dc4cdd99f71c83b561e221f714912d11af1a4dff0631f923d53af035"
-"checksum rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "eba5f8cb59cc50ed56be8880a5c7b496bfd9bd26394e176bc67884094145c2c5"
-"checksum regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)" = "4fd4ace6a8cf7860714a2c2280d6c1f7e6a413486c13298bbc86fd3da019402f"
-"checksum regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957"
-"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5"
-"checksum serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)" = "0c3adf19c07af6d186d91dae8927b83b0553d07ca56cbf7f2f32560455c91920"
-"checksum serde_derive 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)" = "3525a779832b08693031b8ecfb0de81cd71cfd3812088fafe9a7496789572124"
-"checksum serde_json 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)" = "84b8035cabe9b35878adec8ac5fe03d5f6bc97ff6edd7ccb96b44c1276ba390e"
-"checksum shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c"
-"checksum syn 0.14.4 (registry+https://github.com/rust-lang/crates.io-index)" = "2beff8ebc3658f07512a413866875adddd20f4fd47b2a4e6c9da65cd281baaea"
-"checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
-"checksum thread-id 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a9539db560102d1cef46b8b78ce737ff0bb64e7e18d35b2a5688f7d097d0ff03"
-"checksum thread_local 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "8576dbbfcaef9641452d5cf0df9b0e7eeab7694956dd33bb61515fb8f18cfdd5"
-"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 user32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4ef4711d107b21b410a3a974b1204d9accc8b10dad75d8324b5d755de1617d47"
-"checksum utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f"
-"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
-"checksum winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "773ef9dcc5f24b7d850d0ff101e542ff24c3b090a9768e03ff889fdef41f00fd"
-"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
-"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"
diff --git a/pkgs/games/ja2-stracciatella/default.nix b/pkgs/games/ja2-stracciatella/default.nix
index 4dfcc53d339..4f186c3c60a 100644
--- a/pkgs/games/ja2-stracciatella/default.nix
+++ b/pkgs/games/ja2-stracciatella/default.nix
@@ -1,45 +1,57 @@
-{ stdenv, fetchFromGitHub, cmake, SDL2, boost, fltk, rustPlatform }:
+{ stdenv, lib, fetchurl, fetchFromGitHub, cmake, python, rustPlatform, SDL2, fltk, rapidjson, gtest, Carbon, Cocoa }:
let
- version = "0.16.1";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "ja2-stracciatella";
repo = "ja2-stracciatella";
rev = "v${version}";
- sha256 = "1pyn23syg70kiyfbs3pdlq0ixd2bxhncbamnic43rym3dmd52m29";
- };
- lockfile = ./Cargo.lock;
- libstracciatellaSrc = stdenv.mkDerivation {
- name = "libstracciatella-${version}-src";
- src = "${src}/rust";
- installPhase = ''
- mkdir -p $out
- cp -R ./* $out/
- cp ${lockfile} $out/Cargo.lock
- '';
+ sha256 = "0m6rvgkba29jy3yq5hs1sn26mwrjl6mamqnv4plrid5fqaivhn6j";
};
libstracciatella = rustPlatform.buildRustPackage {
pname = "libstracciatella";
inherit version;
- src = libstracciatellaSrc;
- cargoSha256 = "15djs4xaz4y1hpfyfqxdgdasxr0b5idy9i5a7c8cmh0jkxjv8bqc";
- doCheck = false;
+ src = "${src}/rust";
+ cargoSha256 = "0blb971cv9k6c460mwq3zq8vih687bdnb39b9gph1hr90pxjviba";
+
+ preBuild = ''
+ mkdir -p $out/include/stracciatella
+ export HEADER_LOCATION=$out/include/stracciatella/stracciatella.h
+ '';
+ };
+ stringTheoryUrl = "https://github.com/zrax/string_theory/archive/3.1.tar.gz";
+ stringTheory = fetchurl {
+ url = stringTheoryUrl;
+ sha256 = "1flq26kkvx2m1yd38ldcq2k046yqw07jahms8a6614m924bmbv41";
};
in
stdenv.mkDerivation {
pname = "ja2-stracciatella";
- inherit src;
- inherit version;
+ inherit src version;
- nativeBuildInputs = [ cmake ];
- buildInputs = [ SDL2 fltk boost ];
+ nativeBuildInputs = [ cmake python ];
+ buildInputs = [ SDL2 fltk rapidjson gtest ] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa ];
patches = [
./remove-rust-buildstep.patch
];
preConfigure = ''
- sed -i -e 's|rust-stracciatella|${libstracciatella}/lib/libstracciatella.so|g' CMakeLists.txt
- cmakeFlagsArray+=("-DEXTRA_DATA_DIR=$out/share/ja2")
+ # Use rust library built with nix
+ substituteInPlace CMakeLists.txt \
+ --replace lib/libstracciatella_c_api.a ${libstracciatella}/lib/libstracciatella_c_api.a \
+ --replace include/stracciatella ${libstracciatella}/include/stracciatella \
+ --replace bin/ja2-resource-pack ${libstracciatella}/bin/ja2-resource-pack
+
+ # Patch dependencies that are usually loaded by url
+ substituteInPlace dependencies/lib-string_theory/builder/CMakeLists.txt.in \
+ --replace ${stringTheoryUrl} file://${stringTheory}
+
+ cmakeFlagsArray+=("-DLOCAL_RAPIDJSON_LIB=OFF" "-DLOCAL_GTEST_LIB=OFF" "-DEXTRA_DATA_DIR=$out/share/ja2")
+ '';
+
+ doInstallCheck = true;
+ installCheckPhase = ''
+ HOME=/tmp $out/bin/ja2 -unittests
'';
meta = {
diff --git a/pkgs/games/ja2-stracciatella/remove-rust-buildstep.patch b/pkgs/games/ja2-stracciatella/remove-rust-buildstep.patch
index b86589fc671..64e3c11b250 100644
--- a/pkgs/games/ja2-stracciatella/remove-rust-buildstep.patch
+++ b/pkgs/games/ja2-stracciatella/remove-rust-buildstep.patch
@@ -1,21 +1,73 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
-index f354370e0..c9fa23c6d 100644
+index e4e5547af..a3017d197 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
-@@ -159,7 +159,6 @@ add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/src/externalized")
+@@ -175,13 +175,12 @@ if(BUILD_LAUNCHER)
+ endif()
+ message(STATUS "Fltk Libraries: ${FLTK_LIBRARIES}")
+
+-set(JA2_INCLUDES "")
++set(JA2_INCLUDES "include/stracciatella")
+ set(JA2_SOURCES "")
+ add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/src/externalized")
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/src/game")
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/src/sgp")
- add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/src/slog")
--add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/rust")
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/dependencies/lib-smacker")
-
+-add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/dependencies/lib-stracciatella")
+ add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/dependencies/lib-string_theory")
+
if(BUILD_LAUNCHER)
-@@ -235,8 +234,6 @@ copy_assets_dir_to_ja2_binary_after_build("externalized")
- copy_assets_dir_to_ja2_binary_after_build("unittests")
- copy_assets_dir_to_ja2_binary_after_build("mods")
-
--get_property(STRACCIATELLA_SHARED_LIB TARGET rust-stracciatella PROPERTY IMPORTED_LOCATION)
+@@ -239,14 +238,12 @@ string(LENGTH "${CMAKE_SOURCE_DIR}/src/" SOURCE_PATH_SIZE)
+ add_definitions("-DSOURCE_PATH_SIZE=${SOURCE_PATH_SIZE}")
+
+ add_executable(${JA2_BINARY} ${JA2_SOURCES})
+-target_link_libraries(${JA2_BINARY} ${SDL2_LIBRARY} ${GTEST_LIBRARIES} smacker ${STRACCIATELLA_LIBRARIES} string_theory-internal)
+-add_dependencies(${JA2_BINARY} stracciatella)
++target_link_libraries(${JA2_BINARY} ${SDL2_LIBRARY} ${GTEST_LIBRARIES} smacker lib/libstracciatella_c_api.a dl pthread string_theory-internal)
+ set_property(SOURCE ${CMAKE_SOURCE_DIR}/src/game/GameVersion.cc APPEND PROPERTY COMPILE_DEFINITIONS "GAME_VERSION=v${ja2-stracciatella_VERSION}")
+
+ if(BUILD_LAUNCHER)
+ add_executable(${LAUNCHER_BINARY} ${LAUNCHER_SOURCES})
+- target_link_libraries(${LAUNCHER_BINARY} ${FLTK_LIBRARIES} ${STRACCIATELLA_LIBRARIES} string_theory-internal)
+- add_dependencies(${LAUNCHER_BINARY} stracciatella)
++ target_link_libraries(${LAUNCHER_BINARY} ${FLTK_LIBRARIES} lib/libstracciatella_c_api.a dl pthread string_theory-internal)
+ endif()
+
+ macro(copy_assets_dir_to_ja2_binary_after_build DIR)
+@@ -375,12 +372,12 @@ set(CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME}_${CPACK_PACKAGE_VERSION}_${PACKAGE_
+
+ include(CPack)
+
+-if (UNIX AND NOT MINGW AND NOT APPLE)
++if (UNIX)
+ install(TARGETS ${JA2_BINARY} RUNTIME DESTINATION bin)
+ if(BUILD_LAUNCHER)
+ install(TARGETS ${LAUNCHER_BINARY} RUNTIME DESTINATION bin)
+ endif()
+- install(PROGRAMS "${CMAKE_BINARY_DIR}/lib-stracciatella/bin/ja2-resource-pack${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION bin)
++ install(PROGRAMS "bin/ja2-resource-pack" DESTINATION bin)
+ install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/assets/externalized assets/mods assets/unittests DESTINATION share/ja2)
+ if(WITH_EDITOR_SLF)
+ install(FILES "${EDITORSLF_FILE}" DESTINATION share/ja2)
+@@ -400,7 +397,7 @@ else()
+ if(BUILD_LAUNCHER)
+ install(TARGETS ${LAUNCHER_BINARY} RUNTIME DESTINATION .)
+ endif()
+- install(PROGRAMS "${CMAKE_BINARY_DIR}/lib-stracciatella/bin/ja2-resource-pack${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION .)
++ install(PROGRAMS "bin/ja2-resource-pack" DESTINATION .)
+ install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/assets/externalized assets/mods assets/unittests DESTINATION .)
+ if(WITH_EDITOR_SLF)
+ install(FILES "${EDITORSLF_FILE}" DESTINATION .)
+@@ -428,12 +425,6 @@ if (MINGW)
+ install(SCRIPT "${CMAKE_CURRENT_BINARY_DIR}/install-dlls-mingw.cmake")
+ endif()
+
+-if(APPLE)
+- file(GLOB APPLE_DIST_FILES "${CMAKE_CURRENT_SOURCE_DIR}/assets/distr-files-mac/*.txt")
+- install(FILES ${APPLE_DIST_FILES} DESTINATION .)
+- install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/dependencies/lib-SDL2-2.0.8-macos/SDL2.framework DESTINATION .)
+-endif()
-
- if (MSVC OR APPLE)
- add_custom_command(TARGET ${JA2_BINARY} POST_BUILD
- COMMAND ${CMAKE_COMMAND} -E copy
+ ## Uninstall
+
+ add_custom_templated_target("uninstall")
diff --git a/pkgs/games/katago/default.nix b/pkgs/games/katago/default.nix
index 50b6caee621..7a91b698c1c 100644
--- a/pkgs/games/katago/default.nix
+++ b/pkgs/games/katago/default.nix
@@ -33,14 +33,14 @@ let
in env.mkDerivation rec {
pname = "katago";
- version = "1.8.1";
- githash = "73bc3e38b3490cbe00179c9c37f5385dfd60c6bc";
+ version = "1.8.2";
+ githash = "b846bddd88fbc5353e4a93fa514f6cbf45358362";
src = fetchFromGitHub {
owner = "lightvector";
repo = "katago";
rev = "v${version}";
- sha256 = "sha256-Rj6fgj1ZQgYhz6TrZk5b8dCMsCPk5N3qN3kgqV+UEDc=";
+ sha256 = "sha256-kL+y2rsEiC5GGDlWrbzxlJvLxHDCuvVT6CDOlUtXpDk=";
};
fakegit = writeShellScriptBin "git" "echo ${githash}";
diff --git a/pkgs/games/minecraft/default.nix b/pkgs/games/minecraft/default.nix
index 3d0b53035ed..d98a7dd25e2 100644
--- a/pkgs/games/minecraft/default.nix
+++ b/pkgs/games/minecraft/default.nix
@@ -88,11 +88,11 @@ in
stdenv.mkDerivation rec {
pname = "minecraft-launcher";
- version = "2.2.1441";
+ version = "2.2.741";
src = fetchurl {
url = "https://launcher.mojang.com/download/linux/x86_64/minecraft-launcher_${version}.tar.gz";
- sha256 = "03q579hvxnsh7d00j6lmfh53rixdpf33xb5zlz7659pvb9j5w0cm";
+ sha256 = "0bm78ybn91ihibxgmlpk7dl2zxy4a57k86qmb08cif3ifbflzkvw";
};
icon = fetchurl {
diff --git a/pkgs/games/oh-my-git/default.nix b/pkgs/games/oh-my-git/default.nix
new file mode 100644
index 00000000000..89dc1bdd50e
--- /dev/null
+++ b/pkgs/games/oh-my-git/default.nix
@@ -0,0 +1,115 @@
+{ lib
+, copyDesktopItems
+, fetchFromGitHub
+, makeDesktopItem
+, stdenv
+, alsaLib
+, gcc-unwrapped
+, git
+, godot-export-templates
+, godot-headless
+, libGLU
+, libX11
+, libXcursor
+, libXext
+, libXfixes
+, libXi
+, libXinerama
+, libXrandr
+, libXrender
+, libglvnd
+, libpulseaudio
+, zlib
+}:
+
+stdenv.mkDerivation rec {
+ pname = "oh-my-git";
+ version = "0.6.4";
+
+ src = fetchFromGitHub {
+ owner = "git-learning-game";
+ repo = "oh-my-git";
+ rev = version;
+ sha256 = "sha256-GQLHyBUXF+yqEZ/LYutAn6TBCXFX8ViOaERQEm2J6CY=";
+ };
+
+ nativeBuildInputs = [
+ copyDesktopItems
+ godot-headless
+ ];
+
+ buildInputs = [
+ alsaLib
+ gcc-unwrapped.lib
+ git
+ libGLU
+ libX11
+ libXcursor
+ libXext
+ libXfixes
+ libXi
+ libXinerama
+ libXrandr
+ libXrender
+ libglvnd
+ libpulseaudio
+ zlib
+ ];
+
+ desktopItems = [
+ (makeDesktopItem {
+ name = "oh-my-git";
+ exec = "oh-my-git";
+ icon = "oh-my-git";
+ desktopName = "oh-my-git";
+ comment = "An interactive Git learning game!";
+ genericName = "An interactive Git learning game!";
+ categories = "Game;";
+ })
+ ];
+
+ buildPhase = ''
+ runHook preBuild
+
+ # Cannot create file '/homeless-shelter/.config/godot/projects/...'
+ export HOME=$TMPDIR
+
+ # Link the export-templates to the expected location. The --export commands
+ # expects the template-file at .../templates/3.2.3.stable/linux_x11_64_release
+ # with 3.2.3 being the version of godot.
+ mkdir -p $HOME/.local/share/godot
+ ln -s ${godot-export-templates}/share/godot/templates $HOME/.local/share/godot
+
+ mkdir -p $out/share/oh-my-git
+ godot-headless --export "Linux" $out/share/oh-my-git/oh-my-git
+
+ runHook postBuild
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/bin
+ ln -s $out/share/oh-my-git/oh-my-git $out/bin
+
+ # Patch binaries.
+ interpreter=$(cat $NIX_CC/nix-support/dynamic-linker)
+ patchelf \
+ --set-interpreter $interpreter \
+ --set-rpath ${lib.makeLibraryPath buildInputs} \
+ $out/share/oh-my-git/oh-my-git
+
+ mkdir -p $out/share/pixmaps
+ cp images/oh-my-git.png $out/share/pixmaps/oh-my-git.png
+
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ homepage = "https://ohmygit.org/";
+ description = "An interactive Git learning game";
+ license = with licenses; [ blueOak100 ];
+ platforms = [ "x86_64-linux" ];
+ maintainers = with maintainers; [ jojosch ];
+ };
+}
diff --git a/pkgs/games/osu-lazer/default.nix b/pkgs/games/osu-lazer/default.nix
index 2d90dafb28d..81f50e96822 100644
--- a/pkgs/games/osu-lazer/default.nix
+++ b/pkgs/games/osu-lazer/default.nix
@@ -16,13 +16,13 @@ let
in stdenv.mkDerivation rec {
pname = "osu-lazer";
- version = "2021.331.0";
+ version = "2021.410.0";
src = fetchFromGitHub {
owner = "ppy";
repo = "osu";
rev = version;
- sha256 = "dCKBxVDBBhJ7LEawmMOU7PKh0yxmDgVw6PL2F0qA5RU=";
+ sha256 = "twKg9iZdY+zgwEQeHMOlRZKXxAHic7GnoqH0jOdW7fw=";
};
patches = [ ./bypass-tamper-detection.patch ];
diff --git a/pkgs/games/osu-lazer/deps.nix b/pkgs/games/osu-lazer/deps.nix
index a956f9efb2e..f30ac9b13f4 100644
--- a/pkgs/games/osu-lazer/deps.nix
+++ b/pkgs/games/osu-lazer/deps.nix
@@ -261,8 +261,8 @@
})
(fetchNuGet {
name = "JetBrains.Annotations";
- version = "2020.3.0";
- sha256 = "04xlfqnfg3069f014q8f0vx7y70m8nldbf9fia4b50bp3rry2lv2";
+ version = "2021.1.0";
+ sha256 = "07pnhxxlgx8spmwmakz37nmbvgyb6yjrbrhad5rrn6y767z5r1gb";
})
(fetchNuGet {
name = "ManagedBass";
@@ -296,8 +296,8 @@
})
(fetchNuGet {
name = "Microsoft.AspNetCore.App.Runtime.linux-x64";
- version = "5.0.0";
- sha256 = "14njzl0907wzcbsnxl62m4y6mv9pdirm68bj8qbbip0q5a6xgidw";
+ version = "5.0.5";
+ sha256 = "026m19pddhkx5idwpi6mp1yl9yfcfgm2qjp1jh54mdja1d7ng0vk";
})
(fetchNuGet {
name = "Microsoft.AspNetCore.Connections.Abstractions";
@@ -551,8 +551,8 @@
})
(fetchNuGet {
name = "Microsoft.Extensions.ObjectPool";
- version = "5.0.4";
- sha256 = "07kyqbm7f7k4bv3fa54b826b87z00385pqgjzd4s8l26j6p39rrm";
+ version = "5.0.5";
+ sha256 = "0hh0xm14hp479dsd0gb9igz0vbbn3sak27v39phpyilxvk7ky5z1";
})
(fetchNuGet {
name = "Microsoft.Extensions.Options";
@@ -576,8 +576,8 @@
})
(fetchNuGet {
name = "Microsoft.NETCore.App.Runtime.linux-x64";
- version = "5.0.0";
- sha256 = "1k9yxklzdnjfkqysg54dz0mr75yg29fhlls9alh5qlfpsfpk32yq";
+ version = "5.0.5";
+ sha256 = "1h5yry6k9bpqqis2fb1901csb8kipm7anm174fjj41r317vzfjfa";
})
(fetchNuGet {
name = "Microsoft.NETCore.Platforms";
@@ -721,8 +721,8 @@
})
(fetchNuGet {
name = "ppy.osu.Framework";
- version = "2021.330.0";
- sha256 = "01v319nd9szq5z5qq6pa348y1mv93pnhw0vrgbrjwvcs797h7mjl";
+ version = "2021.410.0";
+ sha256 = "1vwdrspdpal44hyspv3rsax8mkszvbnc2xl1xswczx9mzj6qs4by";
})
(fetchNuGet {
name = "ppy.osu.Framework.NativeLibs";
@@ -731,8 +731,8 @@
})
(fetchNuGet {
name = "ppy.osu.Game.Resources";
- version = "2021.211.1";
- sha256 = "0rqv5blmyzvcpk0b1r6fzr1bla62kr2fwkr1f9ahir9zafvk2wmm";
+ version = "2021.410.0";
+ sha256 = "1a5qia4595n0b21dj63sl71ar56m9x1glqwky7a9bb0dqpvfivya";
})
(fetchNuGet {
name = "ppy.osuTK.NS20";
@@ -741,8 +741,8 @@
})
(fetchNuGet {
name = "ppy.SDL2-CS";
- version = "1.0.82";
- sha256 = "0hdfih1hjpqxgblwc947inyfhskkj85f061cagf8gdl69xsp2l1b";
+ version = "1.0.225-alpha";
+ sha256 = "1x8hvk9kikwi7wrvwxdxk3pkbs491iss2mvqgiw844zld5izihqc";
})
(fetchNuGet {
name = "ppy.squirrel.windows";
diff --git a/pkgs/games/osu-lazer/update.sh b/pkgs/games/osu-lazer/update.sh
index 44a4bb3821d..b5c8208fe41 100755
--- a/pkgs/games/osu-lazer/update.sh
+++ b/pkgs/games/osu-lazer/update.sh
@@ -22,21 +22,8 @@ chmod -R +w "$src"
pushd "$src"
-# Setup empty nuget package folder to force reinstall.
mkdir ./nuget_tmp.packages
-cat >./nuget_tmp.config <
-
-
-
-
-
-
-
-
-EOF
-
-dotnet restore osu.Desktop --configfile ./nuget_tmp.config --runtime linux-x64
+dotnet restore osu.Desktop --packages ./nuget_tmp.packages --runtime linux-x64
echo "{ fetchNuGet }: [" >"$deps_file"
while read pkg_spec; do
diff --git a/pkgs/games/steam/fhsenv.nix b/pkgs/games/steam/fhsenv.nix
index 1a2ca5161eb..f17c436cccb 100644
--- a/pkgs/games/steam/fhsenv.nix
+++ b/pkgs/games/steam/fhsenv.nix
@@ -136,6 +136,13 @@ in buildFHSUserEnv rec {
libbsd
alsaLib
+ # Loop Hero
+ libidn2
+ libpsl
+ nghttp2.lib
+ openssl_1_1
+ rtmpdump
+
# needed by getcap for vr startup
libcap
@@ -202,7 +209,6 @@ in buildFHSUserEnv rec {
SDL
SDL2_image
glew110
- openssl
libidn
tbb
wayland
diff --git a/pkgs/games/warzone2100/default.nix b/pkgs/games/warzone2100/default.nix
index a90f76743d7..c0707ed5e86 100644
--- a/pkgs/games/warzone2100/default.nix
+++ b/pkgs/games/warzone2100/default.nix
@@ -39,11 +39,11 @@ in
stdenv.mkDerivation rec {
inherit pname;
- version = "4.0.0";
+ version = "4.0.1";
src = fetchurl {
url = "mirror://sourceforge/${pname}/releases/${version}/${pname}_src.tar.xz";
- sha256 = "1d94072yns2xrjpagw1mqq7iyywhwz7vn3lgjdwmbgjy79jzcs1k";
+ sha256 = "1f8a4kflslsjl8jrryhwg034h1yc9y3y1zmllgww3fqkz3aj4xik";
};
buildInputs = [
diff --git a/pkgs/misc/emulators/retroarch/cores.nix b/pkgs/misc/emulators/retroarch/cores.nix
index 7d0ba259dc5..887e79999ca 100644
--- a/pkgs/misc/emulators/retroarch/cores.nix
+++ b/pkgs/misc/emulators/retroarch/cores.nix
@@ -1011,6 +1011,20 @@ in with lib.licenses;
makefile = "Makefile";
};
+ thepowdertoy = mkLibRetroCore rec {
+ core = "thepowdertoy";
+ src = fetchRetro {
+ repo = "ThePowderToy";
+ rev = "0ff547e89ae9d6475b0226db76832daf03eec937";
+ sha256 = "kDpmo/RPYRvROOX3AhsB5pIl0MfHbQmbyTMciLPDNew=";
+ };
+ description = "Port of The Powder Toy to libretro";
+ license = gpl3Only;
+ extraNativeBuildInputs = [ cmake ];
+ makefile = "Makefile";
+ postBuild = "cd src/";
+ };
+
tic80 = mkLibRetroCore {
core = "tic80";
src = fetchRetro {
diff --git a/pkgs/misc/emulators/ryujinx/default.nix b/pkgs/misc/emulators/ryujinx/default.nix
index 8bad6b3cd9e..db3b87b7b59 100644
--- a/pkgs/misc/emulators/ryujinx/default.nix
+++ b/pkgs/misc/emulators/ryujinx/default.nix
@@ -16,13 +16,13 @@ let
];
in stdenv.mkDerivation rec {
pname = "ryujinx";
- version = "1.0.6807"; # Versioning is based off of the official appveyor builds: https://ci.appveyor.com/project/gdkchan/ryujinx
+ version = "1.0.6835"; # Versioning is based off of the official appveyor builds: https://ci.appveyor.com/project/gdkchan/ryujinx
src = fetchFromGitHub {
owner = "Ryujinx";
repo = "Ryujinx";
- rev = "0ee314fb3b9d476d0d207a3595bde24af9c4b69b";
- sha256 = "1yyjy5qblsdg186hr81qpc07n0cqla67q3hjf2rrzq5pyb10bldy";
+ rev = "e520eecb5ba682d4b51bb782e3bc99fb1d6afe04";
+ sha256 = "1yy1xslnvvl0m7g0jszj2pjwdwf0pbv53crzfkhla3n68kvfy00f";
};
nativeBuildInputs = [ dotnet-sdk_5 dotnetPackages.Nuget cacert makeWrapper wrapGAppsHook gobject-introspection gdk-pixbuf ];
diff --git a/pkgs/misc/emulators/ryujinx/deps.nix b/pkgs/misc/emulators/ryujinx/deps.nix
index 5e3f1a4944f..1ccd7c9b38f 100644
--- a/pkgs/misc/emulators/ryujinx/deps.nix
+++ b/pkgs/misc/emulators/ryujinx/deps.nix
@@ -45,20 +45,15 @@
sha256 = "1j8i5izk97ga30z1qpd765zqd2q5w71y8bhnkqq4bj59768fyxp5";
})
(fetchNuGet {
- name = "GLWidget";
- version = "1.0.2";
- sha256 = "0nb46jiscnsywwdfy7zhx1bw4jfmca3s6l8dhbi99gc4bvp8ar7p";
+ name = "GtkSharp";
+ version = "3.22.25.128";
+ sha256 = "0z0wx0p3gc02r8d7y88k1rw307sb2vapbr1k1yc5qdc38fxz5jsy";
})
(fetchNuGet {
name = "GtkSharp.Dependencies";
version = "1.1.0";
sha256 = "1g1rhcn38ww97638rds6l5bysra43hkhv47fy71fvq89623zgyxn";
})
- (fetchNuGet {
- name = "GtkSharp";
- version = "3.22.25.128";
- sha256 = "0z0wx0p3gc02r8d7y88k1rw307sb2vapbr1k1yc5qdc38fxz5jsy";
- })
(fetchNuGet {
name = "LibHac";
version = "0.12.0";
@@ -66,18 +61,18 @@
})
(fetchNuGet {
name = "Microsoft.AspNetCore.App.Runtime.linux-x64";
- version = "5.0.0";
- sha256 = "14njzl0907wzcbsnxl62m4y6mv9pdirm68bj8qbbip0q5a6xgidw";
+ version = "5.0.5";
+ sha256 = "026m19pddhkx5idwpi6mp1yl9yfcfgm2qjp1jh54mdja1d7ng0vk";
})
(fetchNuGet {
name = "Microsoft.AspNetCore.App.Runtime.osx-x64";
- version = "5.0.0";
- sha256 = "1mmklq1fwq4km9y9jgk63wmwjlarx4npkpvjaiwdzv83vdv104ja";
+ version = "5.0.5";
+ sha256 = "09nsi9fa8kb3jpnim0hdap3jabskvpr4fmpvnj5wsh3gp91vqvgb";
})
(fetchNuGet {
name = "Microsoft.AspNetCore.App.Runtime.win-x64";
- version = "5.0.0";
- sha256 = "0k7q89w3nky4m0j5jsk95c8gczlyp5jl9982gf1hli3gqpl2q4jr";
+ version = "5.0.5";
+ sha256 = "10g2vdsz685agqbd7h7dd9gvs584prpai0zv37r59wzlynj1assl";
})
(fetchNuGet {
name = "Microsoft.CodeCoverage";
@@ -94,35 +89,30 @@
version = "1.0.0";
sha256 = "0mp8ihqlb7fsa789frjzidrfjc1lrhk88qp3xm5qvr7vf4wy4z8x";
})
- (fetchNuGet {
- name = "Microsoft.NET.Test.Sdk";
- version = "16.8.0";
- sha256 = "1ln2mva7j2mpsj9rdhpk8vhm3pgd8wn563xqdcwd38avnhp74rm9";
- })
(fetchNuGet {
name = "Microsoft.NETCore.App.Host.osx-x64";
- version = "5.0.0";
- sha256 = "1nirb155gzn2ws1ayaqspjmjaizw87jq2684mzkn18jv4si0hbpf";
+ version = "5.0.5";
+ sha256 = "14d6wz593dwm2j3apd3ny10idk8bfxqgfrparhc1q7q4i66y21ws";
})
(fetchNuGet {
name = "Microsoft.NETCore.App.Host.win-x64";
- version = "5.0.0";
- sha256 = "0nghghcapc28ixg21wb30ccjirc9wz83h0y3bn5zyfanxv2m2ypx";
+ version = "5.0.5";
+ sha256 = "1233y31z46yqzjgwpa6mmb1h63iqp6wbly6mbwkjqm2adx1wkp47";
})
(fetchNuGet {
name = "Microsoft.NETCore.App.Runtime.linux-x64";
- version = "5.0.0";
- sha256 = "1k9yxklzdnjfkqysg54dz0mr75yg29fhlls9alh5qlfpsfpk32yq";
+ version = "5.0.5";
+ sha256 = "1h5yry6k9bpqqis2fb1901csb8kipm7anm174fjj41r317vzfjfa";
})
(fetchNuGet {
name = "Microsoft.NETCore.App.Runtime.osx-x64";
- version = "5.0.0";
- sha256 = "0lvpf4zz617y94zz3zsmzrg6zcdd6z3z9gz2bd5kq1l8y1pmq77y";
+ version = "5.0.5";
+ sha256 = "1a1ijdk61l0h25sj9ypcf96vz1c08ca7q5809g82qpi9m34kw8b8";
})
(fetchNuGet {
name = "Microsoft.NETCore.App.Runtime.win-x64";
- version = "5.0.0";
- sha256 = "1486654z369857h45v73jz8pwr8ibb97fiw5mfm7f01kdbyjdsdd";
+ version = "5.0.5";
+ sha256 = "1gc4msk61jgj9ill4icp0mn523g411iqpxphp0fykfvqdpqyqg46";
})
(fetchNuGet {
name = "Microsoft.NETCore.Platforms";
@@ -139,11 +129,6 @@
version = "2.0.0";
sha256 = "1fk2fk2639i7nzy58m9dvpdnzql4vb8yl8vr19r2fp8lmj9w2jr0";
})
- (fetchNuGet {
- name = "Microsoft.NETCore.Platforms";
- version = "3.1.0";
- sha256 = "1gc1x8f95wk8yhgznkwsg80adk1lc65v9n5rx4yaa4bc5dva0z3j";
- })
(fetchNuGet {
name = "Microsoft.NETCore.Platforms";
version = "5.0.0";
@@ -159,6 +144,11 @@
version = "1.1.0";
sha256 = "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh";
})
+ (fetchNuGet {
+ name = "Microsoft.NET.Test.Sdk";
+ version = "16.8.0";
+ sha256 = "1ln2mva7j2mpsj9rdhpk8vhm3pgd8wn563xqdcwd38avnhp74rm9";
+ })
(fetchNuGet {
name = "Microsoft.TestPlatform.ObjectModel";
version = "16.8.0";
@@ -189,21 +179,11 @@
version = "4.5.0";
sha256 = "1zapbz161ji8h82xiajgriq6zgzmb1f3ar517p2h63plhsq5gh2q";
})
- (fetchNuGet {
- name = "Microsoft.Win32.Registry";
- version = "4.7.0";
- sha256 = "0bx21jjbs7l5ydyw4p6cn07chryxpmchq2nl5pirzz4l3b0q4dgs";
- })
(fetchNuGet {
name = "Microsoft.Win32.Registry";
version = "5.0.0";
sha256 = "102hvhq2gmlcbq8y2cb7hdr2dnmjzfp2k3asr1ycwrfacwyaak7n";
})
- (fetchNuGet {
- name = "Microsoft.Win32.SystemEvents";
- version = "4.5.0";
- sha256 = "0fnkv3ky12227zqg4zshx4kw2mvysq2ppxjibfw02cc3iprv4njq";
- })
(fetchNuGet {
name = "Microsoft.Win32.SystemEvents";
version = "5.0.0";
@@ -255,15 +235,35 @@
sha256 = "0kxc6z3b8ccdrcyqz88jm5yh5ch9nbg303v67q8sp5hhs8rl8nk6";
})
(fetchNuGet {
- name = "OpenTK.NetStandard";
- version = "1.0.5.32";
- sha256 = "12y8kg73llmq3zibcp6j3hhiw04g7mqlm1nslmb74gfkzx0b4m9f";
+ name = "OpenTK.Core";
+ version = "4.5.0";
+ sha256 = "06qxczikp0aah20d4skk3g588dgh2vn2xffn0ajyyv0475m61s9m";
+ })
+ (fetchNuGet {
+ name = "OpenTK.Graphics";
+ version = "4.5.0";
+ sha256 = "180g5c92fhhhpmwl6paihx4h1bil7akaihlz2qy124n28pf4s988";
+ })
+ (fetchNuGet {
+ name = "OpenTK.Mathematics";
+ version = "4.5.0";
+ sha256 = "1h9dxhq1llxdbgdzsi87ijqgj2ilr3rv0zkxhaa65xrc5x8j8fva";
+ })
+ (fetchNuGet {
+ name = "OpenTK.OpenAL";
+ version = "4.5.0";
+ sha256 = "0lqxpc3vnxglql42x2frvq5bpkl5cf3dpnf9nx6pr3q6qnhigkfb";
})
(fetchNuGet {
name = "PangoSharp";
version = "3.22.25.128";
sha256 = "0dkl9j0yd65s5ds9xj5z6yb7yca7wlycqz25m8dng20d13sqr1zp";
})
+ (fetchNuGet {
+ name = "ppy.SDL2-CS";
+ version = "1.0.225-alpha";
+ sha256 = "1x8hvk9kikwi7wrvwxdxk3pkbs491iss2mvqgiw844zld5izihqc";
+ })
(fetchNuGet {
name = "runtime.any.System.Collections";
version = "4.3.0";
@@ -279,21 +279,26 @@
version = "4.3.0";
sha256 = "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn";
})
- (fetchNuGet {
- name = "runtime.any.System.Globalization.Calendars";
- version = "4.3.0";
- sha256 = "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201";
- })
(fetchNuGet {
name = "runtime.any.System.Globalization";
version = "4.3.0";
sha256 = "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x";
})
+ (fetchNuGet {
+ name = "runtime.any.System.Globalization.Calendars";
+ version = "4.3.0";
+ sha256 = "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201";
+ })
(fetchNuGet {
name = "runtime.any.System.IO";
version = "4.3.0";
sha256 = "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x";
})
+ (fetchNuGet {
+ name = "runtime.any.System.Reflection";
+ version = "4.3.0";
+ sha256 = "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly";
+ })
(fetchNuGet {
name = "runtime.any.System.Reflection.Extensions";
version = "4.3.0";
@@ -304,16 +309,16 @@
version = "4.3.0";
sha256 = "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf";
})
- (fetchNuGet {
- name = "runtime.any.System.Reflection";
- version = "4.3.0";
- sha256 = "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly";
- })
(fetchNuGet {
name = "runtime.any.System.Resources.ResourceManager";
version = "4.3.0";
sha256 = "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl";
})
+ (fetchNuGet {
+ name = "runtime.any.System.Runtime";
+ version = "4.3.0";
+ sha256 = "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b";
+ })
(fetchNuGet {
name = "runtime.any.System.Runtime.Handles";
version = "4.3.0";
@@ -325,20 +330,15 @@
sha256 = "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19";
})
(fetchNuGet {
- name = "runtime.any.System.Runtime";
+ name = "runtime.any.System.Text.Encoding";
version = "4.3.0";
- sha256 = "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b";
+ sha256 = "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3";
})
(fetchNuGet {
name = "runtime.any.System.Text.Encoding.Extensions";
version = "4.3.0";
sha256 = "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8";
})
- (fetchNuGet {
- name = "runtime.any.System.Text.Encoding";
- version = "4.3.0";
- sha256 = "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3";
- })
(fetchNuGet {
name = "runtime.any.System.Threading.Tasks";
version = "4.3.0";
@@ -364,6 +364,16 @@
version = "4.3.0";
sha256 = "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa";
})
+ (fetchNuGet {
+ name = "runtime.native.System";
+ version = "4.0.0";
+ sha256 = "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf";
+ })
+ (fetchNuGet {
+ name = "runtime.native.System";
+ version = "4.3.0";
+ sha256 = "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4";
+ })
(fetchNuGet {
name = "runtime.native.System.IO.Compression";
version = "4.1.0";
@@ -374,25 +384,15 @@
version = "4.0.1";
sha256 = "1hgv2bmbaskx77v8glh7waxws973jn4ah35zysnkxmf0196sfxg6";
})
- (fetchNuGet {
- name = "runtime.native.System.Security.Cryptography.OpenSsl";
- version = "4.3.0";
- sha256 = "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97";
- })
(fetchNuGet {
name = "runtime.native.System.Security.Cryptography";
version = "4.0.0";
sha256 = "0k57aa2c3b10wl3hfqbgrl7xq7g8hh3a3ir44b31dn5p61iiw3z9";
})
(fetchNuGet {
- name = "runtime.native.System";
- version = "4.0.0";
- sha256 = "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf";
- })
- (fetchNuGet {
- name = "runtime.native.System";
+ name = "runtime.native.System.Security.Cryptography.OpenSsl";
version = "4.3.0";
- sha256 = "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4";
+ sha256 = "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97";
})
(fetchNuGet {
name = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl";
@@ -524,15 +524,20 @@
version = "1.0.0-beta0013";
sha256 = "0r0aw8xxd32rwcawawcz6asiyggz02hnzg5hvz8gimq8hvwx1wql";
})
+ (fetchNuGet {
+ name = "SixLabors.ImageSharp";
+ version = "1.0.2";
+ sha256 = "0fhk9sn8k18slfb26wz8mal0j699f7djwhxgv97snz6b10wynfaj";
+ })
(fetchNuGet {
name = "SixLabors.ImageSharp.Drawing";
version = "1.0.0-beta11";
sha256 = "0hl0rs3kr1zdnx3gdssxgli6fyvmwzcfp99f4db71s0i8j8b2bp5";
})
(fetchNuGet {
- name = "SixLabors.ImageSharp";
- version = "1.0.2";
- sha256 = "0fhk9sn8k18slfb26wz8mal0j699f7djwhxgv97snz6b10wynfaj";
+ name = "SPB";
+ version = "0.0.2";
+ sha256 = "178z9mi7zlk0laj79nkjh75ych47jjajiaj33hnh7zfmz05d8h6r";
})
(fetchNuGet {
name = "System.AppContext";
@@ -559,6 +564,16 @@
version = "5.0.0";
sha256 = "14zs2wqkmdlxzj8ikx19n321lsbarx5vl2a8wrachymxn8zb5njh";
})
+ (fetchNuGet {
+ name = "System.Collections";
+ version = "4.0.11";
+ sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6";
+ })
+ (fetchNuGet {
+ name = "System.Collections";
+ version = "4.3.0";
+ sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9";
+ })
(fetchNuGet {
name = "System.Collections.Concurrent";
version = "4.0.12";
@@ -575,14 +590,9 @@
sha256 = "1sdwkma4f6j85m3dpb53v9vcgd0zyc9jb33f8g63byvijcj39n20";
})
(fetchNuGet {
- name = "System.Collections";
- version = "4.0.11";
- sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6";
- })
- (fetchNuGet {
- name = "System.Collections";
+ name = "System.ComponentModel";
version = "4.3.0";
- sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9";
+ sha256 = "0986b10ww3nshy30x9sjyzm0jx339dkjxjj3401r3q0f6fx2wkcb";
})
(fetchNuGet {
name = "System.ComponentModel.EventBasedAsync";
@@ -599,11 +609,6 @@
version = "4.3.0";
sha256 = "17ng0p7v3nbrg3kycz10aqrrlw4lz9hzhws09pfh8gkwicyy481x";
})
- (fetchNuGet {
- name = "System.ComponentModel";
- version = "4.3.0";
- sha256 = "0986b10ww3nshy30x9sjyzm0jx339dkjxjj3401r3q0f6fx2wkcb";
- })
(fetchNuGet {
name = "System.Console";
version = "4.0.0";
@@ -644,11 +649,6 @@
version = "4.3.0";
sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4";
})
- (fetchNuGet {
- name = "System.Drawing.Common";
- version = "4.5.0";
- sha256 = "0knqa0zsm91nfr34br8gx5kjqq4v81zdhqkacvs2hzc8nqk0ddhc";
- })
(fetchNuGet {
name = "System.Drawing.Common";
version = "5.0.1";
@@ -659,6 +659,16 @@
version = "4.0.11";
sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9";
})
+ (fetchNuGet {
+ name = "System.Globalization";
+ version = "4.0.11";
+ sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d";
+ })
+ (fetchNuGet {
+ name = "System.Globalization";
+ version = "4.3.0";
+ sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki";
+ })
(fetchNuGet {
name = "System.Globalization.Calendars";
version = "4.0.1";
@@ -675,19 +685,14 @@
sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls";
})
(fetchNuGet {
- name = "System.Globalization";
- version = "4.0.11";
- sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d";
+ name = "System.IO";
+ version = "4.1.0";
+ sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp";
})
(fetchNuGet {
- name = "System.Globalization";
+ name = "System.IO";
version = "4.3.0";
- sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki";
- })
- (fetchNuGet {
- name = "System.IO.Compression.ZipFile";
- version = "4.0.1";
- sha256 = "0h72znbagmgvswzr46mihn7xm7chfk2fhrp5krzkjf29pz0i6z82";
+ sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f";
})
(fetchNuGet {
name = "System.IO.Compression";
@@ -695,14 +700,9 @@
sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji";
})
(fetchNuGet {
- name = "System.IO.FileSystem.Primitives";
+ name = "System.IO.Compression.ZipFile";
version = "4.0.1";
- sha256 = "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612";
- })
- (fetchNuGet {
- name = "System.IO.FileSystem.Primitives";
- version = "4.3.0";
- sha256 = "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c";
+ sha256 = "0h72znbagmgvswzr46mihn7xm7chfk2fhrp5krzkjf29pz0i6z82";
})
(fetchNuGet {
name = "System.IO.FileSystem";
@@ -715,19 +715,14 @@
sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw";
})
(fetchNuGet {
- name = "System.IO";
- version = "4.1.0";
- sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp";
+ name = "System.IO.FileSystem.Primitives";
+ version = "4.0.1";
+ sha256 = "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612";
})
(fetchNuGet {
- name = "System.IO";
+ name = "System.IO.FileSystem.Primitives";
version = "4.3.0";
- sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f";
- })
- (fetchNuGet {
- name = "System.Linq.Expressions";
- version = "4.1.0";
- sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg";
+ sha256 = "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c";
})
(fetchNuGet {
name = "System.Linq";
@@ -739,6 +734,11 @@
version = "4.3.0";
sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7";
})
+ (fetchNuGet {
+ name = "System.Linq.Expressions";
+ version = "4.1.0";
+ sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg";
+ })
(fetchNuGet {
name = "System.Management";
version = "5.0.0";
@@ -784,6 +784,26 @@
version = "4.3.0";
sha256 = "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx";
})
+ (fetchNuGet {
+ name = "System.Reflection";
+ version = "4.1.0";
+ sha256 = "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9";
+ })
+ (fetchNuGet {
+ name = "System.Reflection";
+ version = "4.3.0";
+ sha256 = "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m";
+ })
+ (fetchNuGet {
+ name = "System.Reflection.Emit";
+ version = "4.0.1";
+ sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp";
+ })
+ (fetchNuGet {
+ name = "System.Reflection.Emit";
+ version = "4.3.0";
+ sha256 = "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74";
+ })
(fetchNuGet {
name = "System.Reflection.Emit.ILGeneration";
version = "4.0.1";
@@ -804,16 +824,6 @@
version = "4.3.0";
sha256 = "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c";
})
- (fetchNuGet {
- name = "System.Reflection.Emit";
- version = "4.0.1";
- sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp";
- })
- (fetchNuGet {
- name = "System.Reflection.Emit";
- version = "4.3.0";
- sha256 = "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74";
- })
(fetchNuGet {
name = "System.Reflection.Extensions";
version = "4.0.1";
@@ -844,16 +854,6 @@
version = "4.3.0";
sha256 = "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1";
})
- (fetchNuGet {
- name = "System.Reflection";
- version = "4.1.0";
- sha256 = "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9";
- })
- (fetchNuGet {
- name = "System.Reflection";
- version = "4.3.0";
- sha256 = "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m";
- })
(fetchNuGet {
name = "System.Resources.ResourceManager";
version = "4.0.1";
@@ -864,6 +864,16 @@
version = "4.3.0";
sha256 = "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49";
})
+ (fetchNuGet {
+ name = "System.Runtime";
+ version = "4.1.0";
+ sha256 = "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m";
+ })
+ (fetchNuGet {
+ name = "System.Runtime";
+ version = "4.3.0";
+ sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7";
+ })
(fetchNuGet {
name = "System.Runtime.CompilerServices.Unsafe";
version = "4.7.0";
@@ -894,16 +904,6 @@
version = "4.3.0";
sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8";
})
- (fetchNuGet {
- name = "System.Runtime.InteropServices.RuntimeInformation";
- version = "4.0.0";
- sha256 = "0glmvarf3jz5xh22iy3w9v3wyragcm4hfdr17v90vs7vcrm7fgp6";
- })
- (fetchNuGet {
- name = "System.Runtime.InteropServices.RuntimeInformation";
- version = "4.3.0";
- sha256 = "0q18r1sh4vn7bvqgd6dmqlw5v28flbpj349mkdish2vjyvmnb2ii";
- })
(fetchNuGet {
name = "System.Runtime.InteropServices";
version = "4.1.0";
@@ -914,6 +914,16 @@
version = "4.3.0";
sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j";
})
+ (fetchNuGet {
+ name = "System.Runtime.InteropServices.RuntimeInformation";
+ version = "4.0.0";
+ sha256 = "0glmvarf3jz5xh22iy3w9v3wyragcm4hfdr17v90vs7vcrm7fgp6";
+ })
+ (fetchNuGet {
+ name = "System.Runtime.InteropServices.RuntimeInformation";
+ version = "4.3.0";
+ sha256 = "0q18r1sh4vn7bvqgd6dmqlw5v28flbpj349mkdish2vjyvmnb2ii";
+ })
(fetchNuGet {
name = "System.Runtime.Numerics";
version = "4.0.1";
@@ -924,26 +934,11 @@
version = "4.1.1";
sha256 = "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k";
})
- (fetchNuGet {
- name = "System.Runtime";
- version = "4.1.0";
- sha256 = "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m";
- })
- (fetchNuGet {
- name = "System.Runtime";
- version = "4.3.0";
- sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7";
- })
(fetchNuGet {
name = "System.Security.AccessControl";
version = "4.5.0";
sha256 = "1wvwanz33fzzbnd2jalar0p0z3x0ba53vzx1kazlskp7pwyhlnq0";
})
- (fetchNuGet {
- name = "System.Security.AccessControl";
- version = "4.7.0";
- sha256 = "0n0k0w44flkd8j0xw7g3g3vhw7dijfm51f75xkm1qxnbh4y45mpz";
- })
(fetchNuGet {
name = "System.Security.AccessControl";
version = "5.0.0";
@@ -989,6 +984,11 @@
version = "4.1.0";
sha256 = "0clg1bv55mfv5dq00m19cp634zx6inm31kf8ppbq1jgyjf2185dh";
})
+ (fetchNuGet {
+ name = "System.Security.Principal";
+ version = "4.3.0";
+ sha256 = "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf";
+ })
(fetchNuGet {
name = "System.Security.Principal.Windows";
version = "4.3.0";
@@ -999,31 +999,11 @@
version = "4.5.0";
sha256 = "0rmj89wsl5yzwh0kqjgx45vzf694v9p92r4x4q6yxldk1cv1hi86";
})
- (fetchNuGet {
- name = "System.Security.Principal.Windows";
- version = "4.7.0";
- sha256 = "1a56ls5a9sr3ya0nr086sdpa9qv0abv31dd6fp27maqa9zclqq5d";
- })
(fetchNuGet {
name = "System.Security.Principal.Windows";
version = "5.0.0";
sha256 = "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8";
})
- (fetchNuGet {
- name = "System.Security.Principal";
- version = "4.3.0";
- sha256 = "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf";
- })
- (fetchNuGet {
- name = "System.Text.Encoding.Extensions";
- version = "4.0.11";
- sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs";
- })
- (fetchNuGet {
- name = "System.Text.Encoding.Extensions";
- version = "4.3.0";
- sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy";
- })
(fetchNuGet {
name = "System.Text.Encoding";
version = "4.0.11";
@@ -1034,6 +1014,16 @@
version = "4.3.0";
sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr";
})
+ (fetchNuGet {
+ name = "System.Text.Encoding.Extensions";
+ version = "4.0.11";
+ sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs";
+ })
+ (fetchNuGet {
+ name = "System.Text.Encoding.Extensions";
+ version = "4.3.0";
+ sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy";
+ })
(fetchNuGet {
name = "System.Text.RegularExpressions";
version = "4.1.0";
@@ -1044,21 +1034,21 @@
version = "4.3.0";
sha256 = "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l";
})
+ (fetchNuGet {
+ name = "System.Threading";
+ version = "4.0.11";
+ sha256 = "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls";
+ })
+ (fetchNuGet {
+ name = "System.Threading";
+ version = "4.3.0";
+ sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34";
+ })
(fetchNuGet {
name = "System.Threading.Overlapped";
version = "4.3.0";
sha256 = "1nahikhqh9nk756dh8p011j36rlcp1bzz3vwi2b4m1l2s3vz8idm";
})
- (fetchNuGet {
- name = "System.Threading.Tasks.Extensions";
- version = "4.0.0";
- sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr";
- })
- (fetchNuGet {
- name = "System.Threading.Tasks.Extensions";
- version = "4.3.0";
- sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z";
- })
(fetchNuGet {
name = "System.Threading.Tasks";
version = "4.0.11";
@@ -1069,6 +1059,16 @@
version = "4.3.0";
sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7";
})
+ (fetchNuGet {
+ name = "System.Threading.Tasks.Extensions";
+ version = "4.0.0";
+ sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr";
+ })
+ (fetchNuGet {
+ name = "System.Threading.Tasks.Extensions";
+ version = "4.3.0";
+ sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z";
+ })
(fetchNuGet {
name = "System.Threading.Thread";
version = "4.3.0";
@@ -1084,16 +1084,6 @@
version = "4.0.1";
sha256 = "15n54f1f8nn3mjcjrlzdg6q3520571y012mx7v991x2fvp73lmg6";
})
- (fetchNuGet {
- name = "System.Threading";
- version = "4.0.11";
- sha256 = "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls";
- })
- (fetchNuGet {
- name = "System.Threading";
- version = "4.3.0";
- sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34";
- })
(fetchNuGet {
name = "System.Xml.ReaderWriter";
version = "4.0.11";
@@ -1114,14 +1104,14 @@
version = "4.3.0";
sha256 = "0bmz1l06dihx52jxjr22dyv5mxv6pj4852lx68grjm7bivhrbfwi";
})
- (fetchNuGet {
- name = "System.Xml.XPath.XmlDocument";
- version = "4.3.0";
- sha256 = "1h9lh7qkp0lff33z847sdfjj8yaz98ylbnkbxlnsbflhj9xyfqrm";
- })
(fetchNuGet {
name = "System.Xml.XPath";
version = "4.3.0";
sha256 = "1cv2m0p70774a0sd1zxc8fm8jk3i5zk2bla3riqvi8gsm0r4kpci";
})
+ (fetchNuGet {
+ name = "System.Xml.XPath.XmlDocument";
+ version = "4.3.0";
+ sha256 = "1h9lh7qkp0lff33z847sdfjj8yaz98ylbnkbxlnsbflhj9xyfqrm";
+ })
]
diff --git a/pkgs/misc/openrussian-cli/default.nix b/pkgs/misc/openrussian-cli/default.nix
new file mode 100644
index 00000000000..ce9a9e49c4c
--- /dev/null
+++ b/pkgs/misc/openrussian-cli/default.nix
@@ -0,0 +1,61 @@
+{ stdenv, lib, fetchFromGitHub, gnumake, pkg-config, wget, unzip, gawk
+, sqlite, which, luaPackages, installShellFiles, makeWrapper
+}:
+stdenv.mkDerivation rec {
+ pname = "openrussian-cli";
+ version = "1.0.0";
+
+ src = fetchFromGitHub {
+ owner = "rhaberkorn";
+ repo = "openrussian-cli";
+ rev = version;
+ sha256 = "1ria7s7dpqip2wdwn35wmkry84g8ghdqnxc9cbxzzq63vl6pgvcn";
+ };
+
+ nativeBuildInputs = [
+ gnumake pkg-config wget unzip gawk sqlite which installShellFiles makeWrapper
+ ];
+
+ buildInputs = with luaPackages; [ lua luasql-sqlite3 luautf8 ];
+
+ makeFlags = [
+ "LUA=${luaPackages.lua}/bin/lua"
+ "LUAC=${luaPackages.lua}/bin/luac"
+ ];
+
+ dontConfigure = true;
+
+ # Disable check as it's too slow.
+ # doCheck = true;
+
+ #This is needed even though it's the default for some reason.
+ checkTarget = "check";
+
+ # Can't use "make install" here
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/bin $out/share/openrussian
+ cp openrussian-sqlite3.db $out/share/openrussian
+ cp openrussian $out/bin
+
+ wrapProgram $out/bin/openrussian \
+ --prefix LUA_PATH ';' "$LUA_PATH" \
+ --prefix LUA_CPATH ';' "$LUA_CPATH"
+
+ runHook postInstall
+ '';
+
+ postInstall = ''
+ installShellCompletion --cmd openrussian --bash ./openrussian-completion.bash
+ installManPage ./openrussian.1
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/rhaberkorn/openrussian-cli";
+ description = "Offline Console Russian Dictionary (based on openrussian.org)";
+ license = with licenses; [ gpl3Only mit cc-by-sa-40 ];
+ maintainers = with maintainers; [ zane ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/misc/screensavers/multilockscreen/default.nix b/pkgs/misc/screensavers/multilockscreen/default.nix
index 56f5c82fe30..3049f3ba2a7 100644
--- a/pkgs/misc/screensavers/multilockscreen/default.nix
+++ b/pkgs/misc/screensavers/multilockscreen/default.nix
@@ -16,13 +16,13 @@ let
in
stdenv.mkDerivation rec {
pname = "multilockscreen";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchFromGitHub {
owner = "jeffmhubbard";
repo = pname;
rev = "v${version}";
- sha256 = "0gmnrq7ibbhiwsn7mfi2r71fwm6nvhiwf4wsyz44cscm474z83p0";
+ sha256 = "1vdai1ymkzlkh5l69s8zpyj2klzm8zyak00vd4p7lcldxfj861ig";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/misc/vim-plugins/deprecated.json b/pkgs/misc/vim-plugins/deprecated.json
index b95e91a19b2..41373adf62b 100644
--- a/pkgs/misc/vim-plugins/deprecated.json
+++ b/pkgs/misc/vim-plugins/deprecated.json
@@ -19,4 +19,4 @@
"date": "2020-03-27",
"new": "YouCompleteMe"
}
-}
\ No newline at end of file
+}
diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix
index dfed2004abd..ba20377a7a0 100644
--- a/pkgs/misc/vim-plugins/generated.nix
+++ b/pkgs/misc/vim-plugins/generated.nix
@@ -65,12 +65,12 @@ let
ale = buildVimPluginFrom2Nix {
pname = "ale";
- version = "2021-04-12";
+ version = "2021-04-20";
src = fetchFromGitHub {
owner = "dense-analysis";
repo = "ale";
- rev = "1cd0c0c33b211b5fface9b29f9c58bc6ae09323e";
- sha256 = "0cx8ap63742xr3zmk1gkqrchfzvzg0j9blggcw63s23wr9d1yriw";
+ rev = "737c1bf1ac9becd67519f7a6832ad276feca8f08";
+ sha256 = "0imngagc6p5mfx1v2maxcwzh75l1y4diyd1ymwjil51x93qkrzxi";
};
meta.homepage = "https://github.com/dense-analysis/ale/";
};
@@ -209,12 +209,12 @@ let
auto-session = buildVimPluginFrom2Nix {
pname = "auto-session";
- version = "2021-04-09";
+ version = "2021-04-18";
src = fetchFromGitHub {
owner = "rmagatti";
repo = "auto-session";
- rev = "49e2a0ef443eb0578c2b884a7b85f9f4e4c08fde";
- sha256 = "1xsb3346qgggpzfln3z1skk4d4hvss3qfck0h5ylpbcbh3f8dxyb";
+ rev = "482329bad5d8e8fbd61ac2041e8a3c88a45dbe20";
+ sha256 = "1yrccyygnz29p9vx1jvyj4imbq3m9rlm37m3cbb9azxmmvdbm0l3";
};
meta.homepage = "https://github.com/rmagatti/auto-session/";
};
@@ -257,12 +257,12 @@ let
barbar-nvim = buildVimPluginFrom2Nix {
pname = "barbar-nvim";
- version = "2021-04-07";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "romgrk";
repo = "barbar.nvim";
- rev = "c5c67f450921dec675b42c7f6f960169411dc7fc";
- sha256 = "17gpmyqqskzmfvqilgdmcp5rb2ddgb8hvjz7ihfyaawp8sy11lv0";
+ rev = "54b4376d9a44b45f12b0f6f5bcc46f98b66782e1";
+ sha256 = "0nh4rgyix8mj3wag8wpcy68avyrh5ps89a842fqdd5x6054d3apv";
};
meta.homepage = "https://github.com/romgrk/barbar.nvim/";
};
@@ -329,12 +329,12 @@ let
bufexplorer = buildVimPluginFrom2Nix {
pname = "bufexplorer";
- version = "2020-02-17";
+ version = "2021-04-20";
src = fetchFromGitHub {
owner = "jlanzarotta";
repo = "bufexplorer";
- rev = "29258f58357acc10c672585a9efe8913d756734d";
- sha256 = "00wjwk9yzfclrbd4p59b5wpl21s2vjs4ahn30xhpza93bk513wnq";
+ rev = "99557c451ff6ed3bbb9b9f6215ad57e919740635";
+ sha256 = "0grkkbvrdnkmvq7wfj0rf128fzlbi3m5z8k4fg66l6gfiyp86zyc";
};
meta.homepage = "https://github.com/jlanzarotta/bufexplorer/";
};
@@ -377,24 +377,24 @@ let
caw-vim = buildVimPluginFrom2Nix {
pname = "caw-vim";
- version = "2021-01-25";
+ version = "2021-04-15";
src = fetchFromGitHub {
owner = "tyru";
repo = "caw.vim";
- rev = "26b91ddfcebaee954a3cd2aec1769a5b16779bdd";
- sha256 = "0yiic0a1l9ggwh3f5y150j74hxj7v783j4y3wnn5j1n7ljvqvhqc";
+ rev = "42637427b1760f3f3006fafe95fb3e25fedca07b";
+ sha256 = "1xyc50y7cicqwvzqyj0jm3bzqbwcy39v4mdjjx2czlmzzgv8qlqy";
};
meta.homepage = "https://github.com/tyru/caw.vim/";
};
chadtree = buildVimPluginFrom2Nix {
pname = "chadtree";
- version = "2021-04-12";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "chadtree";
- rev = "45ace3afea4e722efa3697b37d8c7dd7c58cab9c";
- sha256 = "113g6jqpy06z9mfc5097w99flvj7m6g8nqxv68ikkdqbp73kx51c";
+ rev = "27fefd2ccd0b4c376afdc53e7bb4c6185518d1cd";
+ sha256 = "0l1j2n8v2dngyxym8k0b1gf0dn2cc2gbwy36rrv447zb51g1vlv5";
};
meta.homepage = "https://github.com/ms-jpq/chadtree/";
};
@@ -497,12 +497,12 @@ let
coc-lua = buildVimPluginFrom2Nix {
pname = "coc-lua";
- version = "2021-03-28";
+ version = "2021-04-14";
src = fetchFromGitHub {
owner = "josa42";
repo = "coc-lua";
- rev = "d826e14db13980f7f1734117ff60f5e3573eb2ce";
- sha256 = "1b0yi6513n690y2sqlyzsckr15jim9izkjlfpphpw4a8d819hx7l";
+ rev = "f76e290d6765261b0a4aee2247dfaaba77e30ab9";
+ sha256 = "0xm9clynyp7h248iddpns7rqdllgvf3f34qlxn47fby2nh07galc";
};
meta.homepage = "https://github.com/josa42/coc-lua/";
};
@@ -533,12 +533,12 @@ let
coc-nvim = buildVimPluginFrom2Nix {
pname = "coc-nvim";
- version = "2021-04-03";
+ version = "2021-04-20";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc.nvim";
- rev = "d3e40ceabd76323c07434fc2711521cc8bb2d028";
- sha256 = "0mppsxzcgxg20kf2zwja8r6gascxa9r9c7zh73i00i7n216f8fxd";
+ rev = "19bfd9443708a769b2d1379af874f644ba9f1cd4";
+ sha256 = "0c9i25dsqhb1v6kcym424zmc5yn396wz6k9w71s1ja5q4p1jmxd8";
};
meta.homepage = "https://github.com/neoclide/coc.nvim/";
};
@@ -618,12 +618,12 @@ let
compe-tabnine = buildVimPluginFrom2Nix {
pname = "compe-tabnine";
- version = "2021-04-12";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "tzachar";
repo = "compe-tabnine";
- rev = "def6e1a1c4e4a2c18f7ba3ab61152d96500ba0d3";
- sha256 = "1m8qrf5984kfmmv4yjs0bnqbhg62mmpag6zsw719r95v7r2j8p6n";
+ rev = "cb7f22500a6c3b7e3eda36db6ce9ffe5fb45d94c";
+ sha256 = "0lpy5h6171xjg6dinhv1m98p0qs0a3qrrhhg7vriicz3x4px73fb";
};
meta.homepage = "https://github.com/tzachar/compe-tabnine/";
};
@@ -822,12 +822,12 @@ let
ctrlp-vim = buildVimPluginFrom2Nix {
pname = "ctrlp-vim";
- version = "2020-11-12";
+ version = "2021-04-18";
src = fetchFromGitHub {
owner = "ctrlpvim";
repo = "ctrlp.vim";
- rev = "971c4d41880b72dbbf1620b3ad91418a6a6f6b9c";
- sha256 = "0n68hg59h4rjn0ziqbsh5pr03l3kr98zk54659ny6vq107af1w96";
+ rev = "f68f4d00b9c99d0d711bfde3b071f0dafd249901";
+ sha256 = "0lj596jmisv42mpaxp0w1gm31lyiv28kxjyy7352d16dv5a5432g";
};
meta.homepage = "https://github.com/ctrlpvim/ctrlp.vim/";
};
@@ -846,12 +846,12 @@ let
dashboard-nvim = buildVimPluginFrom2Nix {
pname = "dashboard-nvim";
- version = "2021-03-28";
+ version = "2021-04-17";
src = fetchFromGitHub {
owner = "glepnir";
repo = "dashboard-nvim";
- rev = "181ca6577101c04dd220b7a25096cbd4325979ec";
- sha256 = "03zazbnbcsg272zzx4q4n6vkvcwzm8lh1jw1fzbkn2blmffyjld6";
+ rev = "ba98ab86487b8eda3b0934b5423759944b5f7ebd";
+ sha256 = "1gyk0n8ks7xyjqab0gb7yx4ypl9k7csfjgmha84hy7mz4h08fkxq";
};
meta.homepage = "https://github.com/glepnir/dashboard-nvim/";
};
@@ -882,12 +882,12 @@ let
defx-nvim = buildVimPluginFrom2Nix {
pname = "defx-nvim";
- version = "2021-04-11";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "Shougo";
repo = "defx.nvim";
- rev = "94a655cd9993b152feb6de4d6168d234d4b3f14b";
- sha256 = "0kram585pmj88gvfs71k50lgawg87qbiisw0plzp41hjrgs0ymkz";
+ rev = "3730b008158327d0068b8a9b19d57fd7459bb8b9";
+ sha256 = "0bc1gfwsms0mrxjfp7ia4r2rw1b95ih8xgkh02l9b30wp81xdfr3";
};
meta.homepage = "https://github.com/Shougo/defx.nvim/";
};
@@ -930,12 +930,12 @@ let
denite-nvim = buildVimPluginFrom2Nix {
pname = "denite-nvim";
- version = "2021-04-03";
+ version = "2021-04-17";
src = fetchFromGitHub {
owner = "Shougo";
repo = "denite.nvim";
- rev = "452b1800ad2f2db96847da857f9a0d67ff6ecc95";
- sha256 = "0rhqi6rc3iz549g95m6m6s10hzihyg3fjj4v8dhic3iqpxilw8l8";
+ rev = "c3d1c1893bcaaa6b44135cbc8f3b809b703cf4dc";
+ sha256 = "14y1fz4i7ym2f2q1lv93giq99y6jai0jwdvm5nlcr8ksrazfwq9v";
};
meta.homepage = "https://github.com/Shougo/denite.nvim/";
};
@@ -1172,12 +1172,12 @@ let
deoplete-nvim = buildVimPluginFrom2Nix {
pname = "deoplete-nvim";
- version = "2021-04-05";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "Shougo";
repo = "deoplete.nvim";
- rev = "20d181d84c108ea2b13ce227e9dd5ae13df0e13e";
- sha256 = "058bb2pznmldk8936d69ynqf79apiv0j39sva68qpqmsixnljnz9";
+ rev = "187b2bd2beb7802e66c93900430c29b4ab9c20c8";
+ sha256 = "0l6i6wybhdzbj6p0x86kygyirhnhc1fj67p4l83v3jdgypqy246a";
};
meta.homepage = "https://github.com/Shougo/deoplete.nvim/";
};
@@ -1244,24 +1244,24 @@ let
dracula-vim = buildVimPluginFrom2Nix {
pname = "dracula-vim";
- version = "2021-04-08";
+ version = "2021-04-15";
src = fetchFromGitHub {
owner = "dracula";
repo = "vim";
- rev = "d82b9198d4dda1ac4a96756570f56125a1f86cb1";
- sha256 = "1zj6ifair5gm1nn4nh886y6m8snlhiskiwxlfd1cm7j3xafwqapx";
+ rev = "e9efa96bf130496537c978c8ee150bed280f7b19";
+ sha256 = "0jzn6vax8ia9ha938jbs0wpm6wgz5m4vg6q3w8z562rq8kq70hcx";
};
meta.homepage = "https://github.com/dracula/vim/";
};
echodoc-vim = buildVimPluginFrom2Nix {
pname = "echodoc-vim";
- version = "2021-04-11";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "Shougo";
repo = "echodoc.vim";
- rev = "da1704818a342c4ad17abdc6886836ae61aa6b2a";
- sha256 = "0k1gzajn335518vz1ga957i91pfb04bmhhmzc96l617qdkp3ij30";
+ rev = "63d3c193ccb1652a972ca0def7ab82048bfb6068";
+ sha256 = "0v0fd6n6fza1rj008zpjicvh9d8mcvz3kza8hhby9nx9cjlj2dpc";
};
meta.homepage = "https://github.com/Shougo/echodoc.vim/";
};
@@ -1317,12 +1317,12 @@ let
emmet-vim = buildVimPluginFrom2Nix {
pname = "emmet-vim";
- version = "2021-03-20";
+ version = "2021-04-17";
src = fetchFromGitHub {
owner = "mattn";
repo = "emmet-vim";
- rev = "1f5daf6810d205844c039a4c9efa89317e62259d";
- sha256 = "0250dp2jcxrhx333i6mk99q7ygwa8ac055id9qafdx331v9wxcil";
+ rev = "46e60676f2d6b6f02478e444ae23ee804a3de45e";
+ sha256 = "0civ9sx6qbm2cd0a8m57fangvrb1yrbfldg850avi9ay3s4y2nq5";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/mattn/emmet-vim/";
@@ -1354,12 +1354,12 @@ let
falcon = buildVimPluginFrom2Nix {
pname = "falcon";
- version = "2021-03-22";
+ version = "2021-04-14";
src = fetchFromGitHub {
owner = "fenetikm";
repo = "falcon";
- rev = "f6be01e8642dc8ccc7ed1f37b23f4b0dfa2c6f8c";
- sha256 = "1w4ld5dvy0jxgjvp6yf8qibc4x82hn490vfg0hpln67nr6mhq1iw";
+ rev = "376aacc4ec6dd5495f201bc5bea0c1bcff574535";
+ sha256 = "1y3r36594f6vhgi0gzszl9pf1d7jizxj6iamcpwmbqbj75i62hp3";
};
meta.homepage = "https://github.com/fenetikm/falcon/";
};
@@ -1402,12 +1402,12 @@ let
fern-vim = buildVimPluginFrom2Nix {
pname = "fern-vim";
- version = "2021-03-25";
+ version = "2021-04-18";
src = fetchFromGitHub {
owner = "lambdalisue";
repo = "fern.vim";
- rev = "3f9f1957699346f240a9e71eee83fcb67c8fc0e5";
- sha256 = "1wkxih5glkpvjy6ka42y0x1di2iqm1y7rc93av4gfqhhskryfv0h";
+ rev = "609610754b52d3d32616bd70094dcce3a88db3e6";
+ sha256 = "1va4iaxnb03zk880k2kilsyr498pv0g78418d0nzxa4cdmvxcp5z";
};
meta.homepage = "https://github.com/lambdalisue/fern.vim/";
};
@@ -1523,12 +1523,12 @@ let
fzf-vim = buildVimPluginFrom2Nix {
pname = "fzf-vim";
- version = "2021-03-24";
+ version = "2021-04-14";
src = fetchFromGitHub {
owner = "junegunn";
repo = "fzf.vim";
- rev = "caf7754b2636eabdf1bc11d30daccc5de66951ef";
- sha256 = "1743br19x41rycc1iqh2jiwaa2z80bi2zcd0lr9n17dc733ww5n2";
+ rev = "ee91c93d4cbc6f29cf82877ca39f3ce23d5c5b7b";
+ sha256 = "0zpf45wp0p924x96w9i171w5mbh25rzbmp987wpv8kgfzq7dviir";
};
meta.homepage = "https://github.com/junegunn/fzf.vim/";
};
@@ -1593,30 +1593,54 @@ let
meta.homepage = "https://github.com/eagletmt/ghcmod-vim/";
};
+ gina-vim = buildVimPluginFrom2Nix {
+ pname = "gina-vim";
+ version = "2020-10-07";
+ src = fetchFromGitHub {
+ owner = "lambdalisue";
+ repo = "gina.vim";
+ rev = "97116f338f304802ce2661c2e7c0593e691736f8";
+ sha256 = "1j3sc6dpnwp4fipvv3vycqb77cb450nrk5abc4wpikmj6fgi5hk0";
+ };
+ meta.homepage = "https://github.com/lambdalisue/gina.vim/";
+ };
+
git-blame-nvim = buildVimPluginFrom2Nix {
pname = "git-blame-nvim";
- version = "2021-04-12";
+ version = "2021-04-15";
src = fetchFromGitHub {
owner = "f-person";
repo = "git-blame.nvim";
- rev = "d75b433c1ea96d8133cb33dcdb2d1d47c98e59fb";
- sha256 = "0b726nf63ydfsxc22v1ymz4z8qcp0i2yxgq5dh7i7b5ws809kyn5";
+ rev = "bba913f065b7fba7150e71dc07e093c758c5ca98";
+ sha256 = "1xvy5pnqcrvcs19b2b6l3n9rkj281grcgbrsg87iwvc9sw98bywl";
};
meta.homepage = "https://github.com/f-person/git-blame.nvim/";
};
git-messenger-vim = buildVimPluginFrom2Nix {
pname = "git-messenger-vim";
- version = "2021-03-21";
+ version = "2021-04-18";
src = fetchFromGitHub {
owner = "rhysd";
repo = "git-messenger.vim";
- rev = "6fe62ce47491953487dac540964a4cfb037be7f3";
- sha256 = "0g8gaprkrqs69rplmbf6nc03km6qcapipyc13rghb7fyksad51nr";
+ rev = "866b3ed000d483b27067d9bc89dbaa57a83244e8";
+ sha256 = "1jj2nbsm5g1y9pw0frh35kbj17zpxy56gqym44gv8hy2wbhzwhbf";
};
meta.homepage = "https://github.com/rhysd/git-messenger.vim/";
};
+ git-worktree-nvim = buildVimPluginFrom2Nix {
+ pname = "git-worktree-nvim";
+ version = "2021-04-22";
+ src = fetchFromGitHub {
+ owner = "ThePrimeagen";
+ repo = "git-worktree.nvim";
+ rev = "0ef6f419ba56154320a2547c92bf1ccb08631f9e";
+ sha256 = "1pr4p6akq2wivhqb116jrm72v4m1i649p624p3kb55frfxf5pynn";
+ };
+ meta.homepage = "https://github.com/ThePrimeagen/git-worktree.nvim/";
+ };
+
gitignore-vim = buildVimPluginFrom2Nix {
pname = "gitignore-vim";
version = "2014-03-16";
@@ -1631,12 +1655,12 @@ let
gitsigns-nvim = buildVimPluginFrom2Nix {
pname = "gitsigns-nvim";
- version = "2021-04-12";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "lewis6991";
repo = "gitsigns.nvim";
- rev = "2ba9f5a7610fac660c8266db244eea91b76dcf48";
- sha256 = "1zcflhcpvyl1chsxwdcii8lzhig5fwjpvhr5l3wvpr63vix7iy65";
+ rev = "0b556d0b7ab50e19dc7db903d77ac6a8376d8a49";
+ sha256 = "06v2wbm582hplikjqw01r9zqgg45ji2887n288apg9yx43iknsy3";
};
meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/";
};
@@ -1715,12 +1739,12 @@ let
gruvbox-community = buildVimPluginFrom2Nix {
pname = "gruvbox-community";
- version = "2021-03-17";
+ version = "2021-04-15";
src = fetchFromGitHub {
owner = "gruvbox-community";
repo = "gruvbox";
- rev = "8a36e8dae3e31fa5edfb5ae91fb1c2d36b05979e";
- sha256 = "0yq8bvpqlnj57pl2j4jwwpihpwmq0lym1q5sigvkp0yghlwliqxx";
+ rev = "42668ea643d56729467fb79c1a0a5e30289fe590";
+ sha256 = "090jh2pwkl2mpycnii78457k2pkdj76l9x4p4yn9j662986imnhl";
};
meta.homepage = "https://github.com/gruvbox-community/gruvbox/";
};
@@ -1799,12 +1823,12 @@ let
hop-nvim = buildVimPluginFrom2Nix {
pname = "hop-nvim";
- version = "2021-04-05";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "phaazon";
repo = "hop.nvim";
- rev = "414b9aae83d7b13559ed5031995363fa6c4841f3";
- sha256 = "05cajsdfys608mb5379aj70w4f7pp7x3x3f5c2aryij5fg0mnx5j";
+ rev = "998452d18934af4a527d4e1aa315fd2c74cb652a";
+ sha256 = "0y17zm792fxakja4c852k9pw3lp20vgbyyzrmnc20112dll8vzgn";
};
meta.homepage = "https://github.com/phaazon/hop.nvim/";
};
@@ -2064,24 +2088,24 @@ let
julia-vim = buildVimPluginFrom2Nix {
pname = "julia-vim";
- version = "2021-04-13";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "JuliaEditorSupport";
repo = "julia-vim";
- rev = "c76be0ea28926ab60276fd4788eddbd8c96b66fc";
- sha256 = "1bai15a7wwr7v9z43qjzryb1cpd8xyylfrrlcjjfckw9gbqpgs3w";
+ rev = "5b3984bbd411fae75933dcf21bfe2faeb6ec3b34";
+ sha256 = "1ynd3ricc3xja9b0wswg4dh1b09p8pnppf682bfkm5a5cqar7n5k";
};
meta.homepage = "https://github.com/JuliaEditorSupport/julia-vim/";
};
kotlin-vim = buildVimPluginFrom2Nix {
pname = "kotlin-vim";
- version = "2021-04-11";
+ version = "2021-04-20";
src = fetchFromGitHub {
owner = "udalov";
repo = "kotlin-vim";
- rev = "ea258abc437d3615236d72c8b354de39b409a249";
- sha256 = "1r6wc5nnx6lxc7cyxp5dwzwxgmdrqzxl63m0807sl69rgl2444rq";
+ rev = "e043f6a2ddcb0611e4afcb1871260a520e475c74";
+ sha256 = "0ygvicf8gcaskz33qkfl1yg1jiv0l9cyp8fn2rrnzdsb7amsss0v";
};
meta.homepage = "https://github.com/udalov/kotlin-vim/";
};
@@ -2244,12 +2268,12 @@ let
lightline-bufferline = buildVimPluginFrom2Nix {
pname = "lightline-bufferline";
- version = "2021-03-10";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "mengelbrecht";
repo = "lightline-bufferline";
- rev = "f1feb5b3b9d1b13ccedae475e9346392e17895a4";
- sha256 = "1wki7q6w6ld1lx792f62s8k72ikcdl6il3ybsxxlajmnj5mixvkg";
+ rev = "570e732e9e89f2a900a1e86fb3fa170c7dd201d6";
+ sha256 = "0jvd7jp92qffas5hb2m6jg1vlm4g2is8q8hkj5mhyr5gnbpj2xf0";
};
meta.homepage = "https://github.com/mengelbrecht/lightline-bufferline/";
};
@@ -2280,12 +2304,12 @@ let
lispdocs-nvim = buildVimPluginFrom2Nix {
pname = "lispdocs-nvim";
- version = "2021-03-19";
+ version = "2021-04-14";
src = fetchFromGitHub {
owner = "tami5";
repo = "lispdocs.nvim";
- rev = "ff82d3668497e4520e195748d295cbe9513086b7";
- sha256 = "03698f1lydnql9xi0a1iggpqv3001yn390z9j1hvpwmra3k7lnpg";
+ rev = "5225b347a722ba54ce3744364a3e0ff2939743cd";
+ sha256 = "0x4nshkizivjz5ldb3scsxxi6x379g3rfpiplsixcs6bpxkib166";
};
meta.homepage = "https://github.com/tami5/lispdocs.nvim/";
};
@@ -2328,24 +2352,24 @@ let
lspsaga-nvim = buildVimPluginFrom2Nix {
pname = "lspsaga-nvim";
- version = "2021-04-09";
+ version = "2021-04-18";
src = fetchFromGitHub {
owner = "glepnir";
repo = "lspsaga.nvim";
- rev = "b77a08be564ccba4bd8c68cca89aa87e5520b3c3";
- sha256 = "0hwngd27cdfbcw8l8x4ri93749v5r6z3q9s5h6av27zdb4gbvddd";
+ rev = "333178b4e941eb19d9c97c0b0b5640c76363b0ad";
+ sha256 = "1ygqz8mf8h48jfn17ldr5fnpir1ylf37l10kla8rp197j8acidsy";
};
meta.homepage = "https://github.com/glepnir/lspsaga.nvim/";
};
lualine-nvim = buildVimPluginFrom2Nix {
pname = "lualine-nvim";
- version = "2021-04-12";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "hoob3rt";
repo = "lualine.nvim";
- rev = "8a99a0e9e76d81837ff9156599b399a70cb9fb80";
- sha256 = "18ch67d3in3k1j766cy1wbbnd2dmbrch5rm9yqwys18263cjsihg";
+ rev = "2f17e432ee85420adcf8e0a4ebf6e638657c4253";
+ sha256 = "055pvfmmk8yzjajb9xx46mb5ixass3y1fsvx9p3nchsik1h3vsib";
};
meta.homepage = "https://github.com/hoob3rt/lualine.nvim/";
};
@@ -2424,12 +2448,12 @@ let
minimap-vim = buildVimPluginFrom2Nix {
pname = "minimap-vim";
- version = "2021-03-30";
+ version = "2021-04-13";
src = fetchFromGitHub {
owner = "wfxr";
repo = "minimap.vim";
- rev = "a7af085a6f549875f7721caa7cd3071fba800597";
- sha256 = "0chzim7i3mq156n8zyay4prvyj306z6lqxdljzrz7j4mmkarcxl1";
+ rev = "6afcca86b2274b43de9d39e3c1235f4b0f659129";
+ sha256 = "08wabfqhj697qy92jrf6mzbhjbybyil45fsvhn6q3ffl161gvsak";
};
meta.homepage = "https://github.com/wfxr/minimap.vim/";
};
@@ -2724,24 +2748,24 @@ let
neoformat = buildVimPluginFrom2Nix {
pname = "neoformat";
- version = "2021-02-06";
+ version = "2021-04-20";
src = fetchFromGitHub {
owner = "sbdchd";
repo = "neoformat";
- rev = "a75d96054618c47fbafef964d4d705525e8e37b9";
- sha256 = "0c7k1fhw1fjgby4h99r22sbzn639v76r12dl66fhdrnkvrk0709n";
+ rev = "1a49552cdaddeaaa766a6f0016effe530634b39f";
+ sha256 = "114mp407vck6bm224mig91rka5k7jj6641lllijwj25b3yfkgkmr";
};
meta.homepage = "https://github.com/sbdchd/neoformat/";
};
neogit = buildVimPluginFrom2Nix {
pname = "neogit";
- version = "2021-04-07";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "TimUntersberger";
repo = "neogit";
- rev = "fa941274218fb16464072805a17ba80e7c6f2648";
- sha256 = "12f4f22wdsaa7ac0yzzqzsrrm2vrh0y7jmfir6ngkc9j3l52mg9d";
+ rev = "e28c434c26f76f235087ca65ff8040ff834f9210";
+ sha256 = "0fdbyijlpbh845jfpp5xcc378j5m7h2yav6dwj00bvm1n79zy1wh";
};
meta.homepage = "https://github.com/TimUntersberger/neogit/";
};
@@ -2868,12 +2892,12 @@ let
nerdcommenter = buildVimPluginFrom2Nix {
pname = "nerdcommenter";
- version = "2021-04-06";
+ version = "2021-04-13";
src = fetchFromGitHub {
owner = "preservim";
repo = "nerdcommenter";
- rev = "6d0ab7dec9306fada667ea71edbb3da2b06a40ad";
- sha256 = "0w5vaz7f8r61rizlgn3x9p3yzxw2aca1a76gb0zpalc2n51bdf9s";
+ rev = "1b53686d5f1d1607dc67430e9243283fee3a9764";
+ sha256 = "03qzbvry4mygx109mxxqqmbv9adh9ifsiwl0rsvfgp7kl6l6fzkk";
};
meta.homepage = "https://github.com/preservim/nerdcommenter/";
};
@@ -2940,12 +2964,12 @@ let
nlua-nvim = buildVimPluginFrom2Nix {
pname = "nlua-nvim";
- version = "2021-01-05";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "tjdevries";
repo = "nlua.nvim";
- rev = "c0e8fbcaf8bcf5571a9e1d780a72094aad3f3094";
- sha256 = "0q5aw3n4dsszk5iw7qg01xx1rbrr18jh1wqs6k9dd1kcr6yq22rq";
+ rev = "31e3430acb84368c0933a3e765d834e897dfca2f";
+ sha256 = "0h8908x2pf139q6mxckcglb5w7zxvhp0vj97za0g8343lvlhf0v1";
};
meta.homepage = "https://github.com/tjdevries/nlua.nvim/";
};
@@ -3012,36 +3036,36 @@ let
nvim-autopairs = buildVimPluginFrom2Nix {
pname = "nvim-autopairs";
- version = "2021-04-06";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "windwp";
repo = "nvim-autopairs";
- rev = "cae76770d1f69b927616313fe1676528adb6d62a";
- sha256 = "1kh38zfa4x69m0j94f1wzzw4nqxwd89s50inik32zj5948j6licb";
+ rev = "50a1c65caf42a0dfe3f63b3dfe1867eec5f4889d";
+ sha256 = "1rar4dkd0i277k71a0ydw3ipgbxjjg1hmhddwd993ihcwvk5d496";
};
meta.homepage = "https://github.com/windwp/nvim-autopairs/";
};
nvim-bqf = buildVimPluginFrom2Nix {
pname = "nvim-bqf";
- version = "2021-04-02";
+ version = "2021-04-17";
src = fetchFromGitHub {
owner = "kevinhwang91";
repo = "nvim-bqf";
- rev = "cf9b92326411640891360c7bdd784967a8923f43";
- sha256 = "14jd99i35yl04jhwnccj6bx80xwpn9fl5i3bpd7b7safpd6gfk8m";
+ rev = "20e19029c9d212d8eb43eb590ac7530077e13350";
+ sha256 = "097iplsdkkq72981nwfppj07d0fg0fzjglwlvpxq61w1jwscd8fj";
};
meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/";
};
nvim-bufferline-lua = buildVimPluginFrom2Nix {
pname = "nvim-bufferline-lua";
- version = "2021-04-07";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "akinsho";
repo = "nvim-bufferline.lua";
- rev = "224f2627c471f319626fc7c1ab85f9d7d91bb98a";
- sha256 = "0yxby3p82pjkz8n0vnavbhw0qlva8mfq3nqff4bf1sg9iw0jpfkm";
+ rev = "78ffd345d079246738ea06b04f58ad53503f48e2";
+ sha256 = "08xn8s9asa6b2gpbrsw1iy80s8419bck0z6nh9nmffisr3aga1bn";
};
meta.homepage = "https://github.com/akinsho/nvim-bufferline.lua/";
};
@@ -3072,12 +3096,12 @@ let
nvim-compe = buildVimPluginFrom2Nix {
pname = "nvim-compe";
- version = "2021-04-12";
+ version = "2021-04-19";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "nvim-compe";
- rev = "4b3ade100866bb64b472644642da670e2fc61dde";
- sha256 = "0r3kwi5997rcfpc4gs25xcqslnlfwfm1cz2bgvxz389v71vay0mw";
+ rev = "99452ae6875889c12653963b68e53c4564848954";
+ sha256 = "1d5hpn3mr2h3s5h2svajbxm0n49mmc5w0sip9cpzyfdpbnv1gic3";
};
meta.homepage = "https://github.com/hrsh7th/nvim-compe/";
};
@@ -3096,12 +3120,12 @@ let
nvim-dap = buildVimPluginFrom2Nix {
pname = "nvim-dap";
- version = "2021-04-12";
+ version = "2021-04-18";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-dap";
- rev = "107c6882fa13f77d8a206709e3d50fb0290d57cc";
- sha256 = "0c1wq4s3cjysphvkdicxvc87dg6jr2zmxcxfnpz14ncn1s05gr9h";
+ rev = "d646bbc4c820777c2b61dd73819eead1133b15f8";
+ sha256 = "1bnxpcyrzi71b4ia0p1v8g3qx204ja4g3yfydcppdiwqfkhm2688";
};
meta.homepage = "https://github.com/mfussenegger/nvim-dap/";
};
@@ -3144,12 +3168,12 @@ let
nvim-hlslens = buildVimPluginFrom2Nix {
pname = "nvim-hlslens";
- version = "2021-03-25";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "kevinhwang91";
repo = "nvim-hlslens";
- rev = "fdce47e0bd9669e2424cc2a0112ecb47ba571d13";
- sha256 = "1dn9wr23dizhs7byrim9zd3yi22g629jc2aqfx0q1v1i2i9g107v";
+ rev = "3ad85775c081a8ab8ae8d1f2ecd1afc1bc1500d6";
+ sha256 = "0p55zms25kxlayjwy8i831c01fdja0k8y55iw3nx0p257fb06zbz";
};
meta.homepage = "https://github.com/kevinhwang91/nvim-hlslens/";
};
@@ -3168,12 +3192,12 @@ let
nvim-jdtls = buildVimPluginFrom2Nix {
pname = "nvim-jdtls";
- version = "2021-03-28";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-jdtls";
- rev = "4ebad2d52b7c648a7f6ceb5e62dde49167d07796";
- sha256 = "0cnh6x49yy6z3f3h7q0q8l90cl7dchxfdgz7c143nv5qd3qkgnmc";
+ rev = "362a149dac40c90d917ac7bb78da988b8da6a971";
+ sha256 = "0psd99km6kfqwdw383w41aaq1cipcfhl1v5srjw29y2v6rgvnw9p";
};
meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/";
};
@@ -3192,12 +3216,12 @@ let
nvim-lspconfig = buildVimPluginFrom2Nix {
pname = "nvim-lspconfig";
- version = "2021-04-10";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "neovim";
repo = "nvim-lspconfig";
- rev = "8924812e0d114b67dca376533bef2ac5bb054f8b";
- sha256 = "1dlx2bhvsdm9s5ivpkw5ikhkw6b99zng4p9qdh8ki49f644w5jsr";
+ rev = "0840c91e25557a47ed559d2281b0b65fe33b271f";
+ sha256 = "1k34khp227g9xffnz0sr9bm6h3hnvi3g9csxynpdzd0s2sbjsfgk";
};
meta.homepage = "https://github.com/neovim/nvim-lspconfig/";
};
@@ -3264,48 +3288,48 @@ let
nvim-toggleterm-lua = buildVimPluginFrom2Nix {
pname = "nvim-toggleterm-lua";
- version = "2021-03-23";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "akinsho";
repo = "nvim-toggleterm.lua";
- rev = "84980bd3f549821fe58d1821fdc1e7c54d1ebf3a";
- sha256 = "09dcajyfbimfzgxj57c988rqr6y6ah4p97j04gyvg1mrvlj95dg4";
+ rev = "34cc65e594d4f4b9e0d6658a7ceb49f62820d762";
+ sha256 = "1gg4iyqpy68hhk4wly9k87841zns29vh04wcddn91awj5mpigb40";
};
meta.homepage = "https://github.com/akinsho/nvim-toggleterm.lua/";
};
nvim-tree-lua = buildVimPluginFrom2Nix {
pname = "nvim-tree-lua";
- version = "2021-04-08";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "kyazdani42";
repo = "nvim-tree.lua";
- rev = "82b20f5b5ed741d2e6360990ee11a50f0cd253a4";
- sha256 = "0il4z9ch5jmrwp5c51lxgrj8w3d5av3z5pkwjclh8gwpvm7siwvr";
+ rev = "f39869514645b98ec30bc8826763c288b6cbdbef";
+ sha256 = "0z6arqc2i8745vc08hdbwsm1i4biywq65v1zdzrhs3ysx0agppq0";
};
meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/";
};
nvim-treesitter = buildVimPluginFrom2Nix {
pname = "nvim-treesitter";
- version = "2021-04-10";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter";
- rev = "615afe3541eec0b338b4ff5b6738f69c7f6f8860";
- sha256 = "14n9q9fnfys8vj7m4fbngybcz9f2vzr8f67r5m7nd3lljn2389dg";
+ rev = "e8e8c0f0f21ef5089bb305ded8ed81a16902baa7";
+ sha256 = "19lb10zk6mn09l4adg4xfqpsjbag52fjg9sr2ic8c6la1x8abzqk";
};
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/";
};
nvim-treesitter-context = buildVimPluginFrom2Nix {
pname = "nvim-treesitter-context";
- version = "2021-04-09";
+ version = "2021-04-18";
src = fetchFromGitHub {
owner = "romgrk";
repo = "nvim-treesitter-context";
- rev = "6855cc725ee7d98dff00886d22d687ef7ba82c4f";
- sha256 = "1y2vpgmc2c2fpdxfpxlmz69f36wnp9q0yff6cidal61xaj28w71w";
+ rev = "d5070fb1171220e8db6eef77ed994079198d6522";
+ sha256 = "1x534yrbjnf4bny3bykj7jkydhkjxspmipkbb685ja4nppc2lp41";
};
meta.homepage = "https://github.com/romgrk/nvim-treesitter-context/";
};
@@ -3324,48 +3348,48 @@ let
nvim-treesitter-textobjects = buildVimPluginFrom2Nix {
pname = "nvim-treesitter-textobjects";
- version = "2021-03-31";
+ version = "2021-04-18";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter-textobjects";
- rev = "111cf356fd5c6c52d2dfb9299a76d201624be3cc";
- sha256 = "1dvfwcdj2cbgxlsw09qgsvym8cvg8jval90h4rwmkn7yzh1wyf7a";
+ rev = "18cf678f6218ca40652b6d9017dad1b9e2899ba9";
+ sha256 = "0xawv5pjz0mv4pf06vn3pvl4k996jmw4nmawbizqlvladcc2hc1k";
};
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/";
};
nvim-ts-rainbow = buildVimPluginFrom2Nix {
pname = "nvim-ts-rainbow";
- version = "2021-04-09";
+ version = "2021-04-19";
src = fetchFromGitHub {
owner = "p00f";
repo = "nvim-ts-rainbow";
- rev = "445c02bb35e350df733af3ec70a0a7dea5dbcf43";
- sha256 = "0sh23vfk30492agc0a8jlcsksgw2ny0s3ngmxxy60xs8j4dpfhjs";
+ rev = "d42bf9f52607c1cb281db570f3f47e0d84b03a02";
+ sha256 = "13ndyskp3yx3nazg6xc1j3lzad588a1qdacs6ymh8vs616p5mqsf";
};
meta.homepage = "https://github.com/p00f/nvim-ts-rainbow/";
};
nvim-web-devicons = buildVimPluginFrom2Nix {
pname = "nvim-web-devicons";
- version = "2021-04-06";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "kyazdani42";
repo = "nvim-web-devicons";
- rev = "ecc0ec031ec4330c7c4eaf3ed2efdf1abbaff834";
- sha256 = "1m4bhwb1vg75lizdj8dkai9zcrxgky2g1gm6ivzj7i1y7p1k1ccv";
+ rev = "1db27380053de0cd4aaabd236a67c52d33199f1a";
+ sha256 = "1qq9mk102jj5hqdkmrirccr3jkh2dgsfb3gy4wvpcp7mdcqapsqc";
};
meta.homepage = "https://github.com/kyazdani42/nvim-web-devicons/";
};
nvim-whichkey-setup-lua = buildVimPluginFrom2Nix {
pname = "nvim-whichkey-setup-lua";
- version = "2021-04-08";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "AckslD";
repo = "nvim-whichkey-setup.lua";
- rev = "7299ebd2bcfb412630a18356a653def7e72f162d";
- sha256 = "1kxg7ss95cijf9i8nbsp3jkpmx9x3c4qp52d0ckwcdbyvskkal9y";
+ rev = "b2df0761b8ba3fca31b7ae1b0afcad2f8a4e89f4";
+ sha256 = "02bidgicrrx6jwm6hpcq0waqdzif2rws2q1i47zvi5x9i3zyl5cx";
};
meta.homepage = "https://github.com/AckslD/nvim-whichkey-setup.lua/";
};
@@ -3480,12 +3504,12 @@ let
packer-nvim = buildVimPluginFrom2Nix {
pname = "packer-nvim";
- version = "2021-04-06";
+ version = "2021-04-19";
src = fetchFromGitHub {
owner = "wbthomason";
repo = "packer.nvim";
- rev = "fdf1851c6121dee98294791c72aebff92b99b733";
- sha256 = "1ylwr70z7jlga260ydah03ngh47kf8jh7zgpl9iclih01nz6xwci";
+ rev = "f9dc29914f34cb2371960236d514191b9feba8b5";
+ sha256 = "02vg6m7572867gahvpsc1n9363mbk2ci5cvqwwqyh2spsx5f4g88";
};
meta.homepage = "https://github.com/wbthomason/packer.nvim/";
};
@@ -3564,24 +3588,24 @@ let
playground = buildVimPluginFrom2Nix {
pname = "playground";
- version = "2021-04-11";
+ version = "2021-04-17";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "playground";
- rev = "1bf0f79cb461b11196cc9f419763be3373db2848";
- sha256 = "15b1lszshsf9jz2lb3q2045pjpjig3a6nkz9zvvjh7gwh6xywlv4";
+ rev = "a141bf5c9734ac164cb0dda5e7a2b8b16273a4f6";
+ sha256 = "1grhxhnh5zij2brlk2bmy3b2y8bp9j75hyajfki8dk908pplng0i";
};
meta.homepage = "https://github.com/nvim-treesitter/playground/";
};
plenary-nvim = buildVimPluginFrom2Nix {
pname = "plenary-nvim";
- version = "2021-04-10";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "nvim-lua";
repo = "plenary.nvim";
- rev = "a3276a4752e66a2264988a171d06433b104c9351";
- sha256 = "005xf3g9b38x6b29q9csbr2yyxvpw6f3nr6npygr65a2z4f1cjak";
+ rev = "9bd408ba679d1511e269613af840c5019de59024";
+ sha256 = "1xjrd445jdjy789di6d3kdgxk9ds04mq47qigmplfsnv41d5c2nj";
};
meta.homepage = "https://github.com/nvim-lua/plenary.nvim/";
};
@@ -3793,12 +3817,12 @@ let
registers-nvim = buildVimPluginFrom2Nix {
pname = "registers-nvim";
- version = "2021-04-12";
+ version = "2021-04-13";
src = fetchFromGitHub {
owner = "tversteeg";
repo = "registers.nvim";
- rev = "29771d7b4d7b5b8b4c7398eef1becb911e2f4038";
- sha256 = "07j40j3pjsp4dw1aav3j8b202p2zrqyx2zkfb5g5ng07bma5gszn";
+ rev = "b8ad2cd8a01dc3e4c2530820409d01b1bbd6fb95";
+ sha256 = "1jz41mskrrbb4w2hkxcpmnpgj93nbh2rb30mn566xkjn3zkh1r23";
};
meta.homepage = "https://github.com/tversteeg/registers.nvim/";
};
@@ -3839,6 +3863,18 @@ let
meta.homepage = "https://github.com/gu-fan/riv.vim/";
};
+ rnvimr = buildVimPluginFrom2Nix {
+ pname = "rnvimr";
+ version = "2020-10-02";
+ src = fetchFromGitHub {
+ owner = "kevinhwang91";
+ repo = "rnvimr";
+ rev = "d83f5a8e070a1fc7e7af0aeea58e71b78956daab";
+ sha256 = "0iwj01p9c2kczhx69vxrh1qd4z41ymcgfq5235b1l0rnz4d6v82y";
+ };
+ meta.homepage = "https://github.com/kevinhwang91/rnvimr/";
+ };
+
robotframework-vim = buildVimPluginFrom2Nix {
pname = "robotframework-vim";
version = "2017-04-14";
@@ -3877,12 +3913,12 @@ let
rust-tools-nvim = buildVimPluginFrom2Nix {
pname = "rust-tools-nvim";
- version = "2021-04-11";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "simrat39";
repo = "rust-tools.nvim";
- rev = "230b147432556f2c751e7348a4915e30fd3f8023";
- sha256 = "0r2d8qqwmjd571h89i4ph44mzmfwnlyyfa7pq4jjsnhns9c6qd47";
+ rev = "cd1b5632cc2b7981bd7bdb9e55701ae58942864f";
+ sha256 = "1jam4fnzg0nvj06d1vd9ryaan8fza7xc7fwdd7675bw828cs2fq8";
};
meta.homepage = "https://github.com/simrat39/rust-tools.nvim/";
};
@@ -3985,12 +4021,12 @@ let
sideways-vim = buildVimPluginFrom2Nix {
pname = "sideways-vim";
- version = "2021-04-10";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "AndrewRadev";
repo = "sideways.vim";
- rev = "a36b8f129e99becc5e00ee3267695f62c3937a2f";
- sha256 = "0sk8xkqi3bciqwdd71z51mrx4dhy2i5nrf0b1c1xbzxbg3vkbvc3";
+ rev = "93021c0623c1822502a72131e2d45617510428b9";
+ sha256 = "042d7zmwmi0xhlshwwrf9bhc0j4ybksxxnrs986vm65y58c11fk3";
};
meta.homepage = "https://github.com/AndrewRadev/sideways.vim/";
};
@@ -4057,12 +4093,12 @@ let
sonokai = buildVimPluginFrom2Nix {
pname = "sonokai";
- version = "2021-04-10";
+ version = "2021-04-17";
src = fetchFromGitHub {
owner = "sainnhe";
repo = "sonokai";
- rev = "7a89d2d7ab1d8a92d137cdb358e7c5d661e7ceb3";
- sha256 = "0yk79151fwbjdf2sy5ri2gg58g052y31dml9ilbwdq7f4jncgljk";
+ rev = "764bd716f08f1441e0020b8ae0c8d1b53970e4a9";
+ sha256 = "1f21mn67cdiyq2pi92agvvzfprvr78kqc89bc3wh2k8ij47szmp6";
};
meta.homepage = "https://github.com/sainnhe/sonokai/";
};
@@ -4166,24 +4202,24 @@ let
sql-nvim = buildVimPluginFrom2Nix {
pname = "sql-nvim";
- version = "2021-02-09";
+ version = "2021-04-13";
src = fetchFromGitHub {
owner = "tami5";
repo = "sql.nvim";
- rev = "96d000d9eff0165c7e0496f73787cc56d7c1581c";
- sha256 = "1n9j3wv5xifs7ppgjnnbvx9p4h4llshbzgrly5b7lx0nnb91yqg0";
+ rev = "afd60eef9edff543d4d05ac51d518fd501f2e413";
+ sha256 = "115l3dp1i7pmfsqyqir5c73bprvsnnm737sbbz0dwibnlr5sd2q3";
};
meta.homepage = "https://github.com/tami5/sql.nvim/";
};
srcery-vim = buildVimPluginFrom2Nix {
pname = "srcery-vim";
- version = "2020-12-22";
+ version = "2021-04-14";
src = fetchFromGitHub {
owner = "srcery-colors";
repo = "srcery-vim";
- rev = "8cd04af0507635a8368609ede79a332b96a7a245";
- sha256 = "0gb1mjr2yryrq0p9q17d4ndyi7b6wyba3s8ds72wf5bkl4vzrsbd";
+ rev = "9c692e3f17b3485969b55d76a708136e2ccaa5de";
+ sha256 = "1cd4vxx0zb4xcn2yp7kl5xgl8crfr0fwifn4apkn878lqx6ni7gj";
};
meta.homepage = "https://github.com/srcery-colors/srcery-vim/";
};
@@ -4262,12 +4298,12 @@ let
syntastic = buildVimPluginFrom2Nix {
pname = "syntastic";
- version = "2021-03-15";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "vim-syntastic";
repo = "syntastic";
- rev = "f2ddb480c5afa1c0f155d78e6fc7853fd20f0420";
- sha256 = "05ca80alkhnxj1klyy729y81g9ng2n841djxgd7zjg8cpkk94kw3";
+ rev = "a739985ef9fbb9888bdeea2f442d0574a9db0565";
+ sha256 = "0ajpn3q36mvczmvs0g17n1lz0h69rvm25bjsalw83mjxwn46g1h4";
};
meta.homepage = "https://github.com/vim-syntastic/syntastic/";
};
@@ -4358,36 +4394,36 @@ let
tcomment_vim = buildVimPluginFrom2Nix {
pname = "tcomment_vim";
- version = "2021-03-31";
+ version = "2021-04-14";
src = fetchFromGitHub {
owner = "tomtom";
repo = "tcomment_vim";
- rev = "8b69645999fab1933faf4fb53ae930f7c4368e79";
- sha256 = "1x4mwg8dvfw1plkifawckkdi7brqs9rxpm8irp1q7kfywiwbyw0y";
+ rev = "a15822ec1b42b7d43f5c8affaa3ad2c553a2831f";
+ sha256 = "0bl4shhk5ldqamq2zk8sv2bdswd9a4762fh2smj0h1jgs2ff5pkm";
};
meta.homepage = "https://github.com/tomtom/tcomment_vim/";
};
telescope-frecency-nvim = buildVimPluginFrom2Nix {
pname = "telescope-frecency-nvim";
- version = "2021-03-10";
+ version = "2021-04-17";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope-frecency.nvim";
- rev = "926fbde059d6a7cefcccdd92b40fa866e073ba41";
- sha256 = "100zi9ncz2b6hb5y9hxcsj5ra81kq8j2b4y8ck56y4yg96yi03pd";
+ rev = "721300e3d6f4a7157a781014d3d69bb1c7b702a3";
+ sha256 = "1981lfk7xckvf2jmhnnrb58iwb1s3qzz84g52h4rvbjr7dbrr4xk";
};
meta.homepage = "https://github.com/nvim-telescope/telescope-frecency.nvim/";
};
telescope-fzf-writer-nvim = buildVimPluginFrom2Nix {
pname = "telescope-fzf-writer-nvim";
- version = "2021-01-10";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope-fzf-writer.nvim";
- rev = "9535863f519be3d5e57fd50916f96594241bfe16";
- sha256 = "0jmkzjqlcz47hzp44407xwkmirgprzkwrz6x8ax771gpk8cghfrx";
+ rev = "00a1ab1b0aeaa4ad9da238861325ea1ee6d90a44";
+ sha256 = "1c5kiqxg7i1cm69xzvlrrz8dsrpfz8c9sfrnhqc4p6c95kfsna57";
};
meta.homepage = "https://github.com/nvim-telescope/telescope-fzf-writer.nvim/";
};
@@ -4431,12 +4467,12 @@ let
telescope-nvim = buildVimPluginFrom2Nix {
pname = "telescope-nvim";
- version = "2021-04-09";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope.nvim";
- rev = "5bd6f5ca9828ea02f2c54d616ad65c72a5cdd7fb";
- sha256 = "0h47x7nqhr3wvxspymvgbyngqickvbxg13l1j525f3y68j4b2arg";
+ rev = "c6980a9acf8af836196508000c34dcb06b11137b";
+ sha256 = "0q2xqxn56gdll1pk6f9kkkfwrp1hlawqmfmj1rzp5aahm77jdx9x";
};
meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/";
};
@@ -4612,12 +4648,12 @@ let
ultisnips = buildVimPluginFrom2Nix {
pname = "ultisnips";
- version = "2021-04-11";
+ version = "2021-04-18";
src = fetchFromGitHub {
owner = "SirVer";
repo = "ultisnips";
- rev = "3ccb1a7e75b31add82730f3b95c2be5c130b7ce4";
- sha256 = "0rhkpzz0ss8sb6jf3ygvavygmqiy8a418685izanvyplwhqi5zy4";
+ rev = "204b501cc8f4acd7f32ebdea262bd5772ca007a2";
+ sha256 = "0jdb3v8lplrl3sqrmx8j8p4pirnwc42fc01arw64rjigrh0fwm4k";
};
meta.homepage = "https://github.com/SirVer/ultisnips/";
};
@@ -4636,12 +4672,12 @@ let
unicode-vim = buildVimPluginFrom2Nix {
pname = "unicode-vim";
- version = "2021-02-01";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "chrisbra";
repo = "unicode.vim";
- rev = "afb8db4f81580771c39967e89bc5772e72b9018e";
- sha256 = "05d15yr5r8265j3yr8yz1dxl8p4p4nack4ldn663rmp29wm1q5pi";
+ rev = "090e77e30e46aceafd53a3219fb2a81b79927d8d";
+ sha256 = "136a8c4d4nrzvab2qa6sxc81x1mwg56nn8ajxikqgyvsr9fp1f9i";
};
meta.homepage = "https://github.com/chrisbra/unicode.vim/";
};
@@ -4960,36 +4996,36 @@ let
vim-airline = buildVimPluginFrom2Nix {
pname = "vim-airline";
- version = "2021-03-27";
+ version = "2021-04-15";
src = fetchFromGitHub {
owner = "vim-airline";
repo = "vim-airline";
- rev = "ed60e1d36912f64fdbed5640532b1067e11557ca";
- sha256 = "0yijan5nknkkxr36rncscm043badn49w6778nwyazi2fx4266jfn";
+ rev = "07ab201a272fe8a848141a60adec3c0b837c0b37";
+ sha256 = "131fj6fmpgbx7hiql1ci60rnpfffkzww0yf6ag3sclvnw375ylx4";
};
meta.homepage = "https://github.com/vim-airline/vim-airline/";
};
vim-airline-clock = buildVimPluginFrom2Nix {
pname = "vim-airline-clock";
- version = "2018-05-08";
+ version = "2021-04-14";
src = fetchFromGitHub {
owner = "enricobacis";
repo = "vim-airline-clock";
- rev = "a752ae89d833ce14f87e303f3f479c01065077ca";
- sha256 = "0wbaxm1k9j4cl5vw1wppsds0afc0h3n2ipp8xhgdh5jswjhr6wlc";
+ rev = "c37797d40aa882a71fc3fba0cc27abc637886623";
+ sha256 = "0rj53x4b0vjfrjvpr09vlz69r3y2rym4dab5lyx0sp3sgz9jqizm";
};
meta.homepage = "https://github.com/enricobacis/vim-airline-clock/";
};
vim-airline-themes = buildVimPluginFrom2Nix {
pname = "vim-airline-themes";
- version = "2021-03-03";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "vim-airline";
repo = "vim-airline-themes";
- rev = "fa808d74e0aacf131337b58f01ee45fd3d3588af";
- sha256 = "02dq887676dq2rm1fxpzf3piyabs6zj0rvc70nxa5vvlv68qp6k7";
+ rev = "0f9995d5996adf613297896c744415cd9e6b7a80";
+ sha256 = "1zwicvlrfpvgczjnzjdkjhv2b110v5xbmvj132xl8a7xsj3rzg1d";
};
meta.homepage = "https://github.com/vim-airline/vim-airline-themes/";
};
@@ -5056,12 +5092,12 @@ let
vim-autoformat = buildVimPluginFrom2Nix {
pname = "vim-autoformat";
- version = "2021-04-01";
+ version = "2021-04-20";
src = fetchFromGitHub {
owner = "Chiel92";
repo = "vim-autoformat";
- rev = "781c72c0625728eb5677a6952e57f282070666f8";
- sha256 = "14l7h9h76x7cvvka8djn08dh3rmj34bycm8vqavh20nf2v8n9j2g";
+ rev = "7ea00a64553854e04ce12be1fe665e02a0c7d9db";
+ sha256 = "1jy5c50rd27k43rgl9wim502rp00cfnyh2zkd5bvbg0j85a9q72k";
};
meta.homepage = "https://github.com/Chiel92/vim-autoformat/";
};
@@ -5116,12 +5152,12 @@ let
vim-beancount = buildVimPluginFrom2Nix {
pname = "vim-beancount";
- version = "2021-03-07";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "nathangrigg";
repo = "vim-beancount";
- rev = "30b55500094325af9e9498b72e75c8c1090df436";
- sha256 = "0bh7q7s3zb2yrnck3zx1cx0kv8lm8zp4p5fwj6kv35y27v109pfm";
+ rev = "dd2f56a122b698454af582cbe7eae471dbdc48f8";
+ sha256 = "00wcq3wg02rjzhc83cm4gvc9fw78a7s5gds4qdn7zqf55ha2d6vi";
};
meta.homepage = "https://github.com/nathangrigg/vim-beancount/";
};
@@ -5212,12 +5248,12 @@ let
vim-choosewin = buildVimPluginFrom2Nix {
pname = "vim-choosewin";
- version = "2021-04-06";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "t9md";
repo = "vim-choosewin";
- rev = "1ca7da94aa1b8761f4212194e3c55e4a080d6525";
- sha256 = "0nr6k8g0l27g4lczsy30cnh1il547qgbs4xl936v43gp4wvybah4";
+ rev = "839da609d9b811370216bdd9d4512ec2d0ac8644";
+ sha256 = "1451ji3a7waxz1kc8l2hw96fff54xwa7q8glrin8qxn48fc4605n";
};
meta.homepage = "https://github.com/t9md/vim-choosewin/";
};
@@ -5236,12 +5272,12 @@ let
vim-clap = buildVimPluginFrom2Nix {
pname = "vim-clap";
- version = "2021-04-07";
+ version = "2021-04-17";
src = fetchFromGitHub {
owner = "liuchengxu";
repo = "vim-clap";
- rev = "ee7e6a5782ec7033f361311f8f61f23146822e62";
- sha256 = "0gr2sh6fbc8qfz0xlv5rhkg8jxh81wb2lb141m0hyc0fk1n2pya7";
+ rev = "8e13b23d69549c95d9c223ea5c2487d5dd9558f7";
+ sha256 = "1biiq07dhrz9vhk0yg3zkkv3329nyla6lp8kavdzqrvqg0hsbr2j";
};
meta.homepage = "https://github.com/liuchengxu/vim-clap/";
};
@@ -5296,12 +5332,12 @@ let
vim-codefmt = buildVimPluginFrom2Nix {
pname = "vim-codefmt";
- version = "2021-03-28";
+ version = "2021-04-15";
src = fetchFromGitHub {
owner = "google";
repo = "vim-codefmt";
- rev = "048baf8361d7ea24bfbaa4427ab4de08c39b0d57";
- sha256 = "17xnxka4q7fqpl52x5fh2kpqzs7h1ql2lvv6sv7a0apf2qafs0qy";
+ rev = "793d816524934e6553c76437120eea5df8e85a1e";
+ sha256 = "174wq1sq862s474bhfq0w8lnmcilq75gf2sdp1hws7wj0fvn10h3";
};
meta.homepage = "https://github.com/google/vim-codefmt/";
};
@@ -5404,12 +5440,12 @@ let
vim-cpp-enhanced-highlight = buildVimPluginFrom2Nix {
pname = "vim-cpp-enhanced-highlight";
- version = "2019-11-14";
+ version = "2021-04-19";
src = fetchFromGitHub {
owner = "octol";
repo = "vim-cpp-enhanced-highlight";
- rev = "27e0ffc215b81fa5aa87eca396acd4421d36c060";
- sha256 = "15nyd4yssswyi4brkch09rca0qh7p77li4xyrivmiapkr4a60vwb";
+ rev = "4b7314a497ea2dd0a6911ccb94ce83b2d8684617";
+ sha256 = "1fvy56r8p0fp8ipsfw6wiq6ppv541849cazzmp3da203ixs87wd1";
};
meta.homepage = "https://github.com/octol/vim-cpp-enhanced-highlight/";
};
@@ -5488,12 +5524,12 @@ let
vim-dadbod = buildVimPluginFrom2Nix {
pname = "vim-dadbod";
- version = "2021-04-02";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-dadbod";
- rev = "33c86149c0aa114a5d14a1a2f2b5cbcc78cc0116";
- sha256 = "01rqs6hcfd1ih1hr8bbwl1f3g86q41g0jbvrn5fpdfr9ccjy2ip1";
+ rev = "63bfd6d99ba17832f4740efa5e2e6ad6537d4552";
+ sha256 = "0p9n1n8n0167kgq4wwwxsnair2hqqvy6vwcqchnb15hifl3cl0w3";
};
meta.homepage = "https://github.com/tpope/vim-dadbod/";
};
@@ -5584,16 +5620,28 @@ let
vim-dispatch = buildVimPluginFrom2Nix {
pname = "vim-dispatch";
- version = "2021-03-26";
+ version = "2021-04-17";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-dispatch";
- rev = "4313cbb398d8b61b08be09f9b5a9ae4270c86004";
- sha256 = "154vxj4bd10i70wd0d40g9j2yji6l5y00a0y4xk9402x5yljjmwr";
+ rev = "250ea269e206445d10700b299afd3eb993e939ad";
+ sha256 = "1fcp2nsgamkxm7x0mn1n3xp02dc7x773cdp9p30ikqn44pzgyq10";
};
meta.homepage = "https://github.com/tpope/vim-dispatch/";
};
+ vim-dispatch-neovim = buildVimPluginFrom2Nix {
+ pname = "vim-dispatch-neovim";
+ version = "2017-01-18";
+ src = fetchFromGitHub {
+ owner = "radenling";
+ repo = "vim-dispatch-neovim";
+ rev = "c8c4e21a95c25032a041002f9bf6e45a75a73021";
+ sha256 = "111n3f7lv9nkpj200xh0fwbi3scjqyivpw5fwdjdyiqzd6qabxml";
+ };
+ meta.homepage = "https://github.com/radenling/vim-dispatch-neovim/";
+ };
+
vim-docbk = buildVimPluginFrom2Nix {
pname = "vim-docbk";
version = "2015-04-01";
@@ -5680,12 +5728,12 @@ let
vim-elixir = buildVimPluginFrom2Nix {
pname = "vim-elixir";
- version = "2021-04-10";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "elixir-editors";
repo = "vim-elixir";
- rev = "5a1811c3c70adeee42d9dc5faae1cba1d57461f9";
- sha256 = "03cqsv2y1zns2sj6i9afxb4yjnzd42nmwijdlbwbqnnjp03xq1ns";
+ rev = "c3cb96e153728fbfd050173b4af19118b131f278";
+ sha256 = "1v0rgzpnpanics4zhx3y9m6ppa727yc0mvcx065jg2a2a1563sgy";
};
meta.homepage = "https://github.com/elixir-editors/vim-elixir/";
};
@@ -5884,12 +5932,12 @@ let
vim-floaterm = buildVimPluginFrom2Nix {
pname = "vim-floaterm";
- version = "2021-04-12";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "voldikss";
repo = "vim-floaterm";
- rev = "b7747704c4df716efd21f331b4d94336c490a5ad";
- sha256 = "0sl40fvdciir9cbb4bcll971zhk38n6h8kmqy473viki149lg7pa";
+ rev = "4a1938457489fe072acf2fbbe7142a3cfb0d8ad8";
+ sha256 = "1va57czyrihcc2cihbbil5vqhnlzvjrb9bw7wirdrpjrd04ciaa4";
};
meta.homepage = "https://github.com/voldikss/vim-floaterm/";
};
@@ -5944,12 +5992,12 @@ let
vim-fugitive = buildVimPluginFrom2Nix {
pname = "vim-fugitive";
- version = "2021-04-12";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-fugitive";
- rev = "ae45609cfc3fae91bb7859dde95cb0aee493f34c";
- sha256 = "17m46r23gbrj8qh6vglcwhkqikjipvkyskkx1k9j9x29vnwz2r54";
+ rev = "895e56daca03c441427f2adca291cb10ea4d7ca8";
+ sha256 = "139zdz0zsaqpwbscqzp61xilrvdjlvhrn985mfpgiwwrr6sa6gdr";
};
meta.homepage = "https://github.com/tpope/vim-fugitive/";
};
@@ -6016,12 +6064,12 @@ let
vim-gitgutter = buildVimPluginFrom2Nix {
pname = "vim-gitgutter";
- version = "2021-03-19";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "airblade";
repo = "vim-gitgutter";
- rev = "24cc47789557827209add5881c226243711475ce";
- sha256 = "0fk8691wkhb7mb5ssmydipb61kh3hjnl31ngqbrbifzsqlkvibid";
+ rev = "f4bdaa4e9cf07f62ce1161a3d0ff70c8aad25bc5";
+ sha256 = "0h00i0b8p0mnynp7hhj2vpgj9rhqmlx14y2kcskvac8i2wlyj30c";
};
meta.homepage = "https://github.com/airblade/vim-gitgutter/";
};
@@ -6064,12 +6112,12 @@ let
vim-go = buildVimPluginFrom2Nix {
pname = "vim-go";
- version = "2021-04-02";
+ version = "2021-04-20";
src = fetchFromGitHub {
owner = "fatih";
repo = "vim-go";
- rev = "ce95699efa82921f80fdc0984d002ff81584c6e6";
- sha256 = "0fq6i4arnzq5fmzy50kf2fb8bf5ickrrhs53la04x1jwx3lfzs05";
+ rev = "3ec431eaefb75520cbcfed0b6d0d7999d7ea3805";
+ sha256 = "1h6lcxzm9njnyaxf9qjs4gspd5ag2dmqjjik947idxjs1435xjls";
};
meta.homepage = "https://github.com/fatih/vim-go/";
};
@@ -6112,12 +6160,12 @@ let
vim-gruvbox8 = buildVimPluginFrom2Nix {
pname = "vim-gruvbox8";
- version = "2021-04-06";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "lifepillar";
repo = "vim-gruvbox8";
- rev = "acb2574d85f3878cd5ab82dc3579403c174dafc3";
- sha256 = "17k3fcidsk26i9nnbk37jcgznypzwh0pzam03yayb6dw4n733mld";
+ rev = "217a87f4f751ed0d6fe5c79b2c0963f557bf0314";
+ sha256 = "1gdys8ycmmykq121ix34wva75m18nda0camiqr4aavb9hj32faj6";
};
meta.homepage = "https://github.com/lifepillar/vim-gruvbox8/";
};
@@ -6353,12 +6401,12 @@ let
vim-illuminate = buildVimPluginFrom2Nix {
pname = "vim-illuminate";
- version = "2021-04-09";
+ version = "2021-04-13";
src = fetchFromGitHub {
owner = "RRethy";
repo = "vim-illuminate";
- rev = "fe491924a7cf08bd839236a74f0c39bf0abf0fd2";
- sha256 = "0c6vqfwrbw0z036y41kf03syixnp58g1pwghm1d7frz2adn6mlvb";
+ rev = "d20beb074f2de67104dda1f698cf83c920ffd78a";
+ sha256 = "0lll31xp6vjqrzphs6f3zkz15rwis6lavw2cibvi7hx2vfp4hds2";
};
meta.homepage = "https://github.com/RRethy/vim-illuminate/";
};
@@ -6435,6 +6483,18 @@ let
meta.homepage = "https://github.com/fisadev/vim-isort/";
};
+ vim-jack-in = buildVimPluginFrom2Nix {
+ pname = "vim-jack-in";
+ version = "2021-03-27";
+ src = fetchFromGitHub {
+ owner = "clojure-vim";
+ repo = "vim-jack-in";
+ rev = "80c69cc021486d1cfa5dac7d9d6ab6954ff20c27";
+ sha256 = "11dw8kngzznzf91n6iyvw7yi1l35vgpva32dck3n25vpxc24krpn";
+ };
+ meta.homepage = "https://github.com/clojure-vim/vim-jack-in/";
+ };
+
vim-janah = buildVimPluginFrom2Nix {
pname = "vim-janah";
version = "2018-10-01";
@@ -6738,12 +6798,12 @@ let
vim-lsp = buildVimPluginFrom2Nix {
pname = "vim-lsp";
- version = "2021-04-12";
+ version = "2021-04-17";
src = fetchFromGitHub {
owner = "prabirshrestha";
repo = "vim-lsp";
- rev = "9dc382c04af3389b48fd1ffb5ed4b6c294571f62";
- sha256 = "19bk55ifqh76528rf3k6pnwfc5y9954cir7apkz6ymrc0abiy47d";
+ rev = "296fb98d198cbbb5c5c937c09b84c8c7a9605a16";
+ sha256 = "1khiygamq1jirlz2hgjjksr12a7sj4x90hs7z4zkvzl83ysnbmdn";
};
meta.homepage = "https://github.com/prabirshrestha/vim-lsp/";
};
@@ -6835,12 +6895,12 @@ let
vim-matchup = buildVimPluginFrom2Nix {
pname = "vim-matchup";
- version = "2021-04-12";
+ version = "2021-04-20";
src = fetchFromGitHub {
owner = "andymass";
repo = "vim-matchup";
- rev = "58a26a4c0c65a27d54159ba0d8adf8912f89f3c3";
- sha256 = "19jp6ilfsgwx6p7cq1gvswxxkhhg6czwwyim9g60gd66wrh2xbqf";
+ rev = "71b97bac53aa09760e8d8c36767c657b274c468d";
+ sha256 = "0ign21d8w6hcrbz9j6c0p1ff0y396wl7snm5dj81m7fck2287pj3";
};
meta.homepage = "https://github.com/andymass/vim-matchup/";
};
@@ -7171,12 +7231,12 @@ let
vim-oscyank = buildVimPluginFrom2Nix {
pname = "vim-oscyank";
- version = "2021-04-01";
+ version = "2021-04-20";
src = fetchFromGitHub {
owner = "ojroques";
repo = "vim-oscyank";
- rev = "5b48c13143e55c234e8bf5bcfa2439b9ffa85241";
- sha256 = "1njxf2vwd9jfpjybx0f5c7k7fhlzmdwkwsflb9rkgv0pz3l0wkqb";
+ rev = "2a0af02d0fd59baeb84cf865e395827750c875f0";
+ sha256 = "06vrham1zg5vfr4q4gmz2ski4y02c3bfivzy4rlfvjs81qj3vn3m";
};
meta.homepage = "https://github.com/ojroques/vim-oscyank/";
};
@@ -7219,12 +7279,12 @@ let
vim-pandoc = buildVimPluginFrom2Nix {
pname = "vim-pandoc";
- version = "2021-03-10";
+ version = "2021-04-16";
src = fetchFromGitHub {
owner = "vim-pandoc";
repo = "vim-pandoc";
- rev = "0d4b68eb7f63e43f963a119d60a3e29c2bb822e0";
- sha256 = "0p7m75f7vqdm0nvg0p3nbzqnsd7wdvbsf3y2mzirdl7c0pbvphqp";
+ rev = "5af0dcf7878a8c947ae5a69989524f0a1ba5f6da";
+ sha256 = "17vb0xnzq6ic9naqg2wvjdh7s7ckz82ixv45pknxc21b6wjrfc75";
};
meta.homepage = "https://github.com/vim-pandoc/vim-pandoc/";
};
@@ -7305,12 +7365,12 @@ let
pname = "vim-pencil";
version = "2021-02-06";
src = fetchFromGitHub {
- owner = "reedes";
+ owner = "preservim";
repo = "vim-pencil";
rev = "2135374d48a7cb89efd5e818c12bb0ff450dfbb4";
sha256 = "17wgin33fj40brdb3zhm70qls2j2vssc4yrrv36y1qxwi7gdzn0f";
};
- meta.homepage = "https://github.com/reedes/vim-pencil/";
+ meta.homepage = "https://github.com/preservim/vim-pencil/";
};
vim-phabricator = buildVimPluginFrom2Nix {
@@ -7363,12 +7423,12 @@ let
vim-polyglot = buildVimPluginFrom2Nix {
pname = "vim-polyglot";
- version = "2021-03-01";
+ version = "2021-04-14";
src = fetchFromGitHub {
owner = "sheerun";
repo = "vim-polyglot";
- rev = "cc63193ce82c1e7b9ee2ad7d0ddd14e8394211ef";
- sha256 = "0and9148l36m8bhnzlyjirl1bd2ynswwzjc22605if82az9j55m8";
+ rev = "730dcb02caab60a6ae5d8b4bdc16d290041061ec";
+ sha256 = "1pgqw008xy3fn821zxfiwc9xpd0v33wxmk4yf9avm5jgqbkwn1ld";
};
meta.homepage = "https://github.com/sheerun/vim-polyglot/";
};
@@ -7519,12 +7579,12 @@ let
vim-quickrun = buildVimPluginFrom2Nix {
pname = "vim-quickrun";
- version = "2021-01-27";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "thinca";
repo = "vim-quickrun";
- rev = "c980977f1d77b3285937b9d7b5baa964fc9ed7f5";
- sha256 = "00f1slgrjnh8m59sm3xmias3jvjlvw26yigv9fmy6zwcynlivc5x";
+ rev = "31274b11e0a658b84f220ef1f5d69e171ba53ebf";
+ sha256 = "1687ih32rgjjxf84dw7yx2qkylrqwp4ir8hj6mlh1hmysfd13vvl";
};
meta.homepage = "https://github.com/thinca/vim-quickrun/";
};
@@ -7591,12 +7651,12 @@ let
vim-rhubarb = buildVimPluginFrom2Nix {
pname = "vim-rhubarb";
- version = "2021-04-12";
+ version = "2021-04-15";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-rhubarb";
- rev = "b4081f0a882ff36d92d9d3ae5c3b70a378bfd5af";
- sha256 = "017mb54qc7ix5h1b1hg7rb3j31x5ihmsc1g5286sirzj4rcm90fi";
+ rev = "2590324d7fdaf0c6311fad4ee2a2878acaaec42d";
+ sha256 = "0ljlkzy2r8dzqkcl9pbgshr7swdcdbbxcgfvvmyxrw7swfx1srk9";
};
meta.homepage = "https://github.com/tpope/vim-rhubarb/";
};
@@ -7771,12 +7831,12 @@ let
vim-signify = buildVimPluginFrom2Nix {
pname = "vim-signify";
- version = "2021-03-07";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "mhinz";
repo = "vim-signify";
- rev = "2542b6459085f3d1e361e8b5bf406dec6448487e";
- sha256 = "1m7m1fwn4bpbqfji7fvvgx00fxz1hy5nvfajbpj4vpgaxzqwsf8k";
+ rev = "6b9afcce385b1121d46f749f9cd46d05e132c1e4";
+ sha256 = "04yh7cq9vi1hksksyphg8s4xz64qc6pmwnrbqapfgfsmp6jk11s5";
};
meta.homepage = "https://github.com/mhinz/vim-signify/";
};
@@ -7879,12 +7939,12 @@ let
vim-snippets = buildVimPluginFrom2Nix {
pname = "vim-snippets";
- version = "2021-04-12";
+ version = "2021-04-19";
src = fetchFromGitHub {
owner = "honza";
repo = "vim-snippets";
- rev = "03f7e3395b1d2a0eaf8fc8bdb83fc95368a8b467";
- sha256 = "0s7ilz0zm6p03qhadr39v9hpkbygv4i984ac6f8bbdrf5bfkrclk";
+ rev = "2a28fc35f6848ad38681d4b509ae3f5962276b5d";
+ sha256 = "05xywkyh809g7zax4wdw5vn29xcs1wg3ylbsdi9rz18phm6im41k";
};
meta.homepage = "https://github.com/honza/vim-snippets/";
};
@@ -7951,12 +8011,12 @@ let
vim-startify = buildVimPluginFrom2Nix {
pname = "vim-startify";
- version = "2021-04-02";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "mhinz";
repo = "vim-startify";
- rev = "5ee8914b26e9f0b2d8ec01b3cef8c46e7a3954b5";
- sha256 = "0zg100sjbn7952ayqligpkfqvrh1qwr2q6pjqs5cnsyl5xs411v2";
+ rev = "3ffa62fbe781b3df20fafa3bd9d710dc99c16a8c";
+ sha256 = "0ysr07yy9fxgz8drn11hgcwns7d0minh4afrjxrz9lwcm7c994h4";
};
meta.homepage = "https://github.com/mhinz/vim-startify/";
};
@@ -7973,6 +8033,18 @@ let
meta.homepage = "https://github.com/dstein64/vim-startuptime/";
};
+ vim-strip-trailing-whitespace = buildVimPluginFrom2Nix {
+ pname = "vim-strip-trailing-whitespace";
+ version = "2021-01-03";
+ src = fetchFromGitHub {
+ owner = "axelf4";
+ repo = "vim-strip-trailing-whitespace";
+ rev = "9a93dd653806ba3f886b2cf92111b663ce8d44bd";
+ sha256 = "1pvirqj21xl2qbs9ycdp7n3lnf4n8b2bz1y90nphnvda4dfaac8l";
+ };
+ meta.homepage = "https://github.com/axelf4/vim-strip-trailing-whitespace/";
+ };
+
vim-stylish-haskell = buildVimPluginFrom2Nix {
pname = "vim-stylish-haskell";
version = "2019-11-28";
@@ -8276,12 +8348,12 @@ let
vim-tpipeline = buildVimPluginFrom2Nix {
pname = "vim-tpipeline";
- version = "2021-04-10";
+ version = "2021-04-19";
src = fetchFromGitHub {
owner = "vimpostor";
repo = "vim-tpipeline";
- rev = "be39204b64ac6d285d735166b94a28c218f1e4bc";
- sha256 = "0ghw3vzk6rjw5sfahrhfiisvm38zvn67ddvqg7l1h3hq411i0f2g";
+ rev = "256235f8b60ccae36699e92edd61dbcf26fe0b17";
+ sha256 = "000wyqm06h0614k6qwr90xxrvmwfbii7jjif5fjavk474ijgwckp";
};
meta.homepage = "https://github.com/vimpostor/vim-tpipeline/";
};
@@ -8408,12 +8480,12 @@ let
vim-vsnip = buildVimPluginFrom2Nix {
pname = "vim-vsnip";
- version = "2021-04-05";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "vim-vsnip";
- rev = "b05641ca8c7ebd396017121219047c480182a743";
- sha256 = "0184d5498iwi0kqf0gbd5zdqckvmqwaf7bs1dvj8rphp9xzsl72x";
+ rev = "395d200728b467e141615f53afe564adc26985b9";
+ sha256 = "1g0fhdqr6qmqmhvm3amv22fqb1aacmvd0swmk38w25zzcbl4b4gy";
};
meta.homepage = "https://github.com/hrsh7th/vim-vsnip/";
};
@@ -8480,12 +8552,12 @@ let
vim-which-key = buildVimPluginFrom2Nix {
pname = "vim-which-key";
- version = "2021-04-05";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "liuchengxu";
repo = "vim-which-key";
- rev = "fdadbdcf5eda4b1ab381f3a36562005d161a6c4a";
- sha256 = "1lqqadf6qr4i7sfkjmra9b4rb6wa3sh93dp7lr5jdf365i4b0jfb";
+ rev = "20163f6ffda855fa40a11cb999002211dc66288f";
+ sha256 = "1g29z5f2w1g6znljdgwn49wp8g85m1pawvg8qjrh1kxyjv9dr8x1";
};
meta.homepage = "https://github.com/liuchengxu/vim-which-key/";
};
@@ -8494,12 +8566,12 @@ let
pname = "vim-wordy";
version = "2020-10-24";
src = fetchFromGitHub {
- owner = "reedes";
+ owner = "preservim";
repo = "vim-wordy";
rev = "667426a0171787b2620dffa5b2d7c01c9040237f";
sha256 = "1lcrisv2wcd8iw76prql03wd11jgmknm3rvbcw7vv4v5r2s9rv5z";
};
- meta.homepage = "https://github.com/reedes/vim-wordy/";
+ meta.homepage = "https://github.com/preservim/vim-wordy/";
};
vim-xdebug = buildVimPluginFrom2Nix {
@@ -8574,6 +8646,18 @@ let
meta.homepage = "https://github.com/andrep/vimacs/";
};
+ vimade = buildVimPluginFrom2Nix {
+ pname = "vimade";
+ version = "2021-04-07";
+ src = fetchFromGitHub {
+ owner = "TaDaa";
+ repo = "vimade";
+ rev = "9b9254340e39dab3dad64c05b10af0fd85490b71";
+ sha256 = "0sbk9lf5w136lwl3ca866m594993s23zad5ss4whzm9j0qknihl3";
+ };
+ meta.homepage = "https://github.com/TaDaa/vimade/";
+ };
+
vimagit = buildVimPluginFrom2Nix {
pname = "vimagit";
version = "2020-11-18";
@@ -8624,12 +8708,12 @@ let
vimoutliner = buildVimPluginFrom2Nix {
pname = "vimoutliner";
- version = "2020-10-26";
+ version = "2021-04-20";
src = fetchFromGitHub {
owner = "vimoutliner";
repo = "vimoutliner";
- rev = "d198aa72c70270f1330f4237bbf853efaaa79723";
- sha256 = "05wcqs36qn8f3vcy9xi2cf0yyp7yzawlxqvpjhbad6lm52vzsabs";
+ rev = "054f957779dff8e5fbb859e8cfbca06f1ed9e7f0";
+ sha256 = "1bsfrma06mkigr1jhzic98z4v1gckzrjv908vx2wlbjq9cdv7d39";
};
meta.homepage = "https://github.com/vimoutliner/vimoutliner/";
};
@@ -8684,12 +8768,12 @@ let
vimspector = buildVimPluginFrom2Nix {
pname = "vimspector";
- version = "2021-04-11";
+ version = "2021-04-22";
src = fetchFromGitHub {
owner = "puremourning";
repo = "vimspector";
- rev = "fa92c2a8d525972bcc97cba9579d9adfca3c859a";
- sha256 = "0a8wph6l1nr6ip6d02wg6x6g1zwys45pmj95i8c655fc6877rd79";
+ rev = "a47d0b921c42be740e57d75a73ae15a8ee0141d4";
+ sha256 = "05nhav31i3d16d1qdcgbkr8dfgwi53123sv3xd9pr8j7j3rdd0ix";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/puremourning/vimspector/";
@@ -8697,12 +8781,12 @@ let
vimtex = buildVimPluginFrom2Nix {
pname = "vimtex";
- version = "2021-04-11";
+ version = "2021-04-15";
src = fetchFromGitHub {
owner = "lervag";
repo = "vimtex";
- rev = "e6c03a17611a71ab1fc12ed0e9b4c32bf9ca826b";
- sha256 = "1g4vl0lxq7rvl064pf11n4r69z78c5k77qd987mm4hajbvmkbjqi";
+ rev = "0d8a69f9e16a90cfed591264170dea0c5b686b81";
+ sha256 = "014f85wg1c20cysn8qayw71d49qmv1vzzbgikzrd9msfqsp4l5qj";
};
meta.homepage = "https://github.com/lervag/vimtex/";
};
@@ -8827,6 +8911,18 @@ let
meta.homepage = "https://github.com/lukaszkorecki/workflowish/";
};
+ wstrip-vim = buildVimPluginFrom2Nix {
+ pname = "wstrip-vim";
+ version = "2021-03-14";
+ src = fetchFromGitHub {
+ owner = "tweekmonster";
+ repo = "wstrip.vim";
+ rev = "3d4c35c8ca462fbece58886e52679a5355f461d6";
+ sha256 = "020bikc5482gzshjh2vgvknqxpzzzaff14z1rj6b2yvmbr2a837f";
+ };
+ meta.homepage = "https://github.com/tweekmonster/wstrip.vim/";
+ };
+
xptemplate = buildVimPluginFrom2Nix {
pname = "xptemplate";
version = "2020-06-29";
@@ -8878,12 +8974,12 @@ let
YouCompleteMe = buildVimPluginFrom2Nix {
pname = "YouCompleteMe";
- version = "2021-04-09";
+ version = "2021-04-20";
src = fetchFromGitHub {
owner = "ycm-core";
repo = "YouCompleteMe";
- rev = "a3d02238ca5c19a64ff3336087fe016a4137fde9";
- sha256 = "05sfyqynqliyz2w2ams2a5rqi8v0i65iz5jfk2vsy9qcn94i2sr6";
+ rev = "c8acf70d23337047af6548dbb8337d3e3a0c0357";
+ sha256 = "0l24b07l1bdiwffpj2ajks879w69cjkn1adx9ak6pv98jlmsdzi1";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/ycm-core/YouCompleteMe/";
@@ -8927,12 +9023,12 @@ let
zephyr-nvim = buildVimPluginFrom2Nix {
pname = "zephyr-nvim";
- version = "2021-04-10";
+ version = "2021-04-18";
src = fetchFromGitHub {
owner = "glepnir";
repo = "zephyr-nvim";
- rev = "057ee834776939bf76c4ae6c71e94e911014a172";
- sha256 = "0x1da7ihyrcrr3msy1jds566506k0jbsap5fk1w823cm8m0mwqn9";
+ rev = "32c4ea97cc1cd3db1abebd46aff2ee18d66d8d59";
+ sha256 = "1ab5ivfddifapc31qbipvajjgx1mclyqqf29cpz7avsc4h6fp3w0";
};
meta.homepage = "https://github.com/glepnir/zephyr-nvim/";
};
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index f0f1ec2cc3e..3e352977d56 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -1,146 +1,94 @@
{ lib
, stdenv
-, python
-, cmake
-, meson
-, vim
-, ruby
-, which
-, fetchFromGitHub
-, fetchurl
-, fetchpatch
-, llvmPackages
-, rustPlatform
+
+ # nixpkgs functions
, buildGoModule
-, pkg-config
-, curl
-, openssl
-, libgit2
-, libiconv
-, xkb-switch
-, fzf
-, skim
-, stylish-haskell
+, buildVimPluginFrom2Nix
+, fetchFromGitHub
+, fetchpatch
+, fetchurl
+, substituteAll
+
+ # Language dependencies
+, python
, python3
+, rustPlatform
+
+ # Misc dependencies
+, Cocoa
+, code-minimap
+, dasht
+, direnv
+, fzf
+, gnome3
+, khard
+, languagetool
+, llvmPackages
+, meson
+, nim
+, nodePackages
+, skim
+, sqlite
+, stylish-haskell
+, tabnine
+, vim
+, which
+, xkb-switch
+, ycmd
+
+ # command-t dependencies
+, rake
+, ruby
+
+ # cpsm dependencies
, boost
+, cmake
, icu
, ncurses
-, ycmd
-, rake
-, gobject-introspection
-, glib
-, wrapGAppsHook
-, substituteAll
-, languagetool
-, tabnine
-, Cocoa
+ # LanguageClient-neovim dependencies
, CoreFoundation
, CoreServices
-, buildVimPluginFrom2Nix
-, nodePackages
-, dasht
-, sqlite
-, code-minimap
+# nvim-treesitter dependencies
+, tree-sitter
- # deoplete-khard dependency
-, khard
+ # sved dependencies
+, glib
+, gobject-introspection
+, wrapGAppsHook
- # vim-go dependencies
+ # vim-clap dependencies
+, curl
+, libgit2
+, libiconv
+, openssl
+, pkg-config
+
+# vim-go dependencies
, asmfmt
, delve
, errcheck
-, godef
-, golint
-, gomodifytags
-, gotags
-, gotools
-, go-motion
, gnused
-, reftools
-, gogetdoc
-, golangci-lint
-, impl
-, iferr
+, go-motion
+, go-tools
, gocode
, gocode-gomod
-, go-tools
+, godef
+, gogetdoc
+, golangci-lint
+, golint
+, gomodifytags
, gopls
-
- # direnv-vim dependencies
-, direnv
-
- # vCoolor dependency
-, gnome3
-
- # fruzzy dependency
-, nim
+, gotags
+, gotools
+, iferr
+, impl
+, reftools
}:
self: super: {
- vim2nix = buildVimPluginFrom2Nix {
- pname = "vim2nix";
- version = "1.0";
- src = ./vim2nix;
- dependencies = with super; [ vim-addon-manager ];
- };
-
- # Mainly used as a dependency for fzf-vim. Wraps the fzf program as a vim
- # plugin, since part of the fzf vim plugin is included in the main fzf
- # program.
- fzfWrapper = buildVimPluginFrom2Nix {
- inherit (fzf) src version;
- pname = "fzf";
- postInstall = ''
- ln -s ${fzf}/bin/fzf $target/bin/fzf
- '';
- };
-
- skim = buildVimPluginFrom2Nix {
- pname = "skim";
- version = skim.version;
- src = skim.vim;
- };
-
- LanguageClient-neovim =
- let
- version = "0.1.160";
- LanguageClient-neovim-src = fetchFromGitHub {
- owner = "autozimu";
- repo = "LanguageClient-neovim";
- rev = version;
- sha256 = "143cifahav1pfmpx3j1ihx433jrwxf6z27s0wxndgjkd2plkks58";
- };
- LanguageClient-neovim-bin = rustPlatform.buildRustPackage {
- pname = "LanguageClient-neovim-bin";
- inherit version;
- src = LanguageClient-neovim-src;
-
- cargoSha256 = "0mf94j85awdcqa6cyb89bipny9xg13ldkznjf002fq747f55my2a";
- buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
-
- # FIXME: Use impure version of CoreFoundation because of missing symbols.
- # Undefined symbols for architecture x86_64: "_CFURLResourceIsReachable"
- preConfigure = lib.optionalString stdenv.isDarwin ''
- export NIX_LDFLAGS="-F${CoreFoundation}/Library/Frameworks -framework CoreFoundation $NIX_LDFLAGS"
- '';
- };
- in
- buildVimPluginFrom2Nix {
- pname = "LanguageClient-neovim";
- inherit version;
- src = LanguageClient-neovim-src;
-
- propagatedBuildInputs = [ LanguageClient-neovim-bin ];
-
- preFixup = ''
- substituteInPlace "$out"/share/vim-plugins/LanguageClient-neovim/autoload/LanguageClient.vim \
- --replace "let l:path = s:root . '/bin/'" "let l:path = '${LanguageClient-neovim-bin}' . '/bin/'"
- '';
- };
-
clang_complete = super.clang_complete.overrideAttrs (old: {
# In addition to the arguments you pass to your compiler, you also need to
# specify the path of the C++ std header (if you are using C++).
@@ -156,14 +104,6 @@ self: super: {
'';
});
- direnv-vim = super.direnv-vim.overrideAttrs (oa: {
- preFixup = oa.preFixup or "" + ''
- substituteInPlace $out/share/vim-plugins/direnv-vim/autoload/direnv.vim \
- --replace "let s:direnv_cmd = get(g:, 'direnv_cmd', 'direnv')" \
- "let s:direnv_cmd = get(g:, 'direnv_cmd', '${lib.getBin direnv}/bin/direnv')"
- '';
- });
-
clighter8 = super.clighter8.overrideAttrs (old: {
preFixup = ''
sed "/^let g:clighter8_libclang_path/s|')$|${llvmPackages.clang.cc.lib}/lib/libclang.so')|" \
@@ -179,6 +119,24 @@ self: super: {
'';
});
+ compe-tabnine = super.compe-tabnine.overrideAttrs (old: {
+ buildInputs = [ tabnine ];
+
+ postFixup = ''
+ mkdir $target/binaries
+ ln -s ${tabnine}/bin/TabNine $target/binaries/TabNine_$(uname -s)
+ '';
+ });
+
+ completion-tabnine = super.completion-tabnine.overrideAttrs (old: {
+ buildInputs = [ tabnine ];
+
+ postFixup = ''
+ mkdir $target/binaries
+ ln -s ${tabnine}/bin/TabNine $target/binaries/TabNine_$(uname -s)
+ '';
+ });
+
cpsm = super.cpsm.overrideAttrs (old: {
buildInputs = [
python3
@@ -232,6 +190,14 @@ self: super: {
};
});
+ direnv-vim = super.direnv-vim.overrideAttrs (oa: {
+ preFixup = oa.preFixup or "" + ''
+ substituteInPlace $out/share/vim-plugins/direnv-vim/autoload/direnv.vim \
+ --replace "let s:direnv_cmd = get(g:, 'direnv_cmd', 'direnv')" \
+ "let s:direnv_cmd = get(g:, 'direnv_cmd', '${lib.getBin direnv}/bin/direnv')"
+ '';
+ });
+
ensime-vim = super.ensime-vim.overrideAttrs (old: {
passthru.python3Dependencies = ps: with ps; [ sexpdata websocket_client ];
dependencies = with super; [ vimproc-vim vimshell-vim super.self forms ];
@@ -276,22 +242,93 @@ self: super: {
'';
});
+ fzf-vim = super.fzf-vim.overrideAttrs (old: {
+ dependencies = [ self.fzfWrapper ];
+ });
+
+ # Mainly used as a dependency for fzf-vim. Wraps the fzf program as a vim
+ # plugin, since part of the fzf vim plugin is included in the main fzf
+ # program.
+ fzfWrapper = buildVimPluginFrom2Nix {
+ inherit (fzf) src version;
+ pname = "fzf";
+ postInstall = ''
+ ln -s ${fzf}/bin/fzf $target/bin/fzf
+ '';
+ };
+
ghcid = super.ghcid.overrideAttrs (old: {
configurePhase = "cd plugins/nvim";
});
- vimsence = super.vimsence.overrideAttrs (old: {
- meta = with lib; {
- description = "Discord rich presence for Vim";
- homepage = "https://github.com/hugolgst/vimsence";
- maintainers = with lib.maintainers; [ hugolgst ];
+ jedi-vim = super.jedi-vim.overrideAttrs (old: {
+ # checking for python3 support in vim would be neat, too, but nobody else seems to care
+ buildInputs = [ python3.pkgs.jedi ];
+ meta = {
+ description = "code-completion for python using python-jedi";
+ license = lib.licenses.mit;
};
});
- vim-gist = super.vim-gist.overrideAttrs (old: {
- dependencies = with super; [ webapi-vim ];
+ LanguageClient-neovim =
+ let
+ version = "0.1.161";
+ LanguageClient-neovim-src = fetchFromGitHub {
+ owner = "autozimu";
+ repo = "LanguageClient-neovim";
+ rev = version;
+ sha256 = "Z9S2ie9RxJCIbmjSV/Tto4lK04cZfWmK3IAy8YaySVI=";
+ };
+ LanguageClient-neovim-bin = rustPlatform.buildRustPackage {
+ pname = "LanguageClient-neovim-bin";
+ inherit version;
+ src = LanguageClient-neovim-src;
+
+ cargoSha256 = "H34UqJ6JOwuSABdOup5yKeIwFrGc83TUnw1ggJEx9o4=";
+ buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
+
+ # FIXME: Use impure version of CoreFoundation because of missing symbols.
+ # Undefined symbols for architecture x86_64: "_CFURLResourceIsReachable"
+ preConfigure = lib.optionalString stdenv.isDarwin ''
+ export NIX_LDFLAGS="-F${CoreFoundation}/Library/Frameworks -framework CoreFoundation $NIX_LDFLAGS"
+ '';
+ };
+ in
+ buildVimPluginFrom2Nix {
+ pname = "LanguageClient-neovim";
+ inherit version;
+ src = LanguageClient-neovim-src;
+
+ propagatedBuildInputs = [ LanguageClient-neovim-bin ];
+
+ preFixup = ''
+ substituteInPlace "$out"/share/vim-plugins/LanguageClient-neovim/autoload/LanguageClient.vim \
+ --replace "let l:path = s:root . '/bin/'" "let l:path = '${LanguageClient-neovim-bin}' . '/bin/'"
+ '';
+ };
+
+ lens-vim = super.lens-vim.overrideAttrs (old: {
+ # remove duplicate g:lens#animate in doc/lens.txt
+ # https://github.com/NixOS/nixpkgs/pull/105810#issuecomment-740007985
+ # https://github.com/camspiers/lens.vim/pull/40/files
+ patches = [
+ (substituteAll {
+ src = ./patches/lens-vim/remove_duplicate_g_lens_animate.patch;
+ inherit languagetool;
+ })
+ ];
});
+ lf-vim = super.lf-vim.overrideAttrs (old: {
+ dependencies = with super; [ vim-floaterm ];
+ });
+
+ meson = buildVimPluginFrom2Nix {
+ inherit (meson) pname version src;
+ preInstall = "cd data/syntax-highlighting/vim";
+ meta.maintainers = with lib.maintainers; [ vcunat ];
+ };
+
minimap-vim = super.minimap-vim.overrideAttrs (old: {
preFixup = ''
substituteInPlace $out/share/vim-plugins/minimap-vim/plugin/minimap.vim \
@@ -301,12 +338,6 @@ self: super: {
'';
});
- meson = buildVimPluginFrom2Nix {
- inherit (meson) pname version src;
- preInstall = "cd data/syntax-highlighting/vim";
- meta.maintainers = with lib.maintainers; [ vcunat ];
- };
-
ncm2 = super.ncm2.overrideAttrs (old: {
dependencies = with super; [ nvim-yarp ];
});
@@ -336,14 +367,34 @@ self: super: {
dependencies = with super; [ popfix ];
});
- fzf-vim = super.fzf-vim.overrideAttrs (old: {
- dependencies = [ self.fzfWrapper ];
+ # Usage:
+ # pkgs.vimPlugins.nvim-treesitter.withPlugins (p: [ p.tree-sitter-c p.tree-sitter-java ... ])
+ # or for all grammars:
+ # pkgs.vimPlugins.nvim-treesitter.withPlugins (_: tree-sitter.allGrammars)
+ nvim-treesitter = super.nvim-treesitter.overrideAttrs (old: {
+ passthru.withPlugins =
+ grammarFn: self.nvim-treesitter.overrideAttrs (_: {
+ postPatch =
+ let
+ grammars = tree-sitter.withPlugins grammarFn;
+ in
+ ''
+ rm -r parser
+ ln -s ${grammars} parser
+ '';
+ });
});
onehalf = super.onehalf.overrideAttrs (old: {
configurePhase = "cd vim";
});
+ skim = buildVimPluginFrom2Nix {
+ pname = "skim";
+ version = skim.version;
+ src = skim.vim;
+ };
+
skim-vim = super.skim-vim.overrideAttrs (old: {
dependencies = [ self.skim ];
});
@@ -384,30 +435,60 @@ self: super: {
};
});
- vimacs = super.vimacs.overrideAttrs (old: {
- buildPhase = ''
- substituteInPlace bin/vim \
- --replace '/usr/bin/vim' 'vim' \
- --replace '/usr/bin/gvim' 'gvim'
- # remove unnecessary duplicated bin wrapper script
- rm -r plugin/vimacs
- '';
- meta = with lib; {
- description = "Vim-Improved eMACS: Emacs emulation plugin for Vim";
- homepage = "http://algorithm.com.au/code/vimacs";
- license = licenses.gpl2Plus;
- maintainers = with lib.maintainers; [ millerjason ];
+ telescope-frecency-nvim = super.telescope-frecency-nvim.overrideAttrs (old: {
+ dependencies = [ self.sql-nvim ];
+ });
+
+ telescope-fzy-native-nvim = super.telescope-fzy-native-nvim.overrideAttrs (old: {
+ preFixup =
+ let
+ fzy-lua-native-path = "deps/fzy-lua-native";
+ fzy-lua-native =
+ stdenv.mkDerivation {
+ name = "fzy-lua-native";
+ src = "${old.src}/${fzy-lua-native-path}";
+ # remove pre-compiled binaries
+ preBuild = "rm -rf static/*";
+ installPhase = ''
+ install -Dm 444 -t $out/static static/*
+ install -Dm 444 -t $out/lua lua/*
+ '';
+ };
+ in
+ ''
+ rm -rf $target/${fzy-lua-native-path}/*
+ ln -s ${fzy-lua-native}/static $target/${fzy-lua-native-path}/static
+ ln -s ${fzy-lua-native}/lua $target/${fzy-lua-native-path}/lua
+ '';
+ meta.platforms = lib.platforms.all;
+ });
+
+ unicode-vim =
+ let
+ unicode-data = fetchurl {
+ url = "http://www.unicode.org/Public/UNIDATA/UnicodeData.txt";
+ sha256 = "16b0jzvvzarnlxdvs2izd5ia0ipbd87md143dc6lv6xpdqcs75s9";
+ };
+ in
+ super.unicode-vim.overrideAttrs (old: {
+
+ # redirect to /dev/null else changes terminal color
+ buildPhase = ''
+ cp "${unicode-data}" autoload/unicode/UnicodeData.txt
+ echo "Building unicode cache"
+ ${vim}/bin/vim --cmd ":set rtp^=$PWD" -c 'ru plugin/unicode.vim' -c 'UnicodeCache' -c ':echohl Normal' -c ':q' > /dev/null
+ '';
+ });
+
+ vCoolor-vim = super.vCoolor-vim.overrideAttrs (old: {
+ # on linux can use either Zenity or Yad.
+ propagatedBuildInputs = [ gnome3.zenity ];
+ meta = {
+ description = "Simple color selector/picker plugin";
+ license = lib.licenses.publicDomain;
};
});
- vimshell-vim = super.vimshell-vim.overrideAttrs (old: {
- dependencies = with super; [ vimproc-vim ];
- });
-
- vim-addon-manager = super.vim-addon-manager.overrideAttrs (old: {
- buildInputs = lib.optional stdenv.isDarwin Cocoa;
- });
-
vim-addon-actions = super.vim-addon-actions.overrideAttrs (old: {
dependencies = with super; [ vim-addon-mw-utils tlib_vim ];
});
@@ -428,6 +509,10 @@ self: super: {
dependencies = with super; [ tlib_vim ];
});
+ vim-addon-manager = super.vim-addon-manager.overrideAttrs (old: {
+ buildInputs = lib.optional stdenv.isDarwin Cocoa;
+ });
+
vim-addon-mru = super.vim-addon-mru.overrideAttrs (old: {
dependencies = with super; [ vim-addon-other vim-addon-mw-utils ];
});
@@ -467,6 +552,36 @@ self: super: {
passthru.python3Dependencies = ps: with ps; [ beancount ];
});
+ vim-clap = super.vim-clap.overrideAttrs (old: {
+ preFixup =
+ let
+ maple-bin = rustPlatform.buildRustPackage {
+ name = "maple";
+ src = old.src;
+
+ nativeBuildInputs = [
+ pkg-config
+ ];
+
+ buildInputs = [
+ openssl
+ ] ++ lib.optionals stdenv.isDarwin [
+ CoreServices
+ curl
+ libgit2
+ libiconv
+ ];
+
+ cargoSha256 = "25UkYKhlGmlDg4fz1jZHjpQn5s4k5FKlFK0MU8YM5SE=";
+ };
+ in
+ ''
+ ln -s ${maple-bin}/bin/maple $target/bin/maple
+ '';
+
+ meta.platforms = lib.platforms.all;
+ });
+
vim-closer = super.vim-closer.overrideAttrs (old: {
patches = [
# Fix duplicate tag in doc
@@ -533,6 +648,10 @@ self: super: {
'';
});
+ vim-gist = super.vim-gist.overrideAttrs (old: {
+ dependencies = with super; [ webapi-vim ];
+ });
+
vim-grammarous = super.vim-grammarous.overrideAttrs (old: {
# use `:GrammarousCheck` to initialize checking
# In neovim, you also want to use set
@@ -546,16 +665,20 @@ self: super: {
];
});
- lens-vim = super.lens-vim.overrideAttrs (old: {
- # remove duplicate g:lens#animate in doc/lens.txt
- # https://github.com/NixOS/nixpkgs/pull/105810#issuecomment-740007985
- # https://github.com/camspiers/lens.vim/pull/40/files
- patches = [
- (substituteAll {
- src = ./patches/lens-vim/remove_duplicate_g_lens_animate.patch;
- inherit languagetool;
- })
- ];
+ vim-hexokinase = super.vim-hexokinase.overrideAttrs (old: {
+ preFixup =
+ let
+ hexokinase = buildGoModule {
+ name = "hexokinase";
+ src = old.src + "/hexokinase";
+ vendorSha256 = "pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
+ };
+ in
+ ''
+ ln -s ${hexokinase}/bin/hexokinase $target/hexokinase/hexokinase
+ '';
+
+ meta.platforms = lib.platforms.all;
});
vim-hier = super.vim-hier.overrideAttrs (old: {
@@ -593,6 +716,13 @@ self: super: {
dependencies = with super; [ vim-addon-mw-utils tlib_vim ];
});
+ vim-stylish-haskell = super.vim-stylish-haskell.overrideAttrs (old: {
+ postPatch = old.postPatch or "" + ''
+ substituteInPlace ftplugin/haskell/stylish-haskell.vim --replace \
+ 'g:stylish_haskell_command = "stylish-haskell"' \
+ 'g:stylish_haskell_command = "${stylish-haskell}/bin/stylish-haskell"'
+ '';
+ });
vim-wakatime = super.vim-wakatime.overrideAttrs (old: {
buildInputs = [ python ];
@@ -617,6 +747,37 @@ self: super: {
'';
});
+ vim2nix = buildVimPluginFrom2Nix {
+ pname = "vim2nix";
+ version = "1.0";
+ src = ./vim2nix;
+ dependencies = with super; [ vim-addon-manager ];
+ };
+
+ vimacs = super.vimacs.overrideAttrs (old: {
+ buildPhase = ''
+ substituteInPlace bin/vim \
+ --replace '/usr/bin/vim' 'vim' \
+ --replace '/usr/bin/gvim' 'gvim'
+ # remove unnecessary duplicated bin wrapper script
+ rm -r plugin/vimacs
+ '';
+ meta = with lib; {
+ description = "Vim-Improved eMACS: Emacs emulation plugin for Vim";
+ homepage = "http://algorithm.com.au/code/vimacs";
+ license = licenses.gpl2Plus;
+ maintainers = with lib.maintainers; [ millerjason ];
+ };
+ });
+
+ vimsence = super.vimsence.overrideAttrs (old: {
+ meta = with lib; {
+ description = "Discord rich presence for Vim";
+ homepage = "https://github.com/hugolgst/vimsence";
+ maintainers = with lib.maintainers; [ hugolgst ];
+ };
+ });
+
vimproc-vim = super.vimproc-vim.overrideAttrs (old: {
buildInputs = [ which ];
@@ -629,6 +790,10 @@ self: super: {
'';
});
+ vimshell-vim = super.vimshell-vim.overrideAttrs (old: {
+ dependencies = with super; [ vimproc-vim ];
+ });
+
YankRing-vim = super.YankRing-vim.overrideAttrs (old: {
sourceRoot = ".";
});
@@ -652,145 +817,6 @@ self: super: {
};
});
- jedi-vim = super.jedi-vim.overrideAttrs (old: {
- # checking for python3 support in vim would be neat, too, but nobody else seems to care
- buildInputs = [ python3.pkgs.jedi ];
- meta = {
- description = "code-completion for python using python-jedi";
- license = lib.licenses.mit;
- };
- });
-
- lf-vim = super.lf-vim.overrideAttrs (old: {
- dependencies = with super; [ vim-floaterm ];
- });
-
- vim-stylish-haskell = super.vim-stylish-haskell.overrideAttrs (old: {
- postPatch = old.postPatch or "" + ''
- substituteInPlace ftplugin/haskell/stylish-haskell.vim --replace \
- 'g:stylish_haskell_command = "stylish-haskell"' \
- 'g:stylish_haskell_command = "${stylish-haskell}/bin/stylish-haskell"'
- '';
- });
-
- vCoolor-vim = super.vCoolor-vim.overrideAttrs (old: {
- # on linux can use either Zenity or Yad.
- propagatedBuildInputs = [ gnome3.zenity ];
- meta = {
- description = "Simple color selector/picker plugin";
- license = lib.licenses.publicDomain;
- };
- });
-
- unicode-vim =
- let
- unicode-data = fetchurl {
- url = "http://www.unicode.org/Public/UNIDATA/UnicodeData.txt";
- sha256 = "16b0jzvvzarnlxdvs2izd5ia0ipbd87md143dc6lv6xpdqcs75s9";
- };
- in
- super.unicode-vim.overrideAttrs (old: {
-
- # redirect to /dev/null else changes terminal color
- buildPhase = ''
- cp "${unicode-data}" autoload/unicode/UnicodeData.txt
- echo "Building unicode cache"
- ${vim}/bin/vim --cmd ":set rtp^=$PWD" -c 'ru plugin/unicode.vim' -c 'UnicodeCache' -c ':echohl Normal' -c ':q' > /dev/null
- '';
- });
-
- vim-hexokinase = super.vim-hexokinase.overrideAttrs (old: {
- preFixup =
- let
- hexokinase = buildGoModule {
- name = "hexokinase";
- src = old.src + "/hexokinase";
- vendorSha256 = "pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
- };
- in
- ''
- ln -s ${hexokinase}/bin/hexokinase $target/hexokinase/hexokinase
- '';
-
- meta.platforms = lib.platforms.all;
- });
-
- vim-clap = super.vim-clap.overrideAttrs (old: {
- preFixup =
- let
- maple-bin = rustPlatform.buildRustPackage {
- name = "maple";
- src = old.src;
-
- nativeBuildInputs = [
- pkg-config
- ];
-
- buildInputs = [
- openssl
- ] ++ lib.optionals stdenv.isDarwin [
- CoreServices
- curl
- libgit2
- libiconv
- ];
-
- cargoSha256 = "25UkYKhlGmlDg4fz1jZHjpQn5s4k5FKlFK0MU8YM5SE=";
- };
- in
- ''
- ln -s ${maple-bin}/bin/maple $target/bin/maple
- '';
-
- meta.platforms = lib.platforms.all;
- });
-
- compe-tabnine = super.compe-tabnine.overrideAttrs (old: {
- buildInputs = [ tabnine ];
-
- postFixup = ''
- mkdir $target/binaries
- ln -s ${tabnine}/bin/TabNine $target/binaries/TabNine_$(uname -s)
- '';
- });
-
- completion-tabnine = super.completion-tabnine.overrideAttrs (old: {
- buildInputs = [ tabnine ];
-
- postFixup = ''
- mkdir $target/binaries
- ln -s ${tabnine}/bin/TabNine $target/binaries/TabNine_$(uname -s)
- '';
- });
-
- telescope-frecency-nvim = super.telescope-frecency-nvim.overrideAttrs (old: {
- dependencies = [ self.sql-nvim ];
- });
-
- telescope-fzy-native-nvim = super.telescope-fzy-native-nvim.overrideAttrs (old: {
- preFixup =
- let
- fzy-lua-native-path = "deps/fzy-lua-native";
- fzy-lua-native =
- stdenv.mkDerivation {
- name = "fzy-lua-native";
- src = "${old.src}/${fzy-lua-native-path}";
- # remove pre-compiled binaries
- preBuild = "rm -rf static/*";
- installPhase = ''
- install -Dm 444 -t $out/static static/*
- install -Dm 444 -t $out/lua lua/*
- '';
- };
- in
- ''
- rm -rf $target/${fzy-lua-native-path}/*
- ln -s ${fzy-lua-native}/static $target/${fzy-lua-native-path}/static
- ln -s ${fzy-lua-native}/lua $target/${fzy-lua-native-path}/lua
- '';
- meta.platforms = lib.platforms.all;
- });
-
} // (
let
nodePackageNames = [
diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names
index 8cb03c52cec..aef8958b55e 100644
--- a/pkgs/misc/vim-plugins/vim-plugin-names
+++ b/pkgs/misc/vim-plugins/vim-plugin-names
@@ -25,6 +25,7 @@ ap/vim-css-color
arcticicestudio/nord-vim
artur-shaik/vim-javacomplete2
autozimu/LanguageClient-neovim
+axelf4/vim-strip-trailing-whitespace
ayu-theme/ayu-vim
bakpakin/fennel.vim
bazelbuild/vim-bazel
@@ -63,6 +64,7 @@ christoomey/vim-sort-motion
christoomey/vim-tmux-navigator
chuling/ci_dark
ckarnell/antonys-macro-repeater
+clojure-vim/vim-jack-in
cloudhead/neovim-fuzzy
CoatiSoftware/vim-sourcetrail
cocopon/iceberg.vim
@@ -272,6 +274,7 @@ keith/rspec.vim
keith/swift.vim
kevinhwang91/nvim-bqf@main
kevinhwang91/nvim-hlslens@main
+kevinhwang91/rnvimr
kien/rainbow_parentheses.vim
knubie/vim-kitty-navigator
konfekt/fastfold
@@ -287,6 +290,7 @@ kshenoy/vim-signature
kyazdani42/nvim-tree.lua
kyazdani42/nvim-web-devicons
lambdalisue/fern.vim
+lambdalisue/gina.vim
lambdalisue/vim-gista
lambdalisue/vim-manpager
lambdalisue/vim-pager
@@ -483,6 +487,8 @@ prabirshrestha/vim-lsp
preservim/nerdcommenter
preservim/nerdtree
preservim/tagbar
+preservim/vim-pencil
+preservim/vim-wordy
preservim/vimux
psliwka/vim-smoothie
ptzz/lf.vim
@@ -493,6 +499,7 @@ qnighy/lalrpop.vim
qpkorr/vim-bufkill
Quramy/tsuquyomi
racer-rust/vim-racer
+radenling/vim-dispatch-neovim
rafaqz/ranger.vim
rafi/awesome-vim-colorschemes
raghur/fruzzy
@@ -501,8 +508,6 @@ Raimondi/delimitMate
rakr/vim-one
rbgrouleff/bclose.vim
rbong/vim-flog
-reedes/vim-pencil
-reedes/vim-wordy
rhysd/committia.vim
rhysd/devdocs.vim
rhysd/git-messenger.vim
@@ -578,6 +583,7 @@ sunaku/vim-dasht
svermeulen/vim-subversive
t9md/vim-choosewin
t9md/vim-smalls
+TaDaa/vimade
takac/vim-hardtime
tami5/compe-conjure
tami5/lispdocs.nvim
@@ -589,6 +595,7 @@ terryma/vim-multiple-cursors
tex/vimpreviewpandoc
Th3Whit3Wolf/one-nvim@main
theHamsta/nvim-dap-virtual-text
+ThePrimeagen/git-worktree.nvim
ThePrimeagen/vim-apm
thinca/vim-ft-diff_fold
thinca/vim-prettyprint
@@ -650,6 +657,7 @@ tremor-rs/tremor-vim@main
triglav/vim-visual-increment
troydm/zoomwintab.vim
tversteeg/registers.nvim@main
+tweekmonster/wstrip.vim
twerth/ir_black
twinside/vim-haskellconceal
Twinside/vim-hoogle
diff --git a/pkgs/misc/vim-plugins/vim-utils.nix b/pkgs/misc/vim-plugins/vim-utils.nix
index fd66c48ecb2..c55e8aa0a01 100644
--- a/pkgs/misc/vim-plugins/vim-utils.nix
+++ b/pkgs/misc/vim-plugins/vim-utils.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv, vim, vimPlugins, vim_configurable, neovim, buildEnv, writeText, writeScriptBin
+# tests available at pkgs/test/vim
+{ lib, stdenv, vim, vimPlugins, vim_configurable, buildEnv, writeText, writeScriptBin
, nix-prefetch-hg, nix-prefetch-git
, fetchFromGitHub, runtimeShell
}:
@@ -183,13 +184,49 @@ let
rtpPath = "share/vim-plugins";
+ nativeImpl = packages: lib.optionalString (packages != null)
+ (let
+ link = (packageName: dir: pluginPath: "ln -sf ${pluginPath}/share/vim-plugins/* $out/pack/${packageName}/${dir}");
+ packageLinks = (packageName: {start ? [], opt ? []}:
+ let
+ # `nativeImpl` expects packages to be derivations, not strings (as
+ # opposed to older implementations that have to maintain backwards
+ # compatibility). Therefore we don't need to deal with "knownPlugins"
+ # and can simply pass `null`.
+ depsOfOptionalPlugins = lib.subtractLists opt (findDependenciesRecursively opt);
+ startWithDeps = findDependenciesRecursively start;
+ in
+ [ "mkdir -p $out/pack/${packageName}/start" ]
+ # To avoid confusion, even dependencies of optional plugins are added
+ # to `start` (except if they are explicitly listed as optional plugins).
+ ++ (builtins.map (link packageName "start") (lib.unique (startWithDeps ++ depsOfOptionalPlugins)))
+ ++ ["mkdir -p $out/pack/${packageName}/opt"]
+ ++ (builtins.map (link packageName "opt") opt)
+ );
+ packDir = (packages:
+ stdenv.mkDerivation {
+ name = "vim-pack-dir";
+ src = ./.;
+ installPhase = lib.concatStringsSep "\n" (lib.flatten (lib.mapAttrsToList packageLinks packages));
+ preferLocalBuild = true;
+ }
+ );
+ in
+ ''
+ set packpath^=${packDir packages}
+ set runtimepath^=${packDir packages}
+ '');
+
vimrcContent = {
packages ? null,
vam ? null,
pathogen ? null,
plug ? null,
- beforePlugins ? "",
- customRC ? ""
+ beforePlugins ? ''
+ " configuration generated by NIX
+ set nocompatible
+ '',
+ customRC ? null
}:
let
@@ -301,56 +338,16 @@ let
call vam#Scripts(l, {})
'');
- nativeImpl = lib.optionalString (packages != null)
- (let
- link = (packageName: dir: pluginPath: "ln -sf ${pluginPath}/share/vim-plugins/* $out/pack/${packageName}/${dir}");
- packageLinks = (packageName: {start ? [], opt ? []}:
- let
- # `nativeImpl` expects packages to be derivations, not strings (as
- # opposed to older implementations that have to maintain backwards
- # compatibility). Therefore we don't need to deal with "knownPlugins"
- # and can simply pass `null`.
- depsOfOptionalPlugins = lib.subtractLists opt (findDependenciesRecursively opt);
- startWithDeps = findDependenciesRecursively start;
- in
- ["mkdir -p $out/pack/${packageName}/start"]
- # To avoid confusion, even dependencies of optional plugins are added
- # to `start` (except if they are explicitly listed as optional plugins).
- ++ (builtins.map (link packageName "start") (lib.unique (startWithDeps ++ depsOfOptionalPlugins)))
- ++ ["mkdir -p $out/pack/${packageName}/opt"]
- ++ (builtins.map (link packageName "opt") opt)
- );
- packDir = (packages:
- stdenv.mkDerivation {
- name = "vim-pack-dir";
- src = ./.;
- installPhase = lib.concatStringsSep
- "\n"
- (lib.flatten (lib.mapAttrsToList packageLinks packages));
- preferLocalBuild = true;
- }
- );
- in
- ''
- set packpath^=${packDir packages}
- set runtimepath^=${packDir packages}
+ entries = [
+ beforePlugins
+ vamImpl pathogenImpl plugImpl
+ (nativeImpl packages)
+ customRC
+ ];
- filetype indent plugin on | syn on
- '');
+ in
+ lib.concatStringsSep "\n" (lib.filter (x: x != null && x != "") entries);
- in ''
- " configuration generated by NIX
- set nocompatible
-
- ${beforePlugins}
-
- ${vamImpl}
- ${pathogenImpl}
- ${plugImpl}
- ${nativeImpl}
-
- ${customRC}
- '';
vimrcFile = settings: writeText "vimrc" (vimrcContent settings);
in
@@ -448,8 +445,6 @@ rec {
'';
};
- vim_with_vim2nix = vim_configurable.customize { name = "vim"; vimrcConfig.vam.pluginDictionaries = [ "vim-addon-vim2nix" ]; };
-
inherit (import ./build-vim-plugin.nix { inherit lib stdenv rtpPath vim; }) buildVimPlugin buildVimPluginFrom2Nix;
# used to figure out which python dependencies etc. neovim needs
@@ -475,62 +470,4 @@ rec {
nativePlugins = lib.concatMap ({start?[], opt?[], knownPlugins?vimPlugins}: start++opt) nativePluginsConfigs;
in
nativePlugins ++ nonNativePlugins;
-
-
- # test cases:
- test_vim_with_vim_nix_using_vam = vim_configurable.customize {
- name = "vim-with-vim-addon-nix-using-vam";
- vimrcConfig.vam.pluginDictionaries = [{name = "vim-nix"; }];
- };
-
- test_vim_with_vim_nix_using_pathogen = vim_configurable.customize {
- name = "vim-with-vim-addon-nix-using-pathogen";
- vimrcConfig.pathogen.pluginNames = [ "vim-nix" ];
- };
-
- test_vim_with_vim_nix_using_plug = vim_configurable.customize {
- name = "vim-with-vim-addon-nix-using-plug";
- vimrcConfig.plug.plugins = with vimPlugins; [ vim-nix ];
- };
-
- test_vim_with_vim_nix = vim_configurable.customize {
- name = "vim-with-vim-addon-nix";
- vimrcConfig.packages.myVimPackage.start = with vimPlugins; [ vim-nix ];
- };
-
- # only neovim makes use of `requiredPlugins`, test this here
- test_nvim_with_vim_nix_using_pathogen = neovim.override {
- configure.pathogen.pluginNames = [ "vim-nix" ];
- };
-
- # regression test for https://github.com/NixOS/nixpkgs/issues/53112
- # The user may have specified their own plugins which may not be formatted
- # exactly as the generated ones. In particular, they may not have the `pname`
- # attribute.
- test_vim_with_custom_plugin = vim_configurable.customize {
- name = "vim_with_custom_plugin";
- vimrcConfig.vam.knownPlugins =
- vimPlugins // ({
- vim-trailing-whitespace = buildVimPluginFrom2Nix {
- name = "vim-trailing-whitespace";
- src = fetchFromGitHub {
- owner = "bronson";
- repo = "vim-trailing-whitespace";
- rev = "4c596548216b7c19971f8fc94e38ef1a2b55fee6";
- sha256 = "0f1cpnp1nxb4i5hgymjn2yn3k1jwkqmlgw1g02sq270lavp2dzs9";
- };
- # make sure string dependencies are handled
- dependencies = [ "vim-nix" ];
- };
- });
- vimrcConfig.vam.pluginDictionaries = [ { names = [ "vim-trailing-whitespace" ]; } ];
- };
-
- # system remote plugin manifest should be generated, deoplete should be usable
- # without the user having to do `UpdateRemotePlugins`. To test, launch neovim
- # and do `:call deoplete#enable()`. It will print an error if the remote
- # plugin is not registered.
- test_nvim_with_remote_plugin = neovim.override {
- configure.pathogen.pluginNames = with vimPlugins; [ deoplete-nvim ];
- };
}
diff --git a/pkgs/misc/vscode-extensions/default.nix b/pkgs/misc/vscode-extensions/default.nix
index 197aacb48a0..72581f340a3 100644
--- a/pkgs/misc/vscode-extensions/default.nix
+++ b/pkgs/misc/vscode-extensions/default.nix
@@ -279,6 +279,23 @@ let
};
};
+ editorconfig.editorconfig = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "EditorConfig";
+ publisher = "EditorConfig";
+ version = "0.16.4";
+ sha256 = "0fa4h9hk1xq6j3zfxvf483sbb4bd17fjl5cdm3rll7z9kaigdqwg";
+ };
+ meta = with lib; {
+ changelog = "https://marketplace.visualstudio.com/items/EditorConfig.EditorConfig/changelog";
+ description = "EditorConfig Support for Visual Studio Code";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig";
+ homepage = "https://github.com/editorconfig/editorconfig-vscode";
+ license = licenses.mit;
+ maintainers = with maintainers; [ dbirks ];
+ };
+ };
+
edonet.vscode-command-runner = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-command-runner";
@@ -427,8 +444,8 @@ let
mktplcRef = {
name = "github-vscode-theme";
publisher = "github";
- version = "3.0.0";
- sha256 = "1a77mbx75xfsfdlhgzghj9i7ik080bppc3jm8c00xp6781987fpa";
+ version = "4.0.2";
+ sha256 = "06mysdwjh7km874rrk0xc0xxaqx15b4a7x1i8dly440h8w3ng5bs";
};
meta = with lib; {
description = "GitHub theme for VS Code";
@@ -525,6 +542,23 @@ let
};
};
+ iciclesoft.workspacesort = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "workspacesort";
+ publisher = "iciclesoft";
+ version = "1.6.0";
+ sha256 = "1pbk8kflywll6lqhmffz9yjf01dn8xq8sk6rglnfn2kl2ildfhh6";
+ };
+ meta = with lib; {
+ changelog = "https://marketplace.visualstudio.com/items/iciclesoft.workspacesort/changelog";
+ description = "Sort workspace-folders alphabetically rather than in chronological order";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=iciclesoft.workspacesort";
+ homepage = "https://github.com/iciclesoft/workspacesort-for-VSCode";
+ license = licenses.mit;
+ maintainers = with maintainers; [ dbirks ];
+ };
+ };
+
james-yu.latex-workshop = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "latex-workshop";
@@ -793,8 +827,8 @@ let
mktplcRef = {
name = "scala";
publisher = "scala-lang";
- version = "0.5.1";
- sha256 = "0p9nhds2xn08xz8x822q15jdrdlqkg2wa1y7mk9k89n8n2kfh91g";
+ version = "0.5.3";
+ sha256 = "0isw8jh845hj2fw7my1i19b710v3m5qsjy2faydb529ssdqv463p";
};
meta = {
license = lib.licenses.mit;
@@ -805,8 +839,8 @@ let
mktplcRef = {
name = "metals";
publisher = "scalameta";
- version = "1.9.13";
- sha256 = "0vrg25ygmyjx1lwif2ypyv688b290ycfn1qf0izxbmgi2z3f0wf9";
+ version = "1.10.3";
+ sha256 = "0m4qm1z1j6gfqjjnxl8v48ga7zkaspjy3gcnkrch3aj4fyafjl09";
};
meta = {
license = lib.licenses.asl20;
diff --git a/pkgs/os-specific/bsd/netbsd/default.nix b/pkgs/os-specific/bsd/netbsd/default.nix
index 2aed04c41bd..d7ee2182109 100644
--- a/pkgs/os-specific/bsd/netbsd/default.nix
+++ b/pkgs/os-specific/bsd/netbsd/default.nix
@@ -61,7 +61,7 @@ let
builder = ./builder.sh;
meta = with lib; {
- maintainers = with maintainers; [matthewbauer];
+ maintainers = with maintainers; [ matthewbauer qyliss ];
platforms = platforms.unix;
license = licenses.bsd2;
};
diff --git a/pkgs/os-specific/darwin/chunkwm/default.nix b/pkgs/os-specific/darwin/chunkwm/default.nix
index b326b98de53..c0229ba3ae2 100644
--- a/pkgs/os-specific/darwin/chunkwm/default.nix
+++ b/pkgs/os-specific/darwin/chunkwm/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
pname = "chunkwm";
version = "0.4.9";
src = fetchzip {
- url = "http://github.com/koekeishiya/chunkwm/archive/v${version}.tar.gz";
+ url = "https://github.com/koekeishiya/chunkwm/archive/v${version}.tar.gz";
sha256 = "0w8q92q97fdvbwc3qb5w44jn4vi3m65ssdvjp5hh6b7llr17vspl";
};
diff --git a/pkgs/os-specific/darwin/darling/default.nix b/pkgs/os-specific/darwin/darling/default.nix
index ef9afafbcd3..22fb6d3b07c 100644
--- a/pkgs/os-specific/darwin/darling/default.nix
+++ b/pkgs/os-specific/darwin/darling/default.nix
@@ -8,11 +8,22 @@ stdenv.mkDerivation rec {
url = "https://github.com/darlinghq/darling/archive/d2cc5fa748003aaa70ad4180fff0a9a85dc65e9b.tar.gz";
sha256 = "11b51fw47nl505h63bgx5kqiyhf3glhp1q6jkpb6nqfislnzzkrf";
postFetch = ''
- # Get rid of case conflict
- mkdir $out
+ # The archive contains both `src/opendirectory` and `src/OpenDirectory`,
+ # pre-create the directory to choose the canonical case on
+ # case-insensitive filesystems.
+ mkdir -p $out/src/OpenDirectory
+
cd $out
tar -xzf $downloadedFile --strip-components=1
rm -r $out/src/libm
+
+ # If `src/opendirectory` and `src/OpenDirectory` refer to different
+ # things, then combine them into `src/OpenDirectory` to match the result
+ # on case-insensitive filesystems.
+ if [ "$(stat -c %i src/opendirectory)" != "$(stat -c %i src/OpenDirectory)" ]; then
+ mv src/opendirectory/* src/OpenDirectory/
+ rmdir src/opendirectory
+ fi
'';
};
diff --git a/pkgs/os-specific/linux/afuse/default.nix b/pkgs/os-specific/linux/afuse/default.nix
index 7375f45eb6d..75c44e11172 100644
--- a/pkgs/os-specific/linux/afuse/default.nix
+++ b/pkgs/os-specific/linux/afuse/default.nix
@@ -11,11 +11,18 @@ stdenv.mkDerivation {
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ fuse ];
+ postPatch = lib.optionalString stdenv.isDarwin ''
+ # Fix the build on macOS with macFUSE installed
+ substituteInPlace configure.ac --replace \
+ 'export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH' \
+ ""
+ '';
+
meta = {
description = "Automounter in userspace";
homepage = "https://github.com/pcarrier/afuse";
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.marcweber ];
- platforms = lib.platforms.linux;
+ platforms = lib.platforms.unix;
};
}
diff --git a/pkgs/os-specific/linux/bcc/default.nix b/pkgs/os-specific/linux/bcc/default.nix
index 290e3b56180..4235ecb38d3 100644
--- a/pkgs/os-specific/linux/bcc/default.nix
+++ b/pkgs/os-specific/linux/bcc/default.nix
@@ -1,7 +1,7 @@
-{ lib, stdenv, fetchurl, fetchpatch
+{ lib, stdenv, fetchFromGitHub
, makeWrapper, cmake, llvmPackages, kernel
, flex, bison, elfutils, python, luajit, netperf, iperf, libelf
-, systemtap, bash
+, systemtap, bash, libbpf
}:
python.pkgs.buildPythonApplication rec {
@@ -10,9 +10,11 @@ python.pkgs.buildPythonApplication rec {
disabled = !stdenv.isLinux;
- src = fetchurl {
- url = "https://github.com/iovisor/bcc/releases/download/v${version}/bcc-src-with-submodule.tar.gz";
- sha256 = "sha256-TEH8Gmp+8ghLQ8UsGy5hBCMLqfMeApWEFr8THYSOdOQ=";
+ src = fetchFromGitHub {
+ owner = "iovisor";
+ repo = "bcc";
+ rev = "v${version}";
+ sha256 = "sha256:0k807vzznlb2icczw64ph6q28605kvghya2kd4h3c7jmap6gq1qg";
};
format = "other";
@@ -20,6 +22,7 @@ python.pkgs.buildPythonApplication rec {
llvm clang-unwrapped kernel
elfutils luajit netperf iperf
systemtap.stapBuild flex bash
+ libbpf
];
patches = [
@@ -38,6 +41,7 @@ python.pkgs.buildPythonApplication rec {
"-DREVISION=${version}"
"-DENABLE_USDT=ON"
"-DENABLE_CPP_API=ON"
+ "-DCMAKE_USE_LIBBPF_PACKAGE=ON"
];
postPatch = ''
diff --git a/pkgs/os-specific/linux/btfs/default.nix b/pkgs/os-specific/linux/btfs/default.nix
index 70864b311d2..342272f4286 100644
--- a/pkgs/os-specific/linux/btfs/default.nix
+++ b/pkgs/os-specific/linux/btfs/default.nix
@@ -22,6 +22,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/johang/btfs";
license = licenses.gpl3;
maintainers = with maintainers; [ rnhmjoj ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/os-specific/linux/displaylink/default.nix b/pkgs/os-specific/linux/displaylink/default.nix
index bd50852bd9d..ca3e38c2e70 100644
--- a/pkgs/os-specific/linux/displaylink/default.nix
+++ b/pkgs/os-specific/linux/displaylink/default.nix
@@ -20,17 +20,17 @@ let
in
stdenv.mkDerivation rec {
pname = "displaylink";
- version = "5.3.1.34";
+ version = "5.4.0-55.153";
src = requireFile rec {
name = "displaylink.zip";
- sha256 = "1c1kbjgpb71f73qnyl44rvwi6l4ivddq789rwvvh0ahw2jm324hy";
+ sha256 = "1m2l3bnlfwfp94w7khr05npsbysg9mcyi7hi85n78xkd0xdcxml8";
message = ''
In order to install the DisplayLink drivers, you must first
comply with DisplayLink's EULA and download the binaries and
sources from here:
- https://www.displaylink.com/downloads/file?id=1576
+ https://www.synaptics.com/node/3751
Once you have downloaded the file, please use the following
commands and re-run the installation:
diff --git a/pkgs/os-specific/linux/dropwatch/default.nix b/pkgs/os-specific/linux/dropwatch/default.nix
index 288dea85cc8..c2701c05719 100644
--- a/pkgs/os-specific/linux/dropwatch/default.nix
+++ b/pkgs/os-specific/linux/dropwatch/default.nix
@@ -1,30 +1,47 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
-, libnl, readline, libbfd, ncurses, zlib }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+, pkg-config
+, libbfd
+, libnl
+, libpcap
+, ncurses
+, readline
+, zlib
+}:
stdenv.mkDerivation rec {
pname = "dropwatch";
- version = "1.5.1";
+ version = "1.5.3";
src = fetchFromGitHub {
owner = "nhorman";
repo = pname;
rev = "v${version}";
- sha256 = "1qmax0l7z1qik42c949fnvjh5r6awk4gpgzdsny8iwnmwzjyp8b8";
+ sha256 = "0axx0zzrs7apqnl0r70jyvmgk7cs5wk185id479mapgngibwkyxy";
};
- nativeBuildInputs = [ autoreconfHook pkg-config ];
- buildInputs = [ libbfd libnl ncurses readline zlib ];
-
- # To avoid running into https://sourceware.org/bugzilla/show_bug.cgi?id=14243 we need to define:
- NIX_CFLAGS_COMPILE = "-DPACKAGE=${pname} -DPACKAGE_VERSION=${version}";
+ nativeBuildInputs = [
+ autoreconfHook
+ pkg-config
+ ];
+ buildInputs = [
+ libbfd
+ libnl
+ libpcap
+ ncurses
+ readline
+ zlib
+ ];
enableParallelBuilding = true;
meta = with lib; {
description = "Linux kernel dropped packet monitor";
homepage = "https://github.com/nhorman/dropwatch";
- license = licenses.gpl2;
+ license = licenses.gpl2Plus;
platforms = platforms.linux;
- maintainers = [ maintainers.c0bw3b ];
+ maintainers = with maintainers; [ c0bw3b ];
};
}
diff --git a/pkgs/os-specific/linux/evdi/default.nix b/pkgs/os-specific/linux/evdi/default.nix
index 0f56d0e95ca..a8a0445e955 100644
--- a/pkgs/os-specific/linux/evdi/default.nix
+++ b/pkgs/os-specific/linux/evdi/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "evdi";
- version = "v1.7.2";
+ version = "unstable-20210401";
src = fetchFromGitHub {
owner = "DisplayLink";
repo = pname;
- rev = version;
- sha256 = "074j0xh037n8mc4isihfz9lap57wvxaxib32pvy6jhjl3wyik632";
+ rev = "b0b3d131b26df62664ca33775679eea7b70c47b1";
+ sha256 = "09apbvdc78bbqzja9z3b1wrwmqkv3k7cn3lll5gsskxjnqbhxk9y";
};
nativeBuildInputs = kernel.moduleBuildDependencies;
@@ -33,6 +33,6 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
license = with licenses; [ lgpl21 gpl2 ];
homepage = "https://www.displaylink.com/";
- broken = versionOlder kernel.version "4.9" || stdenv.isAarch64;
+ broken = versionOlder kernel.version "4.19" || stdenv.isAarch64;
};
}
diff --git a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix
index 7e0c48a439d..6a826f63966 100644
--- a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix
+++ b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix
@@ -25,6 +25,6 @@ stdenvNoCC.mkDerivation rec {
description = "Firmware for the Raspberry Pi board";
homepage = "https://github.com/raspberrypi/firmware";
license = licenses.unfreeRedistributableFirmware; # See https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom
- maintainers = with maintainers; [ dezgeg tavyc ];
+ maintainers = with maintainers; [ dezgeg ];
};
}
diff --git a/pkgs/os-specific/linux/flashbench/default.nix b/pkgs/os-specific/linux/flashbench/default.nix
index 44bcbba205e..619aea69aa6 100644
--- a/pkgs/os-specific/linux/flashbench/default.nix
+++ b/pkgs/os-specific/linux/flashbench/default.nix
@@ -27,6 +27,5 @@ stdenv.mkDerivation {
homepage = "https://github.com/bradfa/flashbench";
platforms = platforms.linux;
license = licenses.gpl2Only;
- maintainers = [ maintainers.rycee ];
};
}
diff --git a/pkgs/os-specific/linux/isgx/default.nix b/pkgs/os-specific/linux/isgx/default.nix
index 1806916b14d..3e551e55917 100644
--- a/pkgs/os-specific/linux/isgx/default.nix
+++ b/pkgs/os-specific/linux/isgx/default.nix
@@ -17,6 +17,11 @@ stdenv.mkDerivation rec {
url = "https://github.com/intel/linux-sgx-driver/commit/276c5c6a064d22358542f5e0aa96b1c0ace5d695.patch";
sha256 = "sha256-PmchqYENIbnJ51G/tkdap/g20LUrJEoQ4rDtqy6hj24=";
})
+ # Fixes detection with kernel >= 5.11
+ (fetchpatch {
+ url = "https://github.com/intel/linux-sgx-driver/commit/ed2c256929962db1a8805db53bed09bb8f2f4de3.patch";
+ sha256 = "sha256-MRbgS4U8FTCP1J1n+rhsvbXxKDytfl6B7YlT9Izq05U=";
+ })
];
hardeningDisable = [ "pic" ];
@@ -46,8 +51,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/intel/linux-sgx-driver";
license = with licenses; [ bsd3 /* OR */ gpl2Only ];
maintainers = with maintainers; [ oxalica ];
- platforms = platforms.linux;
- # The driver is already in kernel >= 5.11.0.
- broken = kernelAtLeast "5.11.0";
+ platforms = [ "x86_64-linux" ];
};
}
diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix
index 008205f5b15..1e20cf61055 100644
--- a/pkgs/os-specific/linux/kernel/common-config.nix
+++ b/pkgs/os-specific/linux/kernel/common-config.nix
@@ -715,7 +715,6 @@ let
MD = yes; # Device mapper (RAID, LVM, etc.)
# Enable initrd support.
- BLK_DEV_RAM = yes;
BLK_DEV_INITRD = yes;
PM_TRACE_RTC = no; # Disable some expensive (?) features.
diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json
index 9580836ced8..990262ed4d3 100644
--- a/pkgs/os-specific/linux/kernel/hardened/patches.json
+++ b/pkgs/os-specific/linux/kernel/hardened/patches.json
@@ -7,26 +7,26 @@
},
"4.19": {
"extra": "-hardened1",
- "name": "linux-hardened-4.19.186-hardened1.patch",
- "sha256": "01f8scgr3shjxl6w7jqyvb38idrs0m53cafpplvz1q69axaf9gy6",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.186-hardened1/linux-hardened-4.19.186-hardened1.patch"
+ "name": "linux-hardened-4.19.187-hardened1.patch",
+ "sha256": "1vw05qff7hvzl7krcf5kh0ynyy5gljps8qahr4jm0hsd69lmn0qk",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.187-hardened1/linux-hardened-4.19.187-hardened1.patch"
},
"5.10": {
"extra": "-hardened1",
- "name": "linux-hardened-5.10.29-hardened1.patch",
- "sha256": "0aj46a6bhfgn8czpmaqpnggmxzfqz29kmh9kif4v3a546q5mrq7n",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.29-hardened1/linux-hardened-5.10.29-hardened1.patch"
+ "name": "linux-hardened-5.10.30-hardened1.patch",
+ "sha256": "0sxxzrhj41pxk01s2bcfwb47aab2by1zc7yyx9859rslq7dg5aly",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.30-hardened1/linux-hardened-5.10.30-hardened1.patch"
},
"5.11": {
"extra": "-hardened1",
- "name": "linux-hardened-5.11.13-hardened1.patch",
- "sha256": "008izyg6a2dycxczfixykshll5hq5gff216fhgl1azr4ymiicywy",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.11.13-hardened1/linux-hardened-5.11.13-hardened1.patch"
+ "name": "linux-hardened-5.11.14-hardened1.patch",
+ "sha256": "1j8saj1dyflah3mjs07rvxfhhpwhxk65r1y2bd228gp5nm6305px",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.11.14-hardened1/linux-hardened-5.11.14-hardened1.patch"
},
"5.4": {
"extra": "-hardened1",
- "name": "linux-hardened-5.4.111-hardened1.patch",
- "sha256": "1zvhdyhvmzi58g07bsg8140nf9k29dzxlbqvha2sylnlj99sjjfd",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.111-hardened1/linux-hardened-5.4.111-hardened1.patch"
+ "name": "linux-hardened-5.4.112-hardened1.patch",
+ "sha256": "1l9igc68dq22nlnlls4x3zfz1h2hb6dqy7vr5r4jvbk22330m12j",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.112-hardened1/linux-hardened-5.4.112-hardened1.patch"
}
}
diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix
index bab03ada980..a0084887c50 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 lib;
buildLinux (args // rec {
- version = "4.19.186";
+ version = "4.19.187";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,7 +13,7 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "0cg6ja7plry1l2mg6hx16lsw0gzn4xpj7xdrrs2hwl8l8a2dgifq";
+ sha256 = "1hx0jw11xmj57v9a8w34729vgrandaing2n9qkhx5dq4mhy04k50";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_19 ];
diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix
index fd8d8f0b692..bf7d3fa7ab3 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.10.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.10.29";
+ version = "5.10.30";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,7 +13,7 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "1v79wylb2kd9gadiqf7dr7jcgynr970bbga09mdn940sq536g30m";
+ sha256 = "0h06lavcbbj9a4dfzca9sprghiq9z33q8i4gh3n2912wmjsnj0nl";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_10 ];
diff --git a/pkgs/os-specific/linux/kernel/linux-5.11.nix b/pkgs/os-specific/linux/kernel/linux-5.11.nix
index 54ebe189486..67dd444810a 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.11.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.11.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.11.13";
+ version = "5.11.14";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,7 +13,7 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "0yvgkc1fmmd4g06sydn51q4l3g5785q9yaaq04lv3kgj4hyijqgs";
+ sha256 = "1ia4wzh44lkvrbvnhdnnjcdyvqx2ihpbwkih7wqm1n5prhq38ql7";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_11 ];
diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix
index c80c4ccea26..d3fe5a36703 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.4.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.4.111";
+ version = "5.4.112";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,7 +13,7 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "00qs4y4d9adffwysdh8sly81hxc3rw7bi9vs3fs4rhwdclr62qi1";
+ sha256 = "190cq97pm0r6s115ay66rjra7fnyn7m4rak89inwhm223931sdmq";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_4 ];
diff --git a/pkgs/os-specific/linux/kernel/linux-lqx.nix b/pkgs/os-specific/linux/kernel/linux-lqx.nix
index 5e4d752f1d7..8662fbbd18b 100644
--- a/pkgs/os-specific/linux/kernel/linux-lqx.nix
+++ b/pkgs/os-specific/linux/kernel/linux-lqx.nix
@@ -1,7 +1,7 @@
{ lib, fetchFromGitHub, buildLinux, linux_zen, ... } @ args:
let
- version = "5.11.14";
+ version = "5.11.15";
suffix = "lqx1";
in
@@ -14,7 +14,7 @@ buildLinux (args // {
owner = "zen-kernel";
repo = "zen-kernel";
rev = "v${version}-${suffix}";
- sha256 = "0kgr6c3mpc9nmg4m2qfk58bji95paq3jwqsyl3h55xk40gshka32";
+ sha256 = "1dwibknj4q8cd3mim679mrb4j8yi7p4q9qjcb4rwvw0yzgxmz3lv";
};
extraMeta = {
diff --git a/pkgs/os-specific/linux/kernel/linux-xanmod.nix b/pkgs/os-specific/linux/kernel/linux-xanmod.nix
index 1057d8cb471..95f736d9418 100644
--- a/pkgs/os-specific/linux/kernel/linux-xanmod.nix
+++ b/pkgs/os-specific/linux/kernel/linux-xanmod.nix
@@ -1,7 +1,7 @@
{ lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args:
let
- version = "5.11.14";
+ version = "5.11.16";
suffix = "xanmod1-cacule";
in
buildLinux (args // rec {
@@ -12,7 +12,7 @@ in
owner = "xanmod";
repo = "linux";
rev = modDirVersion;
- sha256 = "sha256-kRbU1jheZi2U6mfNyhBFn3FJ7fjYkNUVwkx3w/DZNQI=";
+ sha256 = "sha256-sK2DGJsmKP/gvPyT8HWjPa21OOXydMhGjJzrOkPo71Q=";
extraPostFetch = ''
rm $out/.config
'';
diff --git a/pkgs/os-specific/linux/kernel/linux-zen.nix b/pkgs/os-specific/linux/kernel/linux-zen.nix
index d97e4d6aa0e..92aaa957458 100644
--- a/pkgs/os-specific/linux/kernel/linux-zen.nix
+++ b/pkgs/os-specific/linux/kernel/linux-zen.nix
@@ -1,7 +1,7 @@
{ lib, fetchFromGitHub, buildLinux, ... } @ args:
let
- version = "5.11.14";
+ version = "5.11.15";
suffix = "zen1";
in
@@ -14,7 +14,7 @@ buildLinux (args // {
owner = "zen-kernel";
repo = "zen-kernel";
rev = "v${version}-${suffix}";
- sha256 = "1n49h9s3jyvrdy662b6j9xjbmhxxdczk980vrlgs09fg5ny0k59a";
+ sha256 = "0n9wm0lpwkqd79112k03lxp4hc898nvs2jjw3hxzggn5wk4i2dz9";
};
extraMeta = {
diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix
index 1da25db7ae3..aa1b810976d 100644
--- a/pkgs/os-specific/linux/nvidia-x11/default.nix
+++ b/pkgs/os-specific/linux/nvidia-x11/default.nix
@@ -28,10 +28,10 @@ rec {
# Policy: use the highest stable version as the default (on our master).
stable = if stdenv.hostPlatform.system == "x86_64-linux"
then generic {
- version = "460.67";
- sha256_64bit = "L2cRySVw7mgYSN25mJV+b4uOeHTdjLGvFPEkwyFgtec=";
- settingsSha256 = "DB+ZeKm6cYQuVkJWjVd71qOTOmwIcRqx1CxfkgMbDpg=";
- persistencedSha256 = "HCmZZRlNhOHi5yN2lNHhBILZkdng73q0vCbv7CIX/8s=";
+ version = "460.73.01";
+ sha256_64bit = "120ymf59l6nipczszf82lrm2p4ihhqyv2pfwwfg9wy96vqcckc8i";
+ settingsSha256 = "08jh7g34p9yxv5fh1cw0r2pjx65ryiv3w2lk1qg0gxn2r7xypkx0";
+ persistencedSha256 = "040gx4wqp3hxcfb4aba4sl7b01ixr5slhzw0xldwcqlmhpwqphi5";
}
else legacy_390;
diff --git a/pkgs/os-specific/linux/nvidia-x11/generic.nix b/pkgs/os-specific/linux/nvidia-x11/generic.nix
index 75453d955ad..2d325ab3d56 100644
--- a/pkgs/os-specific/linux/nvidia-x11/generic.nix
+++ b/pkgs/os-specific/linux/nvidia-x11/generic.nix
@@ -51,7 +51,7 @@ let
src =
if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
- url = args.url or "https://download.nvidia.com/XFree86/Linux-x86_64/${version}/NVIDIA-Linux-x86_64-${version}${pkgSuffix}.run";
+ url = args.url or "https://us.download.nvidia.com/XFree86/Linux-x86_64/${version}/NVIDIA-Linux-x86_64-${version}${pkgSuffix}.run";
sha256 = sha256_64bit;
}
else if stdenv.hostPlatform.system == "i686-linux" then
diff --git a/pkgs/os-specific/linux/nvme-cli/default.nix b/pkgs/os-specific/linux/nvme-cli/default.nix
index 5e8bb550cf9..3a306508488 100644
--- a/pkgs/os-specific/linux/nvme-cli/default.nix
+++ b/pkgs/os-specific/linux/nvme-cli/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
pname = "nvme-cli";
- version = "1.13";
+ version = "1.14";
src = fetchFromGitHub {
owner = "linux-nvme";
repo = "nvme-cli";
rev = "v${version}";
- sha256 = "1d538kp841bjh8h8d9q7inqz56rdcwb3m78zfx8607ddykv7wcqb";
+ sha256 = "0dpadz945482srqpsbfx1bh7rc499fgpyzz1flhk9g9xjbpapkzc";
};
nativeBuildInputs = [ pkg-config ];
@@ -35,6 +35,6 @@ stdenv.mkDerivation rec {
'';
license = licenses.gpl2Plus;
platforms = platforms.linux;
- maintainers = with maintainers; [ primeos tavyc ];
+ maintainers = with maintainers; [ mic92 ];
};
}
diff --git a/pkgs/os-specific/linux/oci-seccomp-bpf-hook/default.nix b/pkgs/os-specific/linux/oci-seccomp-bpf-hook/default.nix
index cb5719c31a2..16dcfe9ba06 100644
--- a/pkgs/os-specific/linux/oci-seccomp-bpf-hook/default.nix
+++ b/pkgs/os-specific/linux/oci-seccomp-bpf-hook/default.nix
@@ -10,12 +10,12 @@
buildGoModule rec {
pname = "oci-seccomp-bpf-hook";
- version = "1.2.1";
+ version = "1.2.2";
src = fetchFromGitHub {
owner = "containers";
repo = "oci-seccomp-bpf-hook";
rev = "v${version}";
- sha256 = "0zbrpv6j4gd4l36zl2dljazdm85qlqwchf0xvmnaywcj8c8b49xw";
+ sha256 = "sha256-SRphs8zwKz6jlAixVZkHdww0jroaBNK82kSLj1gs6Wg=";
};
vendorSha256 = null;
diff --git a/pkgs/os-specific/linux/radeontop/default.nix b/pkgs/os-specific/linux/radeontop/default.nix
index e6aa07e6cd1..b172fad6adc 100644
--- a/pkgs/os-specific/linux/radeontop/default.nix
+++ b/pkgs/os-specific/linux/radeontop/default.nix
@@ -40,6 +40,5 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/clbr/radeontop";
platforms = platforms.linux;
license = licenses.gpl3;
- maintainers = with maintainers; [ rycee ];
};
}
diff --git a/pkgs/os-specific/linux/rtw88/default.nix b/pkgs/os-specific/linux/rtw88/default.nix
index 6b5e3211a9e..42302351240 100644
--- a/pkgs/os-specific/linux/rtw88/default.nix
+++ b/pkgs/os-specific/linux/rtw88/default.nix
@@ -5,13 +5,13 @@ let
in
stdenv.mkDerivation {
pname = "rtw88";
- version = "unstable-2021-04-01";
+ version = "unstable-2021-04-19";
src = fetchFromGitHub {
owner = "lwfinger";
repo = "rtw88";
- rev = "689ce370b0c2da207bb092065697f6cb455a00dc";
- hash = "sha256-gdfQxpzYJ9bEObc2iEapA0TPMZuXndBvEu6qwKqdhyo=";
+ rev = "0f3cc6a5973bc386d9cb542fc85a6ba027edff5d";
+ hash = "sha256-PRzWXC1lre8gt1GfVdnaG836f5YK57P9a8tG20yef0w=";
};
makeFlags = [ "KSRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ];
diff --git a/pkgs/os-specific/linux/teck-udev-rules/default.nix b/pkgs/os-specific/linux/teck-udev-rules/default.nix
new file mode 100644
index 00000000000..eec5eac344e
--- /dev/null
+++ b/pkgs/os-specific/linux/teck-udev-rules/default.nix
@@ -0,0 +1,22 @@
+{ lib, stdenv, teck-programmer }:
+
+stdenv.mkDerivation {
+ pname = "teck-udev-rules";
+ version = lib.getVersion teck-programmer;
+
+ inherit (teck-programmer) src;
+
+ dontBuild = true;
+
+ installPhase = ''
+ runHook preInstall
+ install 40-teck.rules -D -t $out/etc/udev/rules.d/
+ runHook postInstall
+ '';
+
+ meta = {
+ description = "udev rules for TECK keyboards";
+ inherit (teck-programmer.meta) license;
+ maintainers = [ lib.maintainers.lourkeur ];
+ };
+}
diff --git a/pkgs/os-specific/linux/usbip/default.nix b/pkgs/os-specific/linux/usbip/default.nix
index 923eab71b7a..d98559c4600 100644
--- a/pkgs/os-specific/linux/usbip/default.nix
+++ b/pkgs/os-specific/linux/usbip/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, kernel, udev, autoconf, automake, libtool, kernelOlder }:
+{ lib, stdenv, kernel, udev, autoconf, automake, libtool, hwdata, kernelOlder }:
stdenv.mkDerivation {
name = "usbip-${kernel.name}";
@@ -22,6 +22,8 @@ stdenv.mkDerivation {
./autogen.sh
'';
+ configureFlags = [ "--with-usbids-dir=${hwdata}/share/hwdata/" ];
+
meta = with lib; {
homepage = "https://github.com/torvalds/linux/tree/master/tools/usb/usbip";
description = "allows to pass USB device from server to client over the network";
diff --git a/pkgs/os-specific/linux/zfs/default.nix b/pkgs/os-specific/linux/zfs/default.nix
index 15c8df3cb13..845593e2665 100644
--- a/pkgs/os-specific/linux/zfs/default.nix
+++ b/pkgs/os-specific/linux/zfs/default.nix
@@ -157,7 +157,7 @@ let
done
'';
- outputs = [ "out" ] ++ optionals buildUser [ "lib" "dev" ];
+ outputs = [ "out" ] ++ optionals buildUser [ "dev" ];
passthru = {
inherit enableMail;
@@ -210,9 +210,9 @@ in {
kernelCompatible = kernel.kernelAtLeast "3.10" && kernel.kernelOlder "5.12";
# this package should point to a version / git revision compatible with the latest kernel release
- version = "2.0.4";
+ version = "2.1.0-rc3";
- sha256 = "sha256-ySTt0K3Lc0Le35XTwjiM5l+nIf9co7wBn+Oma1r8YHo=";
+ sha256 = "sha256-ARRUuyu07dWwEuXerTz9KBmclhlmsnnGucfBxxn0Zsw=";
isUnstable = true;
};
diff --git a/pkgs/servers/asterisk/default.nix b/pkgs/servers/asterisk/default.nix
index 86017314ae7..be0cd877458 100644
--- a/pkgs/servers/asterisk/default.nix
+++ b/pkgs/servers/asterisk/default.nix
@@ -74,7 +74,7 @@ let
meta = with lib; {
description = "Software implementation of a telephone private branch exchange (PBX)";
homepage = "https://www.asterisk.org/";
- license = licenses.gpl2;
+ license = licenses.gpl2Only;
maintainers = with maintainers; [ auntie DerTim1 yorickvp ];
};
};
@@ -105,8 +105,8 @@ in rec {
asterisk = asterisk_18;
asterisk_13 = common {
- version = "13.38.0";
- sha256 = "1kxff6pbry8nydkspi0mqllidz2lw3d3g3r127x8jwgx021x0rik";
+ version = "13.38.2";
+ sha256 = "1v7wgsa9vf7qycg3xpvmn2bkandkfh3x15pr8ylg0w0gvfkkf5b9";
externals = {
"externals_cache/pjproject-2.10.tar.bz2" = pjproject_2_10;
"addons/mp3" = mp3-202;
@@ -114,8 +114,8 @@ in rec {
};
asterisk_16 = common {
- version = "16.15.0";
- sha256 = "12nc7ywm6w1xyn720kdc1sqz5wkjjrkxr25wisl02f4v5wz8py7m";
+ version = "16.17.0";
+ sha256 = "1bzlsk9k735qf8a693b6sa548my7m9ahavmdicwmc14px70wrvnw";
externals = {
"externals_cache/pjproject-2.10.tar.bz2" = pjproject_2_10;
"addons/mp3" = mp3-202;
@@ -123,8 +123,8 @@ in rec {
};
asterisk_17 = common {
- version = "17.9.0";
- sha256 = "1fnm1z7g45m883ivkm36r4kqb7163bzazi70mwf0fc2rc28jd1z4";
+ version = "17.9.3";
+ sha256 = "0nhk0izrxx24pz806fwnhidjmciwrkcrsvxvhrdvibiqyvfk8yk7";
externals = {
"externals_cache/pjproject-2.10.tar.bz2" = pjproject_2_10;
"addons/mp3" = mp3-202;
@@ -132,8 +132,8 @@ in rec {
};
asterisk_18 = common {
- version = "18.1.0";
- sha256 = "1pq2nrf60xnvh2h1rv82bdfbxxxd277g68xas0vbfgr4531gc4nc";
+ version = "18.3.0";
+ sha256 = "1xb953i9ay82vcdv8izi5dd5xnspcsvg10ajiyph377jw2xnd5fb";
externals = {
"externals_cache/pjproject-2.10.tar.bz2" = pjproject_2_10;
"addons/mp3" = mp3-202;
diff --git a/pkgs/servers/consul/default.nix b/pkgs/servers/consul/default.nix
index cc00f4cf0ce..fd1b14e6158 100644
--- a/pkgs/servers/consul/default.nix
+++ b/pkgs/servers/consul/default.nix
@@ -2,7 +2,7 @@
buildGoModule rec {
pname = "consul";
- version = "1.9.4";
+ version = "1.9.5";
rev = "v${version}";
# Note: Currently only release tags are supported, because they have the Consul UI
@@ -17,7 +17,7 @@ buildGoModule rec {
owner = "hashicorp";
repo = pname;
inherit rev;
- sha256 = "1ck55i8snpm583p21y1hac0w76wiwyjpgfxkzscd4whp2jnzhhif";
+ sha256 = "sha256-CKezHuCbL1I79gDz7ZQiSgPbSXo0NtssQro2MqqmeXw=";
};
passthru.tests.consul = nixosTests.consul;
@@ -26,7 +26,7 @@ buildGoModule rec {
# has a split module structure in one repo
subPackages = ["." "connect/certgen"];
- vendorSha256 = "0y744zpj49zvn5vqqb9wmfs1fs0lir71h2kcmhidmn9j132vg1bq";
+ vendorSha256 = "sha256-YqrW3PeFv1Y6lmjVmMMP0SZao57iPqfut3a1afIWkI0=";
doCheck = false;
diff --git a/pkgs/servers/gemini/agate/default.nix b/pkgs/servers/gemini/agate/default.nix
index a52e759bb35..b41153caeb8 100644
--- a/pkgs/servers/gemini/agate/default.nix
+++ b/pkgs/servers/gemini/agate/default.nix
@@ -11,7 +11,7 @@ rustPlatform.buildRustPackage rec {
sha256 = "sha256-+X1ibnYAUB34u8+oNBSkjLtsArxlrg0Nq5zJrXi7Rfk=";
};
- cargoSha256 = "sha256-ZVu7wQFe+FHWX2wevVYct1dQSE9rFET8bkmv85wNV8A=";
+ cargoSha256 = "sha256-EOxklOiazxhhIIv6c+N4uuItY/oFMAG0r/ATZ3Anlko=";
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 973b73d4d16..8a00c8b5f76 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -2,7 +2,7 @@
# Do not edit!
{
- version = "2021.4.5";
+ version = "2021.4.6";
components = {
"abode" = ps: with ps; [ abodepy ];
"accuweather" = ps: with ps; [ accuweather ];
@@ -90,7 +90,7 @@
"blueprint" = ps: with ps; [ ];
"bluesound" = ps: with ps; [ xmltodict ];
"bluetooth_le_tracker" = ps: with ps; [ ]; # missing inputs: pygatt[GATTTOOL]
- "bluetooth_tracker" = ps: with ps; [ bt_proximity ]; # missing inputs: pybluez
+ "bluetooth_tracker" = ps: with ps; [ bt_proximity pybluez ];
"bme280" = ps: with ps; [ smbus-cffi ]; # missing inputs: i2csense
"bme680" = ps: with ps; [ bme680 smbus-cffi ];
"bmp280" = ps: with ps; [ ]; # missing inputs: RPi.GPIO adafruit-circuitpython-bmp280
@@ -187,7 +187,7 @@
"doorbird" = ps: with ps; [ aiohttp-cors ]; # missing inputs: doorbirdpy
"dovado" = ps: with ps; [ ]; # missing inputs: dovado
"downloader" = ps: with ps; [ ];
- "dsmr" = ps: with ps; [ ]; # missing inputs: dsmr_parser
+ "dsmr" = ps: with ps; [ dsmr-parser ];
"dsmr_reader" = ps: with ps; [ aiohttp-cors paho-mqtt ];
"dte_energy_bridge" = ps: with ps; [ ];
"dublin_bus_transport" = ps: with ps; [ ];
@@ -373,7 +373,7 @@
"hunterdouglas_powerview" = ps: with ps; [ ]; # missing inputs: aiopvapi
"hvv_departures" = ps: with ps; [ ]; # missing inputs: pygti
"hydrawise" = ps: with ps; [ hydrawiser ];
- "hyperion" = ps: with ps; [ ]; # missing inputs: hyperion-py
+ "hyperion" = ps: with ps; [ hyperion-py ];
"iammeter" = ps: with ps; [ ]; # missing inputs: iammeter
"iaqualink" = ps: with ps; [ iaqualink ];
"icloud" = ps: with ps; [ pyicloud ];
@@ -583,14 +583,14 @@
"ombi" = ps: with ps; [ ]; # missing inputs: pyombi
"omnilogic" = ps: with ps; [ omnilogic ];
"onboarding" = ps: with ps; [ aiohttp-cors pillow ];
- "ondilo_ico" = ps: with ps; [ aiohttp-cors ]; # missing inputs: ondilo
+ "ondilo_ico" = ps: with ps; [ aiohttp-cors ondilo ];
"onewire" = ps: with ps; [ ]; # missing inputs: pi1wire pyownet
"onkyo" = ps: with ps; [ onkyo-eiscp ];
"onvif" = ps: with ps; [ ha-ffmpeg zeep ]; # missing inputs: WSDiscovery onvif-zeep-async
"openalpr_cloud" = ps: with ps; [ ];
"openalpr_local" = ps: with ps; [ ];
"opencv" = ps: with ps; [ numpy ]; # missing inputs: opencv-python-headless
- "openerz" = ps: with ps; [ ]; # missing inputs: openerz-api
+ "openerz" = ps: with ps; [ openerz-api ];
"openevse" = ps: with ps; [ ]; # missing inputs: openevsewifi
"openexchangerates" = ps: with ps; [ ];
"opengarage" = ps: with ps; [ ]; # missing inputs: open-garage
@@ -750,7 +750,7 @@
"sky_hub" = ps: with ps; [ ]; # missing inputs: pyskyqhub
"skybeacon" = ps: with ps; [ ]; # missing inputs: pygatt[GATTTOOL]
"skybell" = ps: with ps; [ skybellpy ];
- "slack" = ps: with ps; [ ]; # missing inputs: slackclient
+ "slack" = ps: with ps; [ slackclient ];
"sleepiq" = ps: with ps; [ sleepyq ];
"slide" = ps: with ps; [ ]; # missing inputs: goslide-api
"sma" = ps: with ps; [ pysma ];
@@ -984,6 +984,6 @@
"zone" = ps: with ps; [ ];
"zoneminder" = ps: with ps; [ zm-py ];
"zwave" = ps: with ps; [ aiohttp-cors homeassistant-pyozw paho-mqtt pydispatcher python-openzwave-mqtt ];
- "zwave_js" = ps: with ps; [ aiohttp-cors ]; # missing inputs: zwave-js-server-python
+ "zwave_js" = ps: with ps; [ aiohttp-cors zwave-js-server-python ];
};
}
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 59b7f1135cd..d4516167fdd 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -23,10 +23,23 @@ let
# Override the version of some packages pinned in Home Assistant's setup.py
# Pinned due to API changes in astral>=2.0, required by the sun/moon plugins
- # https://github.com/home-assistant/core/issues/36636
+ # https://github.com/home-assistant/core/pull/48573; Remove >= 2021.5
(mkOverride "astral" "1.10.1"
"d2a67243c4503131c856cafb1b1276de52a86e5b8a1d507b7e08bee51cb67bf1")
+ # Pinned due to API changes in brother>=1.0, remove >= 2021.5
+ (self: super: {
+ brother = super.brother.overridePythonAttrs (oldAttrs: rec {
+ version = "0.2.2";
+ src = fetchFromGitHub {
+ owner = "bieniu";
+ repo = "brother";
+ rev = version;
+ sha256 = "sha256-vIefcL3K3ZbAUxMFM7gbbTFdrnmufWZHcq4OA19SYXE=";
+ };
+ });
+ })
+
# Pinned due to API changes in iaqualink>=2.0, remove after
# https://github.com/home-assistant/core/pull/48137 was merged
(self: super: {
@@ -43,6 +56,7 @@ let
})
# Pinned due to API changes in pylilterbot>=2021.3.0
+ # https://github.com/home-assistant/core/pull/48300; Remove >= 2021.5
(self: super: {
pylitterbot = super.pylitterbot.overridePythonAttrs (oldAttrs: rec {
version = "2021.2.8";
@@ -108,7 +122,7 @@ let
extraBuildInputs = extraPackages py.pkgs;
# Don't forget to run parse-requirements.py after updating
- hassVersion = "2021.4.5";
+ hassVersion = "2021.4.6";
in with py.pkgs; buildPythonApplication rec {
pname = "homeassistant";
@@ -127,7 +141,7 @@ in with py.pkgs; buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = version;
- sha256 = "106d1n9z8pfcnqm594vkhczrrrjap801w6fdr0psv5vhdxrqh4sj";
+ sha256 = "1s1slwcqls2prz9kgyhggs8xi3x7ghwdi33j983kvpg0gva7d2f0";
};
# leave this in, so users don't have to constantly update their downstream patch handling
@@ -204,6 +218,7 @@ in with py.pkgs; buildPythonApplication rec {
"axis"
"bayesian"
"binary_sensor"
+ "brother"
"caldav"
"calendar"
"camera"
@@ -227,6 +242,7 @@ in with py.pkgs; buildPythonApplication rec {
"devolo_home_control"
"dhcp"
"discovery"
+ "dsmr"
"econet"
"emulated_hue"
"esphome"
@@ -260,6 +276,7 @@ in with py.pkgs; buildPythonApplication rec {
"html5"
"http"
"hue"
+ "hyperion"
"iaqualink"
"ifttt"
"image"
@@ -306,6 +323,8 @@ in with py.pkgs; buildPythonApplication rec {
"notion"
"number"
"omnilogic"
+ "ondilo_ico"
+ "openerz"
"ozw"
"panel_custom"
"panel_iframe"
@@ -336,6 +355,7 @@ in with py.pkgs; buildPythonApplication rec {
"sleepiq"
"sma"
"sensor"
+ "slack"
"smarttub"
"smtp"
"smappee"
@@ -378,6 +398,7 @@ in with py.pkgs; buildPythonApplication rec {
"zha"
"zone"
"zwave"
+ "zwave_js"
];
pytestFlagsArray = [
diff --git a/pkgs/servers/home-assistant/parse-requirements.py b/pkgs/servers/home-assistant/parse-requirements.py
index eeb117a984e..b6ff5662f9e 100755
--- a/pkgs/servers/home-assistant/parse-requirements.py
+++ b/pkgs/servers/home-assistant/parse-requirements.py
@@ -124,7 +124,10 @@ def name_to_attr_path(req: str, packages: Dict[str, Dict[str, str]]) -> Optional
for name in names:
# treat "-" and "_" equally
name = re.sub("[-_]", "[-_]", name)
- pattern = re.compile("^python\\d\\.\\d-{}-\\d".format(name), re.I)
+ # python(minor).(major)-(pname)-(version or unstable-date)
+ # we need the version qualifier, or we'll have multiple matches
+ # (e.g. pyserial and pyserial-asyncio when looking for pyserial)
+ pattern = re.compile("^python\\d\\.\\d-{}-(?:\\d|unstable-.*)".format(name), re.I)
for attr_path, package in packages.items():
if pattern.match(package["name"]):
attr_paths.add(attr_path)
diff --git a/pkgs/servers/http/envoy/default.nix b/pkgs/servers/http/envoy/default.nix
index e6ecbb86860..57c0e22d8af 100644
--- a/pkgs/servers/http/envoy/default.nix
+++ b/pkgs/servers/http/envoy/default.nix
@@ -38,7 +38,7 @@ buildBazelPackage rec {
patches = [
# Quiche needs to be updated to compile under newer GCC.
- # This is a manual backport of http://github.com/envoyproxy/envoy/pull/13949.
+ # This is a manual backport of https://github.com/envoyproxy/envoy/pull/13949.
./0001-quiche-update-QUICHE-tar-13949.patch
# upb needs to be updated to compile under newer GCC.
diff --git a/pkgs/servers/http/nginx/quic.nix b/pkgs/servers/http/nginx/quic.nix
new file mode 100644
index 00000000000..062520a3d13
--- /dev/null
+++ b/pkgs/servers/http/nginx/quic.nix
@@ -0,0 +1,21 @@
+{ callPackage, fetchhg, boringssl, ... } @ args:
+
+callPackage ./generic.nix args {
+ src = fetchhg {
+ url = "https://hg.nginx.org/nginx-quic";
+ rev = "47a43b011dec"; # branch=quic
+ sha256 = "1d4d1v4zbnf5qlfl79pi7sficn1h7zm6kk7llm24yyhlsvssz10x";
+ };
+
+ preConfigure = ''
+ ln -s auto/configure configure
+ '';
+
+ configureFlags = [
+ "--with-http_v3_module"
+ "--with-http_quic_module"
+ "--with-stream_quic_module"
+ ];
+
+ version = "quic";
+}
diff --git a/pkgs/servers/jellyfin/default.nix b/pkgs/servers/jellyfin/default.nix
index 92f31126e81..2b00cb50073 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.7.1";
+ version = "10.7.2";
# Impossible to build anything offline with dotnet
src = fetchurl {
url = "https://repo.jellyfin.org/releases/server/portable/versions/stable/combined/${version}/jellyfin_${version}.tar.gz";
- sha256 = "sha256-pgFksZz0sD73uZDyUIhdFCgHPo67ZZiwklafyemJFGs=";
+ sha256 = "sha256-l2tQmKez06cekq/QLper+OrcSU/0lWpZ85xY2wZcK1s=";
};
nativeBuildInputs = [
diff --git a/pkgs/servers/mail/mailman/default.nix b/pkgs/servers/mail/mailman/default.nix
index 7f1e02fd76e..392239a7140 100644
--- a/pkgs/servers/mail/mailman/default.nix
+++ b/pkgs/servers/mail/mailman/default.nix
@@ -54,6 +54,6 @@ buildPythonPackage rec {
homepage = "https://www.gnu.org/software/mailman/";
description = "Free software for managing electronic mail discussion and newsletter lists";
license = lib.licenses.gpl3Plus;
- maintainers = with lib.maintainers; [ peti ];
+ maintainers = with lib.maintainers; [ peti qyliss ];
};
}
diff --git a/pkgs/servers/mail/mailman/hyperkitty.nix b/pkgs/servers/mail/mailman/hyperkitty.nix
index 054d9dcf91a..99eae786cbf 100644
--- a/pkgs/servers/mail/mailman/hyperkitty.nix
+++ b/pkgs/servers/mail/mailman/hyperkitty.nix
@@ -9,12 +9,12 @@ buildPythonPackage rec {
pname = "HyperKitty";
# Note: Mailman core must be on the latest version before upgrading HyperKitty.
# See: https://gitlab.com/mailman/postorius/-/issues/516#note_544571309
- version = "1.3.3";
+ version = "1.3.4";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "0p85r9q6mn5as5b39xp9hkkipnk0156acx540n2ygk3qb3jd4a5n";
+ sha256 = "1lbh8n66fp3l5s0xvmvsbfvgs3z4knx0gwf0q117n2nfkslf13zp";
};
nativeBuildInputs = [ isort ];
@@ -42,6 +42,6 @@ buildPythonPackage rec {
description = "Archiver for GNU Mailman v3";
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
- maintainers = with lib.maintainers; [ peti globin ];
+ maintainers = with lib.maintainers; [ peti globin qyliss ];
};
}
diff --git a/pkgs/servers/mail/mailman/postorius.nix b/pkgs/servers/mail/mailman/postorius.nix
index 189e152fce0..222a21bcb7f 100644
--- a/pkgs/servers/mail/mailman/postorius.nix
+++ b/pkgs/servers/mail/mailman/postorius.nix
@@ -23,6 +23,6 @@ buildPythonPackage rec {
homepage = "https://docs.mailman3.org/projects/postorius";
description = "Web-based user interface for managing GNU Mailman";
license = licenses.gpl3Plus;
- maintainers = with maintainers; [ globin peti ];
+ maintainers = with maintainers; [ globin peti qyliss ];
};
}
diff --git a/pkgs/servers/monitoring/alertmanager-irc-relay/default.nix b/pkgs/servers/monitoring/alertmanager-irc-relay/default.nix
index c3c60e1d4a2..50cf5a00164 100644
--- a/pkgs/servers/monitoring/alertmanager-irc-relay/default.nix
+++ b/pkgs/servers/monitoring/alertmanager-irc-relay/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "alertmanager-irc-relay";
- version = "0.3.1";
+ version = "0.4.1";
src = fetchFromGitHub {
owner = "google";
repo = "alertmanager-irc-relay";
rev = "v${version}";
- sha256 = "sha256-IlWXsQZtDXG8sJBV+82BzEFj+JtUbfTOZyqYOrZFTXA=";
+ sha256 = "sha256-02uEvcxT5+0OJtqOyuQjgkqL0fZnN7umCSxBqAVPT9U=";
};
vendorSha256 = "sha256-VLG15IXS/fXFMTCJKEqGW6qZ9aOLPhazidVsOywG+w4=";
diff --git a/pkgs/servers/mxisd/default.nix b/pkgs/servers/mxisd/default.nix
deleted file mode 100644
index 48f49b57fca..00000000000
--- a/pkgs/servers/mxisd/default.nix
+++ /dev/null
@@ -1,70 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, jre, git, gradle_6, perl, makeWrapper }:
-
-let
- name = "mxisd-${version}";
- version = "1.4.6";
- rev = "6e9601cb3a18281857c3cefd20ec773023b577d2";
-
- src = fetchFromGitHub {
- inherit rev;
- owner = "kamax-matrix";
- repo = "mxisd";
- sha256 = "07gpdgbz281506p2431qn92bvdza6ap3jfq5b7xdm7nwrry80pzd";
- };
-
-
- deps = stdenv.mkDerivation {
- name = "${name}-deps";
- inherit src;
- nativeBuildInputs = [ gradle_6 perl git ];
-
- buildPhase = ''
- export MXISD_BUILD_VERSION=${rev}
- export GRADLE_USER_HOME=$(mktemp -d);
- gradle --no-daemon build -x test
- '';
-
- # perl code mavenizes pathes (com.squareup.okio/okio/1.13.0/a9283170b7305c8d92d25aff02a6ab7e45d06cbe/okio-1.13.0.jar -> com/squareup/okio/okio/1.13.0/okio-1.13.0.jar)
- installPhase = ''
- find $GRADLE_USER_HOME/caches/modules-2 -type f -regex '.*\.\(jar\|pom\)' \
- | perl -pe 's#(.*/([^/]+)/([^/]+)/([^/]+)/[0-9a-f]{30,40}/([^/\s]+))$# ($x = $2) =~ tr|\.|/|; "install -Dm444 $1 \$out/$x/$3/$4/$5" #e' \
- | sh
- '';
-
- dontStrip = true;
-
- outputHashAlgo = "sha256";
- outputHashMode = "recursive";
- outputHash = "0z9f3w7lfdvbk26kyckpbgas7mi98rjghck9w0kvx3r7k48p5vnv";
- };
-
-in
-stdenv.mkDerivation {
- inherit name src version;
- nativeBuildInputs = [ gradle_6 perl makeWrapper ];
- buildInputs = [ jre ];
-
- patches = [ ./0001-gradle.patch ];
-
- buildPhase = ''
- export MXISD_BUILD_VERSION=${rev}
- export GRADLE_USER_HOME=$(mktemp -d)
-
- sed -ie "s#REPLACE#mavenLocal(); maven { url '${deps}' }#g" build.gradle
- gradle --offline --no-daemon build -x test
- '';
-
- installPhase = ''
- install -D build/libs/source.jar $out/lib/mxisd.jar
- makeWrapper ${jre}/bin/java $out/bin/mxisd --add-flags "-jar $out/lib/mxisd.jar"
- '';
-
- meta = with lib; {
- description = "a federated matrix identity server";
- homepage = "https://github.com/kamax-matrix/mxisd";
- license = licenses.agpl3;
- maintainers = with maintainers; [ mguentner ];
- platforms = platforms.all;
- };
-
-}
diff --git a/pkgs/servers/nosql/redis/default.nix b/pkgs/servers/nosql/redis/default.nix
index b9809a9a105..48dcbb8f813 100644
--- a/pkgs/servers/nosql/redis/default.nix
+++ b/pkgs/servers/nosql/redis/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv, fetchurl, lua, pkg-config, systemd, nixosTests
+{ lib, stdenv, fetchurl, lua, pkg-config, nixosTests
+, withSystemd ? stdenv.isLinux && !stdenv.hostPlatform.isMusl, systemd
, tlsSupport ? true, openssl
}:
@@ -23,7 +24,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ lua ]
- ++ lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) systemd
+ ++ lib.optional withSystemd systemd
++ lib.optionals tlsSupport [ openssl ];
# More cross-compiling fixes.
# Note: this enables libc malloc as a temporary fix for cross-compiling.
@@ -31,7 +32,7 @@ stdenv.mkDerivation rec {
# It's weird that the build isn't failing because of failure to compile dependencies, it's from failure to link them!
makeFlags = [ "PREFIX=$(out)" ]
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "AR=${stdenv.cc.targetPrefix}ar" "RANLIB=${stdenv.cc.targetPrefix}ranlib" "MALLOC=libc" ]
- ++ lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) ["USE_SYSTEMD=yes"]
+ ++ lib.optional withSystemd [ "USE_SYSTEMD=yes" ]
++ lib.optionals tlsSupport [ "BUILD_TLS=yes" ];
enableParallelBuilding = true;
diff --git a/pkgs/servers/oauth2_proxy/default.nix b/pkgs/servers/oauth2-proxy/default.nix
similarity index 100%
rename from pkgs/servers/oauth2_proxy/default.nix
rename to pkgs/servers/oauth2-proxy/default.nix
diff --git a/pkgs/servers/quagga/default.nix b/pkgs/servers/quagga/default.nix
deleted file mode 100644
index c3c69fa79b6..00000000000
--- a/pkgs/servers/quagga/default.nix
+++ /dev/null
@@ -1,73 +0,0 @@
-{ lib, stdenv, fetchurl, libcap, libnl, readline, net-snmp, less, perl, texinfo,
- pkg-config, c-ares }:
-
-stdenv.mkDerivation rec {
- pname = "quagga";
- version = "1.2.4";
-
- src = fetchurl {
- url = "mirror://savannah/quagga/${pname}-${version}.tar.gz";
- sha256 = "1lsksqxij5f1llqn86pkygrf5672kvrqn1kvxghi169hqf1c0r73";
- };
-
- buildInputs =
- [ readline net-snmp c-ares ]
- ++ lib.optionals stdenv.isLinux [ libcap libnl ];
-
- nativeBuildInputs = [ pkg-config perl texinfo ];
-
- configureFlags = [
- "--sysconfdir=/etc/quagga"
- "--localstatedir=/run/quagga"
- "--sbindir=$(out)/libexec/quagga"
- "--disable-exampledir"
- "--enable-user=quagga"
- "--enable-group=quagga"
- "--enable-configfile-mask=0640"
- "--enable-logfile-mask=0640"
- "--enable-vtysh"
- "--enable-vty-group=quaggavty"
- "--enable-snmp"
- "--enable-multipath=64"
- "--enable-rtadv"
- "--enable-irdp"
- "--enable-opaque-lsa"
- "--enable-ospf-te"
- "--enable-pimd"
- "--enable-isis-topology"
- ];
-
- preConfigure = ''
- substituteInPlace vtysh/vtysh.c --replace \"more\" \"${less}/bin/less\"
- '';
-
- postInstall = ''
- rm -f $out/bin/test_igmpv3_join
- mv -f $out/libexec/quagga/ospfclient $out/bin/
- '';
-
- enableParallelBuilding = true;
-
- meta = with lib; {
- description = "Quagga BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite";
- longDescription = ''
- GNU Quagga is free software which manages TCP/IP based routing protocols.
- It supports BGP4, BGP4+, OSPFv2, OSPFv3, IS-IS, RIPv1, RIPv2, and RIPng as
- well as the IPv6 versions of these.
-
- As the predecessor Zebra has been considered orphaned, the Quagga project
- has been formed by members of the zebra mailing list and the former
- zebra-pj project to continue developing.
-
- Quagga uses threading if the kernel supports it, but can also run on
- kernels that do not support threading. Each protocol has its own daemon.
-
- It is more than a routed replacement, it can be used as a Route Server and
- a Route Reflector.
- '';
- homepage = "https://www.nongnu.org/quagga/";
- license = licenses.gpl2;
- platforms = platforms.unix;
- maintainers = with maintainers; [ tavyc ];
- };
-}
diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix
index d3cc2304c63..35b46c673f8 100644
--- a/pkgs/servers/sql/postgresql/default.nix
+++ b/pkgs/servers/sql/postgresql/default.nix
@@ -191,15 +191,6 @@ let
in self: {
- postgresql_9_5 = self.callPackage generic {
- version = "9.5.25";
- psqlSchema = "9.5";
- sha256 = "00yny0sskxrqk4ji2phgv3iqxd1aiy6rh660k73s4s1pn9gcaa3n";
- this = self.postgresql_9_5;
- thisAttr = "postgresql_9_5";
- inherit self;
- };
-
postgresql_9_6 = self.callPackage generic {
version = "9.6.21";
psqlSchema = "9.6";
diff --git a/pkgs/servers/sql/postgresql/ext/pgvector.nix b/pkgs/servers/sql/postgresql/ext/pgvector.nix
new file mode 100644
index 00000000000..a5c0f558c46
--- /dev/null
+++ b/pkgs/servers/sql/postgresql/ext/pgvector.nix
@@ -0,0 +1,29 @@
+{ lib, stdenv, fetchFromGitHub, postgresql }:
+
+stdenv.mkDerivation rec {
+ pname = "pgvector";
+ version = "0.1.0";
+
+ src = fetchFromGitHub {
+ owner = "ankane";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "03i8rq9wp9j2zdba82q31lzbrqpnhrqc8867pxxy3z505fxsvfzb";
+ };
+
+ buildInputs = [ postgresql ];
+
+ installPhase = ''
+ install -D -t $out/lib vector.so
+ install -D -t $out/share/postgresql/extension vector-*.sql
+ install -D -t $out/share/postgresql/extension vector.control
+ '';
+
+ meta = with lib; {
+ description = "Open-source vector similarity search for PostgreSQL";
+ homepage = "https://github.com/ankane/pgvector";
+ license = licenses.postgresql;
+ platforms = postgresql.meta.platforms;
+ maintainers = [ maintainers.marsam ];
+ };
+}
diff --git a/pkgs/servers/sql/postgresql/packages.nix b/pkgs/servers/sql/postgresql/packages.nix
index e8b2f4130a5..e2d655bdb37 100644
--- a/pkgs/servers/sql/postgresql/packages.nix
+++ b/pkgs/servers/sql/postgresql/packages.nix
@@ -25,6 +25,8 @@ self: super: {
pgroonga = super.callPackage ./ext/pgroonga.nix { };
+ pgvector = super.callPackage ./ext/pgvector.nix { };
+
plpgsql_check = super.callPackage ./ext/plpgsql_check.nix { };
plr = super.callPackage ./ext/plr.nix { };
diff --git a/pkgs/servers/web-apps/searx/default.nix b/pkgs/servers/web-apps/searx/default.nix
index bb9944ea377..43fb374fe11 100644
--- a/pkgs/servers/web-apps/searx/default.nix
+++ b/pkgs/servers/web-apps/searx/default.nix
@@ -1,23 +1,21 @@
-{ lib, nixosTests, python3, python3Packages, fetchFromGitHub, fetchpatch }:
+{ lib, nixosTests, python3, python3Packages, fetchFromGitHub }:
with python3Packages;
toPythonModule (buildPythonApplication rec {
pname = "searx";
- version = "0.18.0";
+ version = "1.0.0";
- # Can not use PyPI because certain test files are missing.
+ # pypi doesn't receive updates
src = fetchFromGitHub {
owner = "searx";
repo = "searx";
rev = "v${version}";
- sha256 = "0idxspvckvsd02v42h4z4wqrfkn1l8n59i91f7pc837cxya8p6hn";
+ sha256 = "0ghkx8g8jnh8yd46p4mlbjn2zm12nx27v7qflr4c8xhlgi0px0mh";
};
postPatch = ''
sed -i 's/==.*$//' requirements.txt
- # skip failing test
- sed -i '/test_json_serial(/,+3d' tests/unit/test_standalone_searx.py
'';
preBuild = ''
@@ -25,16 +23,32 @@ toPythonModule (buildPythonApplication rec {
'';
propagatedBuildInputs = [
- pyyaml lxml grequests flaskbabel flask requests
- gevent speaklater Babel pytz dateutil pygments
- pyasn1 pyasn1-modules ndg-httpsclient certifi pysocks
- jinja2 werkzeug
+ Babel
+ certifi
+ dateutil
+ flask
+ flaskbabel
+ gevent
+ grequests
+ jinja2
+ langdetect
+ lxml
+ ndg-httpsclient
+ pyasn1
+ pyasn1-modules
+ pygments
+ pysocks
+ pytz
+ pyyaml
+ requests
+ speaklater
+ werkzeug
];
- checkInputs = [
- Babel mock nose2 covCore pep8 plone-testing splinter
- unittest2 zope_testrunner selenium
- ];
+ # tests try to connect to network
+ doCheck = false;
+
+ pythonImportsCheck = [ "searx" ];
postInstall = ''
# Create a symlink for easier access to static data
diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix
index 36fe0fcb944..441d8834e08 100644
--- a/pkgs/servers/x11/xorg/default.nix
+++ b/pkgs/servers/x11/xorg/default.nix
@@ -1717,11 +1717,11 @@ lib.makeScope newScope (self: with self; {
}) {};
xf86inputlibinput = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libinput, xorgserver }: stdenv.mkDerivation {
- name = "xf86-input-libinput-1.0.0";
+ name = "xf86-input-libinput-1.0.1";
builder = ./builder.sh;
src = fetchurl {
- url = "mirror://xorg/individual/driver/xf86-input-libinput-1.0.0.tar.bz2";
- sha256 = "0x4ay9y2clm2bql3myqnvhmikjbpzy95c800qiva8pg6dbvc4mgg";
+ url = "mirror://xorg/individual/driver/xf86-input-libinput-1.0.1.tar.bz2";
+ sha256 = "0nr4r9x8c7y1l0ipivjch5zps093mxmg2nqmfn2934am26fc9ppx";
};
hardeningDisable = [ "bindnow" "relro" ];
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix
index 4c832291595..c25285d13ed 100644
--- a/pkgs/servers/x11/xorg/overrides.nix
+++ b/pkgs/servers/x11/xorg/overrides.nix
@@ -773,6 +773,14 @@ self: super:
"--with-launchdaemons-dir=\${out}/LaunchDaemons"
"--with-launchagents-dir=\${out}/LaunchAgents"
];
+ patches = [
+ # don't unset DBUS_SESSION_BUS_ADDRESS in startx
+ (fetchpatch {
+ name = "dont-unset-DBUS_SESSION_BUS_ADDRESS.patch";
+ url = "https://git.archlinux.org/svntogit/packages.git/plain/repos/extra-x86_64/fs46369.patch?h=packages/xorg-xinit&id=40f3ac0a31336d871c76065270d3f10e922d06f3";
+ sha256 = "18kb88i3s9nbq2jxl7l2hyj6p56c993hivk8mzxg811iqbbawkp7";
+ })
+ ];
propagatedBuildInputs = attrs.propagatedBuildInputs or [] ++ [ self.xauth ]
++ lib.optionals isDarwin [ self.libX11 self.xorgproto ];
postFixup = ''
diff --git a/pkgs/servers/x11/xorg/tarballs.list b/pkgs/servers/x11/xorg/tarballs.list
index 355619d73a0..093aba26f63 100644
--- a/pkgs/servers/x11/xorg/tarballs.list
+++ b/pkgs/servers/x11/xorg/tarballs.list
@@ -81,7 +81,7 @@ mirror://xorg/individual/doc/xorg-sgml-doctools-1.11.tar.bz2
mirror://xorg/individual/driver/xf86-input-evdev-2.10.6.tar.bz2
mirror://xorg/individual/driver/xf86-input-joystick-1.6.3.tar.bz2
mirror://xorg/individual/driver/xf86-input-keyboard-1.9.0.tar.bz2
-mirror://xorg/individual/driver/xf86-input-libinput-1.0.0.tar.bz2
+mirror://xorg/individual/driver/xf86-input-libinput-1.0.1.tar.bz2
mirror://xorg/individual/driver/xf86-input-mouse-1.9.3.tar.bz2
mirror://xorg/individual/driver/xf86-input-synaptics-1.9.1.tar.bz2
mirror://xorg/individual/driver/xf86-input-vmmouse-13.1.0.tar.bz2
diff --git a/pkgs/shells/fish/plugins/default.nix b/pkgs/shells/fish/plugins/default.nix
index 50b8eb4d981..c886173096e 100644
--- a/pkgs/shells/fish/plugins/default.nix
+++ b/pkgs/shells/fish/plugins/default.nix
@@ -6,6 +6,8 @@ lib.makeScope newScope (self: with self; {
clownfish = callPackage ./clownfish.nix { };
+ done = callPackage ./done.nix { };
+
# Fishtape 2.x and 3.x aren't compatible,
# but both versions are used in the tests of different other plugins.
fishtape = callPackage ./fishtape.nix { };
diff --git a/pkgs/shells/fish/plugins/done.nix b/pkgs/shells/fish/plugins/done.nix
new file mode 100644
index 00000000000..25065b21fb1
--- /dev/null
+++ b/pkgs/shells/fish/plugins/done.nix
@@ -0,0 +1,25 @@
+{ lib, buildFishPlugin, fetchFromGitHub, fishtape }:
+
+buildFishPlugin rec {
+ pname = "done";
+ version = "1.16.1";
+
+ src = fetchFromGitHub {
+ owner = "franciscolourenco";
+ repo = "done";
+ rev = version;
+ sha256 = "NFysKzRZgDXXZW/sUlZNu7ZpMCKwbjAhIfspSK3UqCY=";
+ };
+
+ checkPlugins = [ fishtape ];
+ checkPhase = ''
+ fishtape test/done.fish
+ '';
+
+ meta = {
+ description = "Automatically receive notifications when long processes finish";
+ homepage = "https://github.com/franciscolourenco/done";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ malo ];
+ };
+}
diff --git a/pkgs/stdenv/generic/default.nix b/pkgs/stdenv/generic/default.nix
index 476fab3eed6..c3582b16677 100644
--- a/pkgs/stdenv/generic/default.nix
+++ b/pkgs/stdenv/generic/default.nix
@@ -137,7 +137,7 @@ let
# Utility flags to test the type of platform.
inherit (hostPlatform)
- isDarwin isLinux isSunOS isCygwin isFreeBSD isOpenBSD
+ isDarwin isLinux isSunOS isCygwin isBSD isFreeBSD isOpenBSD
isi686 isx86_32 isx86_64
is32bit is64bit
isAarch32 isAarch64 isMips isBigEndian;
diff --git a/pkgs/stdenv/native/default.nix b/pkgs/stdenv/native/default.nix
index b79b81253ad..010b4141e87 100644
--- a/pkgs/stdenv/native/default.nix
+++ b/pkgs/stdenv/native/default.nix
@@ -129,7 +129,7 @@ in
name = "cc-native";
nativeTools = true;
nativeLibc = true;
- inherit nativePrefix;
+ inherit lib nativePrefix;
bintools = import ../../build-support/bintools-wrapper {
name = "bintools";
inherit stdenvNoCC nativePrefix;
diff --git a/pkgs/stdenv/nix/default.nix b/pkgs/stdenv/nix/default.nix
index a8311f49609..2fb19992bc1 100644
--- a/pkgs/stdenv/nix/default.nix
+++ b/pkgs/stdenv/nix/default.nix
@@ -24,6 +24,7 @@ bootStages ++ [
initialPath = (import ../common-path.nix) { pkgs = prevStage; };
cc = import ../../build-support/cc-wrapper {
+ inherit lib;
nativeTools = false;
nativePrefix = lib.optionalString hostPlatform.isSunOS "/usr";
nativeLibc = true;
diff --git a/pkgs/test/cuda/cuda-samples/default.nix b/pkgs/test/cuda/cuda-samples/default.nix
index 46d4d531690..1a361c57214 100644
--- a/pkgs/test/cuda/cuda-samples/default.nix
+++ b/pkgs/test/cuda/cuda-samples/default.nix
@@ -1,17 +1,9 @@
{ callPackage
-, cudatoolkit_9_2
, cudatoolkit_10_0, cudatoolkit_10_1, cudatoolkit_10_2
, cudatoolkit_11_0, cudatoolkit_11_1, cudatoolkit_11_2
}:
rec {
- cuda-samples_cudatoolkit_9_2 = callPackage ./generic.nix {
- cudatoolkit = cudatoolkit_9_2;
- sha256 = "1ydankhyigcg99h0rqnmz1z4vc0sl6p9s1s0hbdxh5l1sx9141j6";
- };
-
- cuda-samples_cudatoolkit_9 = cuda-samples_cudatoolkit_9_2;
-
##
cuda-samples_cudatoolkit_10_0 = callPackage ./generic.nix {
diff --git a/pkgs/test/cuda/default.nix b/pkgs/test/cuda/default.nix
index 9e7eaf8036a..aac52e6a4f5 100644
--- a/pkgs/test/cuda/default.nix
+++ b/pkgs/test/cuda/default.nix
@@ -3,8 +3,6 @@
rec {
cuda-samplesPackages = callPackage ./cuda-samples { };
inherit (cuda-samplesPackages)
- cuda-samples_cudatoolkit_9
- cuda-samples_cudatoolkit_9_2
cuda-samples_cudatoolkit_10
cuda-samples_cudatoolkit_10_0
cuda-samples_cudatoolkit_10_1
diff --git a/pkgs/test/default.nix b/pkgs/test/default.nix
index fa93ceb0721..b24fc539c93 100644
--- a/pkgs/test/default.nix
+++ b/pkgs/test/default.nix
@@ -41,6 +41,8 @@ with pkgs;
rustCustomSysroot = callPackage ./rust-sysroot {};
buildRustCrate = callPackage ../build-support/rust/build-rust-crate/test { };
+ vim = callPackage ./vim {};
+
nixos-functions = callPackage ./nixos-functions {};
patch-shebangs = callPackage ./patch-shebangs {};
diff --git a/pkgs/test/vim/default.nix b/pkgs/test/vim/default.nix
new file mode 100644
index 00000000000..4ca004a60c3
--- /dev/null
+++ b/pkgs/test/vim/default.nix
@@ -0,0 +1,72 @@
+{ vimUtils, vim_configurable, neovim, vimPlugins
+, lib, fetchFromGitHub,
+}:
+let
+ inherit (vimUtils) buildVimPluginFrom2Nix;
+
+ packages.myVimPackage.start = with vimPlugins; [ vim-nix ];
+in
+{
+ vim_empty_config = vimUtils.vimrcFile { beforePlugins = ""; customRC = ""; };
+
+ vim_with_vim2nix = vim_configurable.customize {
+ name = "vim"; vimrcConfig.vam.pluginDictionaries = [ "vim-addon-vim2nix" ];
+ };
+
+ # test cases:
+ test_vim_with_vim_nix_using_vam = vim_configurable.customize {
+ name = "vim-with-vim-addon-nix-using-vam";
+ vimrcConfig.vam.pluginDictionaries = [{name = "vim-nix"; }];
+ };
+
+ test_vim_with_vim_nix_using_pathogen = vim_configurable.customize {
+ name = "vim-with-vim-addon-nix-using-pathogen";
+ vimrcConfig.pathogen.pluginNames = [ "vim-nix" ];
+ };
+
+ test_vim_with_vim_nix_using_plug = vim_configurable.customize {
+ name = "vim-with-vim-addon-nix-using-plug";
+ vimrcConfig.plug.plugins = with vimPlugins; [ vim-nix ];
+ };
+
+ test_vim_with_vim_nix = vim_configurable.customize {
+ name = "vim-with-vim-addon-nix";
+ vimrcConfig.packages.myVimPackage.start = with vimPlugins; [ vim-nix ];
+ };
+
+ # only neovim makes use of `requiredPlugins`, test this here
+ test_nvim_with_vim_nix_using_pathogen = neovim.override {
+ configure.pathogen.pluginNames = [ "vim-nix" ];
+ };
+
+ # regression test for https://github.com/NixOS/nixpkgs/issues/53112
+ # The user may have specified their own plugins which may not be formatted
+ # exactly as the generated ones. In particular, they may not have the `pname`
+ # attribute.
+ test_vim_with_custom_plugin = vim_configurable.customize {
+ name = "vim_with_custom_plugin";
+ vimrcConfig.vam.knownPlugins =
+ vimPlugins // ({
+ vim-trailing-whitespace = buildVimPluginFrom2Nix {
+ name = "vim-trailing-whitespace";
+ src = fetchFromGitHub {
+ owner = "bronson";
+ repo = "vim-trailing-whitespace";
+ rev = "4c596548216b7c19971f8fc94e38ef1a2b55fee6";
+ sha256 = "0f1cpnp1nxb4i5hgymjn2yn3k1jwkqmlgw1g02sq270lavp2dzs9";
+ };
+ # make sure string dependencies are handled
+ dependencies = [ "vim-nix" ];
+ };
+ });
+ vimrcConfig.vam.pluginDictionaries = [ { names = [ "vim-trailing-whitespace" ]; } ];
+ };
+
+ # system remote plugin manifest should be generated, deoplete should be usable
+ # without the user having to do `UpdateRemotePlugins`. To test, launch neovim
+ # and do `:call deoplete#enable()`. It will print an error if the remote
+ # plugin is not registered.
+ test_nvim_with_remote_plugin = neovim.override {
+ configure.pathogen.pluginNames = with vimPlugins; [ deoplete-nvim ];
+ };
+}
diff --git a/pkgs/tools/admin/cjdns-tools/default.nix b/pkgs/tools/admin/cjdns-tools/default.nix
new file mode 100644
index 00000000000..2468d329548
--- /dev/null
+++ b/pkgs/tools/admin/cjdns-tools/default.nix
@@ -0,0 +1,46 @@
+{ stdenv
+, cjdns
+, nodejs
+, makeWrapper
+, lib
+}:
+
+stdenv.mkDerivation {
+ pname = "cjdns-tools";
+ version = cjdns.version;
+
+ src = cjdns.src;
+
+ buildInputs = [
+ nodejs
+ ];
+
+ nativeBuildInputs = [
+ makeWrapper
+ ];
+
+ buildPhase = ''
+ patchShebangs tools
+
+ sed -e "s|'password': 'NONE'|'password': Fs.readFileSync('/etc/cjdns.keys').toString().split('\\\\n').map(v => v.split('=')).filter(v => v[0] === 'CJDNS_ADMIN_PASSWORD').map(v => v[1])[0]|g" \
+ -i tools/lib/cjdnsadmin/cjdnsadmin.js
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cat ${./wrapper.sh} | sed "s|@@out@@|$out|g" > $out/bin/cjdns-tools
+ chmod +x $out/bin/cjdns-tools
+
+ cp -r tools $out/tools
+ find $out/tools -maxdepth 1 -type f -exec chmod -v a+x {} \;
+ cp -r node_modules $out/node_modules
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/cjdelisle/cjdns";
+ description = "Tools for cjdns managment";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ mkg20001 ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/tools/admin/cjdns-tools/wrapper.sh b/pkgs/tools/admin/cjdns-tools/wrapper.sh
new file mode 100644
index 00000000000..2e8d85b1dd9
--- /dev/null
+++ b/pkgs/tools/admin/cjdns-tools/wrapper.sh
@@ -0,0 +1,29 @@
+#!/usr/bin/env bash
+
+export PATH="@@out@@/tools:$PATH"
+
+set -eo pipefail
+
+if ! cat /etc/cjdns.keys >/dev/null 2>&1; then
+ echo "ERROR: No permission to read /etc/cjdns.keys (use sudo)" >&2
+ exit 1
+fi
+
+if [[ -z $1 ]]; then
+ echo "Cjdns admin"
+
+ echo "Usage: $0 "
+
+ echo
+ echo "Commands:" $(find @@out@@/tools -maxdepth 1 -type f | sed -r "s|.+/||g")
+
+ _sh=$(which sh)
+ PATH="@@out@@/tools" PS1="cjdns\$ " "$_sh"
+else
+ if [[ ! -e @@out@@/tools/$1 ]]; then
+ echo "ERROR: '$1' is not a valid tool" >&2
+ exit 2
+ else
+ "$@"
+ fi
+fi
diff --git a/pkgs/tools/admin/clair/default.nix b/pkgs/tools/admin/clair/default.nix
index 93b5433fcc0..e9e039cfbd4 100644
--- a/pkgs/tools/admin/clair/default.nix
+++ b/pkgs/tools/admin/clair/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "clair";
- version = "4.0.4";
+ version = "4.0.5";
src = fetchFromGitHub {
owner = "quay";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-KY9POvwmyUVx9jcn02Ltcz2a1ULqyKW73A9Peb6rpYE=";
+ sha256 = "sha256-tpk5Avx2bRQlhOnHpmpDG14X9nk3x68TST+VtIW8rL8=";
};
- vendorSha256 = "sha256-+p3ucnvgOpSLS/uP9RAkWixCkaDoF64qCww013jPqSs=";
+ vendorSha256 = "sha256-O9SEVyBFnmyrQCmccXLyeOqlTwWHzICTLVKGO7rerjI=";
doCheck = false;
diff --git a/pkgs/tools/admin/exoscale-cli/default.nix b/pkgs/tools/admin/exoscale-cli/default.nix
index cb487db6a5f..3f0aca33d61 100644
--- a/pkgs/tools/admin/exoscale-cli/default.nix
+++ b/pkgs/tools/admin/exoscale-cli/default.nix
@@ -2,13 +2,13 @@
buildGoPackage rec {
pname = "exoscale-cli";
- version = "1.27.1";
+ version = "1.28.0";
src = fetchFromGitHub {
owner = "exoscale";
repo = "cli";
rev = "v${version}";
- sha256 = "sha256-YaW7rTeVz2Mbnmp6ORsnALlyVxGnf8K73LXN/fmJMLk=";
+ sha256 = "sha256-YbWh4ZIlcxAD/8F/fsYIWjv5hKaHNNi+sNrD7Ax/xDw=";
};
goPackagePath = "github.com/exoscale/cli";
diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix
index ef47578ac57..b9ed3eca919 100644
--- a/pkgs/tools/audio/beets/default.nix
+++ b/pkgs/tools/audio/beets/default.nix
@@ -105,13 +105,13 @@ in pythonPackages.buildPythonApplication rec {
# unstable does not require bs1770gain[2].
# [1]: https://discourse.beets.io/t/forming-a-beets-core-team/639
# [2]: https://github.com/NixOS/nixpkgs/pull/90504
- version = "unstable-2021-03-24";
+ version = "unstable-2021-04-17";
src = fetchFromGitHub {
owner = "beetbox";
repo = "beets";
- rev = "854b4ab48324afe8884fcd11fa47bd6258d2f4f7";
- sha256 = "sha256-y5EWVNF4bd9fNvU6VkucMpenyFZuqdPkrqQDgG9ZPJY=";
+ rev = "50163b373f527d1b1f8b2442240ca547e846744e";
+ sha256 = "sha256-l7drav4Qx2JCF+F5OA0s641idcKM3S4Yx2lM2evJQWE=";
};
propagatedBuildInputs = [
diff --git a/pkgs/tools/audio/beets/plugins/alternatives.nix b/pkgs/tools/audio/beets/plugins/alternatives.nix
index c0b9123d96a..146e9f50664 100644
--- a/pkgs/tools/audio/beets/plugins/alternatives.nix
+++ b/pkgs/tools/audio/beets/plugins/alternatives.nix
@@ -2,13 +2,13 @@
pythonPackages.buildPythonApplication rec {
pname = "beets-alternatives";
- version = "0.10.2";
+ version = "unstable-2021-02-01";
src = fetchFromGitHub {
repo = "beets-alternatives";
owner = "geigerzaehler";
- rev = "v${version}";
- sha256 = "1dsz94fb29wra1f9580w20bz2f1bgkj4xnsjgwgbv14flbfw4bp0";
+ rev = "288299e3aa9a1602717b04c28696fce5ce4259bf";
+ sha256 = "sha256-Xl7AHr33hXQqQDuFbWuj8HrIugeipJFPmvNXpCkU/mI=";
};
postPatch = ''
@@ -23,10 +23,10 @@ pythonPackages.buildPythonApplication rec {
mock
];
- meta = {
+ meta = with lib; {
description = "Beets plugin to manage external files";
homepage = "https://github.com/geigerzaehler/beets-alternatives";
- maintainers = [ lib.maintainers.aszlig ];
- license = lib.licenses.mit;
+ maintainers = with maintainers; [ aszlig lovesegfault ];
+ license = licenses.mit;
};
}
diff --git a/pkgs/tools/audio/beets/plugins/copyartifacts.nix b/pkgs/tools/audio/beets/plugins/copyartifacts.nix
index b8a17a7d13e..2f1ecdfc369 100644
--- a/pkgs/tools/audio/beets/plugins/copyartifacts.nix
+++ b/pkgs/tools/audio/beets/plugins/copyartifacts.nix
@@ -1,13 +1,14 @@
{ lib, fetchFromGitHub, beets, pythonPackages, glibcLocales }:
pythonPackages.buildPythonApplication {
- name = "beets-copyartifacts";
+ pname = "beets-copyartifacts";
+ version = "unstable-2020-02-15";
src = fetchFromGitHub {
repo = "beets-copyartifacts";
- owner = "sbarakat";
- rev = "d0bb75c8fc8fe125e8191d73de7ade6212aec0fd";
- sha256 = "19b4lqq1p45n348ssmql60jylw2fw7vfj9j22nly5qj5qx51j3g5";
+ owner = "adammillerio";
+ rev = "85eefaebf893cb673fa98bfde48406ec99fd1e4b";
+ sha256 = "sha256-bkT2BZZ2gdcacgvyrVe2vMrOMV8iMAm8Q5xyrZzyqU0=";
};
postPatch = ''
diff --git a/pkgs/tools/audio/beets/plugins/extrafiles.nix b/pkgs/tools/audio/beets/plugins/extrafiles.nix
index 0ab6b3e5414..9118765cc1b 100644
--- a/pkgs/tools/audio/beets/plugins/extrafiles.nix
+++ b/pkgs/tools/audio/beets/plugins/extrafiles.nix
@@ -2,13 +2,13 @@
pythonPackages.buildPythonApplication rec {
pname = "beets-extrafiles";
- version = "0.0.7";
+ version = "unstable-2020-12-13";
src = fetchFromGitHub {
repo = "beets-extrafiles";
owner = "Holzhaus";
- rev = "v${version}";
- sha256 = "0ah7mgax9zrhvvd5scf2z0v0bhd6xmmv5sdb6av840ixpl6vlvm6";
+ rev = "a1d6ef9a9682b6bf7af9483541e56a3ff12247b8";
+ sha256 = "sha256-ajuEbieWjTCNjdRZuGUwvStZwjx260jmY0m+ZqNd7ec=";
};
postPatch = ''
@@ -18,6 +18,8 @@ pythonPackages.buildPythonApplication rec {
nativeBuildInputs = [ beets ];
+ propagatedBuildInputs = with pythonPackages; [ mediafile ];
+
preCheck = ''
HOME=$TEMPDIR
'';
diff --git a/pkgs/tools/audio/yabridge/default.nix b/pkgs/tools/audio/yabridge/default.nix
index d2a14aae330..c09045bdb6e 100644
--- a/pkgs/tools/audio/yabridge/default.nix
+++ b/pkgs/tools/audio/yabridge/default.nix
@@ -45,25 +45,25 @@ let
# Derived from vst3.wrap
vst3 = rec {
- version = "e2fbb41f28a4b311f2fc7d28e9b4330eec1802b6";
+ version = "3.7.2_build_28-patched";
src = fetchFromGitHub {
owner = "robbert-vdh";
repo = "vst3sdk";
- rev = version;
+ rev = "v${version}";
fetchSubmodules = true;
- sha256 = "sha256-4oLOa6kVB053Hrq7BBbZFdruAXuqnC944y5Kuib1F7s=";
+ sha256 = "sha256-39pvfcg4fvf7DAbAPzEHA1ja1LFL6r88nEwNYwaDC8w=";
};
};
in stdenv.mkDerivation rec {
pname = "yabridge";
- version = "3.0.2";
+ version = "3.1.0";
# NOTE: Also update yabridgectl's cargoHash when this is updated
src = fetchFromGitHub {
owner = "robbert-vdh";
repo = pname;
rev = version;
- hash = "sha256-3uZCYGqo9acpANy5tQl3U0LK6wuOzjQpfjHDvaPSGlI=";
+ hash = "sha256-xvKjb+ql3WxnGHqcn3WnxunY5+s9f8Gt/n6EFSBrNdI=";
};
# Unpack subproject sources
diff --git a/pkgs/tools/audio/yabridgectl/default.nix b/pkgs/tools/audio/yabridgectl/default.nix
index 5c7f3a628f5..4548b288b69 100644
--- a/pkgs/tools/audio/yabridgectl/default.nix
+++ b/pkgs/tools/audio/yabridgectl/default.nix
@@ -6,7 +6,7 @@ rustPlatform.buildRustPackage rec {
src = yabridge.src;
sourceRoot = "source/tools/yabridgectl";
- cargoHash = "sha256-mSp/IH7ZB7YSOBCFwNtHLYDz7CvWo2sO9VuPdqpl/u0=";
+ cargoHash = "sha256-TcjFaDo5IUs6Z3tgb+6jqyyrB2BLcif6Ycw++5FzuDY=";
patches = [
# By default, yabridgectl locates libyabridge.so by using
diff --git a/pkgs/tools/audio/yabridgectl/libyabridge-from-nix-profiles.patch b/pkgs/tools/audio/yabridgectl/libyabridge-from-nix-profiles.patch
index e17cda6ada3..ec42f98a2e8 100644
--- a/pkgs/tools/audio/yabridgectl/libyabridge-from-nix-profiles.patch
+++ b/pkgs/tools/audio/yabridgectl/libyabridge-from-nix-profiles.patch
@@ -1,8 +1,8 @@
diff --git a/tools/yabridgectl/src/config.rs b/tools/yabridgectl/src/config.rs
-index c1c89cf..d7bd822 100644
+index 6e05e34..656eef3 100644
--- a/tools/yabridgectl/src/config.rs
+++ b/tools/yabridgectl/src/config.rs
-@@ -23,6 +23,7 @@ use std::collections::{BTreeMap, BTreeSet};
+@@ -23,6 +23,7 @@ use std::collections::{BTreeMap, BTreeSet, HashSet};
use std::env;
use std::fmt::Display;
use std::fs;
@@ -10,7 +10,7 @@ index c1c89cf..d7bd822 100644
use std::path::{Path, PathBuf};
use which::which;
use xdg::BaseDirectories;
-@@ -216,34 +217,24 @@ impl Config {
+@@ -222,34 +223,24 @@ impl Config {
}
}
None => {
@@ -56,10 +56,10 @@ index c1c89cf..d7bd822 100644
));
}
diff --git a/tools/yabridgectl/src/main.rs b/tools/yabridgectl/src/main.rs
-index 0db1bd4..221cdd0 100644
+index ce701b8..b6b9633 100644
--- a/tools/yabridgectl/src/main.rs
+++ b/tools/yabridgectl/src/main.rs
-@@ -102,7 +102,7 @@ fn main() -> Result<()> {
+@@ -150,7 +150,7 @@ fn main() -> Result<()> {
.about("Path to the directory containing 'libyabridge-{vst2,vst3}.so'")
.long_about(
"Path to the directory containing 'libyabridge-{vst2,vst3}.so'. If this \
diff --git a/pkgs/tools/backup/zrepl/default.nix b/pkgs/tools/backup/zrepl/default.nix
index 8d5a5159877..a7111633545 100644
--- a/pkgs/tools/backup/zrepl/default.nix
+++ b/pkgs/tools/backup/zrepl/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "zrepl";
- version = "0.3.1";
+ version = "0.4.0";
src = fetchFromGitHub {
owner = "zrepl";
repo = "zrepl";
rev = "v${version}";
- sha256 = "sha256-wtUL8GGSJxn9yEdyTWKtkHODfxxLOxojNPlPLRjI9xo=";
+ sha256 = "5Bp8XGCjibDJgeAjW98rcABuddI+CV4Fh3hFJaKKwbo=";
};
- vendorSha256 = "sha256-4LBX0bD8qirFaFkV52QFU50lEW4eae6iObIa5fFT/wA=";
+ vendorSha256 = "MwmYiK2z7ZK5kKBZV7K6kCZRSd7v5Sgjoih1eeOh6go=";
subPackages = [ "." ];
diff --git a/pkgs/tools/compression/nx2elf/default.nix b/pkgs/tools/compression/nx2elf/default.nix
new file mode 100644
index 00000000000..8b7f094bf39
--- /dev/null
+++ b/pkgs/tools/compression/nx2elf/default.nix
@@ -0,0 +1,37 @@
+{ lib, stdenv, fetchFromGitHub, lz4 }:
+
+stdenv.mkDerivation rec {
+ pname = "nx2elf";
+ version = "unstable-2020-05-26";
+
+ src = fetchFromGitHub {
+ owner = "shuffle2";
+ repo = "nx2elf";
+ rev = "7212e82a77b84fcc18ef2d050970350dbf63649b";
+ sha256 = "1j4k5s86c6ixa3wdqh4cfm31fxabwn6jcjc6pippx8mii98ac806";
+ };
+
+ buildInputs = [ lz4 ];
+
+ postPatch = ''
+ # This project does not comply with C++14 standards, and compilation on that fails.
+ # This does however succesfully compile with the gnu++20 standard.
+ substituteInPlace Makefile --replace "c++14" "gnu++20"
+
+ # pkg-config is not supported, so we'll manually use a non-ancient version of lz4
+ cp ${lz4.src}/lib/lz4.{h,c} .
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ install -D nx2elf $out/bin/nx2elf
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/shuffle2/nx2elf";
+ description = "Convert Nintendo Switch executable files to ELFs";
+ license = licenses.unfree; # No license specified upstream
+ platforms = [ "x86_64-linux" ]; # Should work on Darwin as well, but this is untested. aarch64-linux fails.
+ maintainers = [ maintainers.ivar ];
+ };
+}
diff --git a/pkgs/tools/filesystems/9pfs/default.nix b/pkgs/tools/filesystems/9pfs/default.nix
index 9664526761b..bf817a50873 100644
--- a/pkgs/tools/filesystems/9pfs/default.nix
+++ b/pkgs/tools/filesystems/9pfs/default.nix
@@ -10,6 +10,10 @@ stdenv.mkDerivation {
sha256 = "007s2idsn6bspmfxv1qabj39ggkgvn6gwdbhczwn04lb4c6gh3xc";
};
+ # Upstream development has stopped and is no longer accepting patches
+ # https://github.com/mischief/9pfs/pull/3
+ patches = [ ./fix-darwin-build.patch ];
+
preConfigure =
''
substituteInPlace Makefile --replace '-g bin' ""
@@ -25,7 +29,7 @@ stdenv.mkDerivation {
homepage = "https://github.com/mischief/9pfs";
description = "FUSE-based client of the 9P network filesystem protocol";
maintainers = [ lib.maintainers.eelco ];
- platforms = lib.platforms.linux;
+ platforms = lib.platforms.unix;
license = with lib.licenses; [ lpl-102 bsd2 ];
};
}
diff --git a/pkgs/tools/filesystems/9pfs/fix-darwin-build.patch b/pkgs/tools/filesystems/9pfs/fix-darwin-build.patch
new file mode 100644
index 00000000000..a565248f19d
--- /dev/null
+++ b/pkgs/tools/filesystems/9pfs/fix-darwin-build.patch
@@ -0,0 +1,47 @@
+From 6b7863b51c97f8ecd9a93fc4347f8938f9b5c05f Mon Sep 17 00:00:00 2001
+From: midchildan
+Date: Tue, 30 Mar 2021 22:21:51 +0900
+Subject: [PATCH] build: fix build for macOS
+
+---
+ 9pfs.c | 4 ++--
+ libc.h | 4 ++++
+ 2 files changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/9pfs.c b/9pfs.c
+index 2c481bd..f5c487c 100644
+--- a/9pfs.c
++++ b/9pfs.c
+@@ -30,7 +30,7 @@
+ enum
+ {
+ CACHECTLSIZE = 8, /* sizeof("cleared\n") - 1 */
+- MSIZE = 8192
++ MSIZE_9P = 8192
+ };
+
+ void dir2stat(struct stat*, Dir*);
+@@ -505,7 +505,7 @@ main(int argc, char *argv[])
+ freeaddrinfo(ainfo);
+
+ init9p();
+- msize = _9pversion(MSIZE);
++ msize = _9pversion(MSIZE_9P);
+ if(doauth){
+ authfid = _9pauth(AUTHFID, user, NULL);
+ ai = auth_proxy(authfid, auth_getkey, "proto=p9any role=client");
+diff --git a/libc.h b/libc.h
+index 099adba..aac03c5 100644
+--- a/libc.h
++++ b/libc.h
+@@ -61,6 +61,10 @@ typedef unsigned char uchar;
+ typedef unsigned long long uvlong;
+ typedef long long vlong;
+
++#ifndef __GLIBC__
++typedef unsigned long ulong;
++#endif
++
+ typedef
+ struct Qid
+ {
diff --git a/pkgs/tools/filesystems/aefs/default.nix b/pkgs/tools/filesystems/aefs/default.nix
index ed47b8f885b..fb6fa01894e 100644
--- a/pkgs/tools/filesystems/aefs/default.nix
+++ b/pkgs/tools/filesystems/aefs/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, fuse }:
+{ lib, stdenv, fetchurl, fetchpatch, fuse }:
stdenv.mkDerivation rec {
name = "aefs-0.4pre259-8843b7c";
@@ -8,12 +8,29 @@ stdenv.mkDerivation rec {
sha256 = "167hp58hmgdavg2mqn5dx1xgq24v08n8d6psf33jhbdabzx6a6zq";
};
+ patches = [
+ (fetchpatch {
+ url = "https://github.com/edolstra/aefs/commit/15d8df8b8d5dc1ee20d27a86c4d23163a67f3123.patch";
+ sha256 = "0k36hsyvf8a0ji2hpghgqff2fncj0pllxn8p0rs0aj4h7j2vp4iv";
+ })
+ ];
+
+ # autoconf's AC_CHECK_HEADERS and AC_CHECK_LIBS fail to detect libfuse on
+ # Darwin if FUSE_USE_VERSION isn't set at configure time.
+ #
+ # NOTE: Make sure the value of FUSE_USE_VERSION specified here matches the
+ # actual version used in the source code:
+ #
+ # $ tar xf "$(nix-build -A aefs.src)"
+ # $ grep -R FUSE_USE_VERSION
+ configureFlags = lib.optional stdenv.isDarwin "CPPFLAGS=-DFUSE_USE_VERSION=26";
+
buildInputs = [ fuse ];
meta = with lib; {
homepage = "https://github.com/edolstra/aefs";
description = "A cryptographic filesystem implemented in userspace using FUSE";
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = [ maintainers.eelco ];
license = licenses.gpl2;
};
diff --git a/pkgs/tools/filesystems/android-file-transfer/darwin-dont-vendor-dependencies.patch b/pkgs/tools/filesystems/android-file-transfer/darwin-dont-vendor-dependencies.patch
new file mode 100644
index 00000000000..6e0f38582cc
--- /dev/null
+++ b/pkgs/tools/filesystems/android-file-transfer/darwin-dont-vendor-dependencies.patch
@@ -0,0 +1,21 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 8b05ab0..81e31f5 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -236,16 +236,6 @@ endif()
+
+ if (''${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
+ set(MACOSX_BUNDLE_LIBS)
+- if (OPENSSL_FOUND)
+- list(APPEND MACOSX_BUNDLE_LIBS /usr/local/opt/openssl@1.1/lib/libcrypto.1.1.dylib)
+- endif()
+- if (TAGLIB_FOUND)
+- list(APPEND MACOSX_BUNDLE_LIBS /usr/local/opt/taglib/lib/libtag.1.dylib)
+- endif()
+- if (FUSE_FOUND)
+- list(APPEND MACOSX_BUNDLE_LIBS /usr/local/lib/libosxfuse.2.dylib)
+- endif()
+-
+ set(MACOSX_BUNDLE_LIBS_INSTALL)
+ set(MACOSX_BUNDLE_ROOT_DIR "''${CMAKE_INSTALL_PREFIX}/''${CMAKE_PROJECT_NAME}.app")
+ message(STATUS "bundle root dir: ''${MACOSX_BUNDLE_ROOT_DIR}")
diff --git a/pkgs/tools/filesystems/android-file-transfer/default.nix b/pkgs/tools/filesystems/android-file-transfer/default.nix
index f0efaaa3231..a8511f8b99a 100644
--- a/pkgs/tools/filesystems/android-file-transfer/default.nix
+++ b/pkgs/tools/filesystems/android-file-transfer/default.nix
@@ -1,4 +1,14 @@
-{ lib, mkDerivation, fetchFromGitHub, cmake, fuse, readline, pkg-config, qtbase, qttools }:
+{ lib
+, stdenv
+, mkDerivation
+, fetchFromGitHub
+, cmake
+, fuse
+, readline
+, pkg-config
+, qtbase
+, qttools
+, wrapQtAppsHook }:
mkDerivation rec {
pname = "android-file-transfer";
@@ -11,14 +21,24 @@ mkDerivation rec {
sha256 = "125rq8ji83nw6chfw43i0h9c38hjqh1qjibb0gnf9wrigar9zc8b";
};
- nativeBuildInputs = [ cmake readline pkg-config ];
+ patches = [ ./darwin-dont-vendor-dependencies.patch ];
+
+ nativeBuildInputs = [ cmake readline pkg-config wrapQtAppsHook ];
buildInputs = [ fuse qtbase qttools ];
+ postInstall = lib.optionalString stdenv.isDarwin ''
+ mkdir $out/Applications
+ mv $out/*.app $out/Applications
+ for f in $out/Applications/android-file-transfer.app/Contents/MacOS/*; do
+ wrapQtApp "$f"
+ done
+ '';
+
meta = with lib; {
description = "Reliable MTP client with minimalistic UI";
homepage = "https://whoozle.github.io/android-file-transfer-linux/";
license = licenses.lgpl21Plus;
maintainers = [ maintainers.xaverdh ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/archivemount/default.nix b/pkgs/tools/filesystems/archivemount/default.nix
index e3f9d8505fc..32c942aea5b 100644
--- a/pkgs/tools/filesystems/archivemount/default.nix
+++ b/pkgs/tools/filesystems/archivemount/default.nix
@@ -17,6 +17,6 @@ stdenv.mkDerivation {
meta = {
description = "Gateway between FUSE and libarchive: allows mounting of cpio, .tar.gz, .tar.bz2 archives";
license = lib.licenses.gpl2;
- platforms = lib.platforms.linux;
+ platforms = lib.platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/avfs/default.nix b/pkgs/tools/filesystems/avfs/default.nix
index e89828dd750..3315085191e 100644
--- a/pkgs/tools/filesystems/avfs/default.nix
+++ b/pkgs/tools/filesystems/avfs/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://avf.sourceforge.net/";
description = "Virtual filesystem that allows browsing of compressed files";
- platforms = lib.platforms.linux;
+ platforms = lib.platforms.unix;
license = lib.licenses.gpl2;
};
}
diff --git a/pkgs/tools/filesystems/boxfs/default.nix b/pkgs/tools/filesystems/boxfs/default.nix
index 5637b9af291..ef611afd5d0 100644
--- a/pkgs/tools/filesystems/boxfs/default.nix
+++ b/pkgs/tools/filesystems/boxfs/default.nix
@@ -37,7 +37,10 @@ in stdenv.mkDerivation {
buildInputs = [ curl fuse libxml2 ];
nativeBuildInputs = [ pkg-config ];
- buildFlags = [ "static" ];
+ buildFlags = [
+ "static"
+ "CC=${stdenv.cc.targetPrefix}cc"
+ ] ++ lib.optional stdenv.isDarwin "CFLAGS=-D_BSD_SOURCE";
installPhase = ''
mkdir -p $out/bin
@@ -55,6 +58,6 @@ in stdenv.mkDerivation {
'';
homepage = "https://github.com/drotiro/boxfs2";
license = licenses.gpl3;
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/cryfs/default.nix b/pkgs/tools/filesystems/cryfs/default.nix
index eec257c44b7..a0dc3124159 100644
--- a/pkgs/tools/filesystems/cryfs/default.nix
+++ b/pkgs/tools/filesystems/cryfs/default.nix
@@ -25,6 +25,9 @@ stdenv.mkDerivation rec {
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-fs/cryfs/files/cryfs-0.10.2-unbundle-libs.patch?id=192ac7421ddd4093125f4997898fb62e8a140a44";
sha256 = "0hzss5rawcjrh8iqzc40w5yjhxdqya4gbg6dzap70180s50mahzs";
})
+
+ # Backported from https://github.com/cryfs/cryfs/pull/378
+ ./use-macfuse.patch
];
postPatch = ''
@@ -48,16 +51,18 @@ stdenv.mkDerivation rec {
strictDeps = true;
- buildInputs = [ boost cryptopp curl fuse openssl gtest ];
+ buildInputs = [ boost cryptopp curl fuse openssl ];
+
+ checkInputs = [ gtest ];
cmakeFlags = [
"-DCRYFS_UPDATE_CHECKS:BOOL=FALSE"
"-DBoost_USE_STATIC_LIBS:BOOL=FALSE" # this option is case sensitive
"-DUSE_SYSTEM_LIBS:BOOL=TRUE"
- "-DBUILD_TESTING:BOOL=TRUE"
- ];
+ "-DBUILD_TESTING:BOOL=${if doCheck then "TRUE" else "FALSE"}"
+ ] ++ lib.optional doCheck "-DCMAKE_PREFIX_PATH=${gtest.dev}/lib/cmake";
- doCheck = (!stdenv.isDarwin); # Cryfs tests are broken on darwin
+ doCheck = true;
checkPhase = ''
# Skip CMakeFiles directory and tests depending on fuse (does not work well with sandboxing)
@@ -73,6 +78,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.cryfs.org";
license = licenses.lgpl3;
maintainers = with maintainers; [ peterhoeg c0bw3b ];
- platforms = with platforms; linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/cryfs/use-macfuse.patch b/pkgs/tools/filesystems/cryfs/use-macfuse.patch
new file mode 100644
index 00000000000..47e7845cf3d
--- /dev/null
+++ b/pkgs/tools/filesystems/cryfs/use-macfuse.patch
@@ -0,0 +1,207 @@
+diff --git a/.travisci/install.sh b/.travisci/install.sh
+index 9057a75b..2929c360 100755
+--- a/.travisci/install.sh
++++ b/.travisci/install.sh
+@@ -6,12 +6,11 @@ set -e
+ if [ "${CXX}" == "g++" ]; then
+ # We need to uninstall oclint because it creates a /usr/local/include/c++ symlink that clashes with the gcc5 package
+ # see https://github.com/Homebrew/homebrew-core/issues/21172
+- brew cask uninstall oclint
++ brew uninstall oclint
+ brew install gcc@7
+ fi
+
+-brew cask install osxfuse
+-brew install libomp
++brew install libomp pkg-config macfuse
+
+ # By default, travis only fetches the newest 50 commits. We need more in case we're further from the last version tag, so the build doesn't fail because it can't generate the version number.
+ git fetch --unshallow --tags
+diff --git a/README.md b/README.md
+index b0f4a684..7001119a 100644
+--- a/README.md
++++ b/README.md
+@@ -19,7 +19,7 @@ OSX
+
+ CryFS is distributed via Homebrew. Just do
+
+- brew cask install osxfuse
++ brew install osxfuse
+ brew install cryfs
+
+ Windows (experimental)
+@@ -45,6 +45,7 @@ Requirements
+ - Git (for getting the source code)
+ - GCC version >= 5.0 or Clang >= 4.0
+ - CMake version >= 3.0
++ - pkg-config (on Unix)
+ - libcurl4 (including development headers)
+ - Boost libraries version >= 1.65.1 (including development headers)
+ - filesystem
+@@ -53,20 +54,20 @@ Requirements
+ - program_options
+ - thread
+ - SSL development libraries (including development headers, e.g. libssl-dev)
+- - libFUSE version >= 2.8.6 (including development headers), on Mac OS X instead install osxfuse from https://osxfuse.github.io/
++ - libFUSE version >= 2.8.6 (including development headers), on Mac OS X instead install macFUSE from https://osxfuse.github.io/
+ - Python >= 2.7
+ - OpenMP
+
+ You can use the following commands to install these requirements
+
+ # Ubuntu
+- $ sudo apt install git g++ cmake make libcurl4-openssl-dev libboost-filesystem-dev libboost-system-dev libboost-chrono-dev libboost-program-options-dev libboost-thread-dev libssl-dev libfuse-dev python
++ $ sudo apt install git g++ cmake make pkg-config libcurl4-openssl-dev libboost-filesystem-dev libboost-system-dev libboost-chrono-dev libboost-program-options-dev libboost-thread-dev libssl-dev libfuse-dev python
+
+ # Fedora
+- sudo dnf install git gcc-c++ cmake make libcurl-devel boost-devel boost-static openssl-devel fuse-devel python
++ sudo dnf install git gcc-c++ cmake make pkgconf libcurl-devel boost-devel boost-static openssl-devel fuse-devel python
+
+ # Macintosh
+- brew install cmake boost openssl libomp
++ brew install cmake pkg-config boost openssl libomp
+
+ Build & Install
+ ---------------
+@@ -116,17 +117,17 @@ On most systems, CMake should find the libraries automatically. However, that do
+
+ cmake .. -DBoost_USE_STATIC_LIBS=off
+
+-2. **Fuse/Osxfuse library not found**
++2. **Fuse library not found**
+
+ Pass in the library path with
+
+- cmake .. -DFUSE_LIB_PATH=/path/to/fuse/or/osxfuse
++ PKG_CONFIG_PATH=/path-to-fuse-or-macFUSE/lib/pkgconfig cmake ..
+
+-3. **Fuse/Osxfuse headers not found**
++3. **Fuse headers not found**
+
+ Pass in the include path with
+
+- cmake .. -DCMAKE_CXX_FLAGS="-I/path/to/fuse/or/osxfuse/headers"
++ PKG_CONFIG_PATH=/path-to-fuse-or-macFUSE/lib/pkgconfig cmake ..
+
+ 4. **Openssl headers not found**
+
+diff --git a/cmake-utils/utils.cmake b/cmake-utils/utils.cmake
+index da4dff8c..66021c5c 100644
+--- a/cmake-utils/utils.cmake
++++ b/cmake-utils/utils.cmake
+@@ -157,33 +157,6 @@ function(require_clang_version VERSION)
+ endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
+ endfunction(require_clang_version)
+
+-##################################################
+-# Find the location of a library and return its full path in OUTPUT_VARIABLE.
+-# If PATH_VARIABLE points to a defined variable, then the library will only be searched in this path.
+-# If PATH_VARIABLE points to a undefined variable, default system locations will be searched.
+-#
+-# Uses (the following will search for fuse in system locations by default, and if the user passes -DFUSE_LIB_PATH to cmake, it will only search in this path.
+-# find_library_with_path(MYLIBRARY fuse FUSE_LIB_PATH)
+-# target_link_library(target ${MYLIBRARY})
+-##################################################
+-function(find_library_with_path OUTPUT_VARIABLE LIBRARY_NAME PATH_VARIABLE)
+- if(${PATH_VARIABLE})
+- find_library(${OUTPUT_VARIABLE} ${LIBRARY_NAME} PATHS ${${PATH_VARIABLE}} NO_DEFAULT_PATH)
+- if (${OUTPUT_VARIABLE} MATCHES NOTFOUND)
+- message(FATAL_ERROR "Didn't find ${LIBRARY_NAME} in path specified by the ${PATH_VARIABLE} parameter (${${PATH_VARIABLE}}). Pass in the correct path or remove the parameter to try common system locations.")
+- else(${OUTPUT_VARIABLE} MATCHES NOTFOUND)
+- message(STATUS "Found ${LIBRARY_NAME} in user-defined path ${${PATH_VARIABLE}}")
+- endif(${OUTPUT_VARIABLE} MATCHES NOTFOUND)
+- else(${PATH_VARIABLE})
+- find_library(${OUTPUT_VARIABLE} ${LIBRARY_NAME})
+- if (${OUTPUT_VARIABLE} MATCHES NOTFOUND)
+- message(FATAL_ERROR "Didn't find ${LIBRARY_NAME} library. If ${LIBRARY_NAME} is installed, try passing in the library location with -D${PATH_VARIABLE}=/path/to/${LIBRARY_NAME}/lib.")
+- else(${OUTPUT_VARIABLE} MATCHES NOTFOUND)
+- message(STATUS "Found ${LIBRARY_NAME} in system location")
+- endif(${OUTPUT_VARIABLE} MATCHES NOTFOUND)
+- endif(${PATH_VARIABLE})
+-endfunction(find_library_with_path)
+-
+ include(cmake-utils/TargetArch.cmake)
+ function(get_target_architecture output_var)
+ target_architecture(local_output_var)
+diff --git a/src/fspp/fuse/CMakeLists.txt b/src/fspp/fuse/CMakeLists.txt
+index b991bd72..8df3dbb7 100644
+--- a/src/fspp/fuse/CMakeLists.txt
++++ b/src/fspp/fuse/CMakeLists.txt
+@@ -35,12 +35,12 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
+ DESTINATION "${CMAKE_INSTALL_BINDIR}"
+ )
+
+-elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
+- set(CMAKE_FIND_FRAMEWORK LAST)
+- find_library_with_path(FUSE "osxfuse" FUSE_LIB_PATH)
+- target_link_libraries(${PROJECT_NAME} PUBLIC ${FUSE})
+-else() # Linux
+- find_library_with_path(FUSE "fuse" FUSE_LIB_PATH)
+- target_link_libraries(${PROJECT_NAME} PUBLIC ${FUSE})
++else() # Linux and macOS
++ find_package(PkgConfig REQUIRED)
++ pkg_check_modules(Fuse REQUIRED IMPORTED_TARGET fuse)
++ target_link_libraries(${PROJECT_NAME} PUBLIC PkgConfig::Fuse)
+ endif()
+
++if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
++ set(CMAKE_FIND_FRAMEWORK LAST)
++endif()
+diff --git a/src/fspp/fuse/Fuse.cpp b/src/fspp/fuse/Fuse.cpp
+index 52cd5644..df0b400d 100644
+--- a/src/fspp/fuse/Fuse.cpp
++++ b/src/fspp/fuse/Fuse.cpp
+@@ -295,7 +295,7 @@ vector Fuse::_build_argv(const bf::path &mountdir, const vector
+ // Make volume name default to mountdir on macOS
+ _add_fuse_option_if_not_exists(&argv, "volname", mountdir.filename().string());
+ #endif
+- // TODO Also set read/write size for osxfuse. The options there are called differently.
++ // TODO Also set read/write size for macFUSE. The options there are called differently.
+ // large_read not necessary because reads are large anyhow. This option is only important for 2.4.
+ //argv.push_back(_create_c_string("-o"));
+ //argv.push_back(_create_c_string("large_read"));
+diff --git a/src/fspp/fuse/params.h b/src/fspp/fuse/params.h
+index 4a45ef79..9903ac82 100644
+--- a/src/fspp/fuse/params.h
++++ b/src/fspp/fuse/params.h
+@@ -3,14 +3,6 @@
+ #define MESSMER_FSPP_FUSE_PARAMS_H_
+
+ #define FUSE_USE_VERSION 26
+-#if defined(__linux__) || defined(__FreeBSD__)
+ #include
+-#elif __APPLE__
+-#include
+-#elif defined(_MSC_VER)
+-#include // Dokany fuse
+-#else
+-#error System not supported
+-#endif
+
+ #endif
+diff --git a/src/fspp/impl/FilesystemImpl.cpp b/src/fspp/impl/FilesystemImpl.cpp
+index bc0ffbd7..23b28601 100644
+--- a/src/fspp/impl/FilesystemImpl.cpp
++++ b/src/fspp/impl/FilesystemImpl.cpp
+@@ -321,7 +321,7 @@ void FilesystemImpl::statfs(struct ::statvfs *fsstat) {
+ fsstat->f_namemax = stat.max_filename_length;
+
+ //f_frsize, f_favail, f_fsid and f_flag are ignored in fuse, see http://fuse.sourcearchive.com/documentation/2.7.0/structfuse__operations_4e765e29122e7b6b533dc99849a52655.html#4e765e29122e7b6b533dc99849a52655
+- fsstat->f_frsize = fsstat->f_bsize; // even though this is supposed to be ignored, osxfuse needs it.
++ fsstat->f_frsize = fsstat->f_bsize; // even though this is supposed to be ignored, macFUSE needs it.
+ }
+
+ void FilesystemImpl::createSymlink(const bf::path &to, const bf::path &from, ::uid_t uid, ::gid_t gid) {
+diff --git a/test/fspp/testutils/FuseThread.cpp b/test/fspp/testutils/FuseThread.cpp
+index 277a2dac..7f3638db 100644
+--- a/test/fspp/testutils/FuseThread.cpp
++++ b/test/fspp/testutils/FuseThread.cpp
+@@ -23,7 +23,7 @@ void FuseThread::start(const bf::path &mountDir, const vector &fuseOptio
+ //Wait until it is running (busy waiting is simple and doesn't hurt much here)
+ while(!_fuse->running()) {}
+ #ifdef __APPLE__
+- // On Mac OS X, _fuse->running() returns true too early, because osxfuse calls init() when it's not ready yet. Give it a bit time.
++ // On Mac OS X, _fuse->running() returns true too early, because macFUSE calls init() when it's not ready yet. Give it a bit time.
+ std::this_thread::sleep_for(std::chrono::milliseconds(200));
+ #endif
+ }
diff --git a/pkgs/tools/filesystems/curlftpfs/default.nix b/pkgs/tools/filesystems/curlftpfs/default.nix
index 4bfa22838ad..2c5d886c14d 100644
--- a/pkgs/tools/filesystems/curlftpfs/default.nix
+++ b/pkgs/tools/filesystems/curlftpfs/default.nix
@@ -1,4 +1,4 @@
-{lib, stdenv, fetchurl, fuse, curl, pkg-config, glib, zlib}:
+{ lib, stdenv, fetchurl, autoreconfHook, fuse, curl, pkg-config, glib, zlib }:
stdenv.mkDerivation {
name = "curlftpfs-0.9.2";
@@ -6,8 +6,18 @@ stdenv.mkDerivation {
url = "mirror://sourceforge/curlftpfs/curlftpfs-0.9.2.tar.gz";
sha256 = "0n397hmv21jsr1j7zx3m21i7ryscdhkdsyqpvvns12q7qwwlgd2f";
};
- nativeBuildInputs = [ pkg-config ];
- buildInputs = [fuse curl glib zlib];
+ nativeBuildInputs = [ autoreconfHook pkg-config ];
+ buildInputs = [ fuse curl glib zlib ];
+
+ CFLAGS = lib.optionalString stdenv.isDarwin "-D__off_t=off_t";
+
+ postPatch = lib.optionalString stdenv.isDarwin ''
+ # Fix the build on macOS with macFUSE installed. Needs autoreconfHook for
+ # this change to effect
+ substituteInPlace configure.ac --replace \
+ 'export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH' \
+ ""
+ '';
doCheck = false; # fails, doesn't work well too, btw
@@ -15,7 +25,6 @@ stdenv.mkDerivation {
description = "Filesystem for accessing FTP hosts based on FUSE and libcurl";
homepage = "http://curlftpfs.sourceforge.net";
license = licenses.gpl2;
- platforms = platforms.linux;
-
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/darling-dmg/default.nix b/pkgs/tools/filesystems/darling-dmg/default.nix
index b5addf833c1..54d23e770db 100644
--- a/pkgs/tools/filesystems/darling-dmg/default.nix
+++ b/pkgs/tools/filesystems/darling-dmg/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, cmake, fuse, zlib, bzip2, openssl, libxml2, icu, lzfse }:
+{ lib, stdenv, fetchFromGitHub, cmake, fuse, zlib, bzip2, openssl, libxml2, icu, lzfse, libiconv }:
stdenv.mkDerivation rec {
pname = "darling-dmg";
@@ -12,7 +12,8 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake ];
- buildInputs = [ fuse openssl zlib bzip2 libxml2 icu lzfse ];
+ buildInputs = [ fuse openssl zlib bzip2 libxml2 icu lzfse ]
+ ++ lib.optionals stdenv.isDarwin [ libiconv ];
CXXFLAGS = [
"-DCOMPILE_WITH_LZFSE=1"
@@ -22,8 +23,8 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://www.darlinghq.org/";
description = "Darling lets you open macOS dmgs on Linux";
- platforms = platforms.linux;
- license = licenses.gpl3;
+ platforms = platforms.unix;
+ license = licenses.gpl3Only;
maintainers = with maintainers; [ Luflosi ];
};
}
diff --git a/pkgs/tools/filesystems/dislocker/default.nix b/pkgs/tools/filesystems/dislocker/default.nix
index e65e4665bd5..10559985f86 100644
--- a/pkgs/tools/filesystems/dislocker/default.nix
+++ b/pkgs/tools/filesystems/dislocker/default.nix
@@ -1,6 +1,8 @@
{ lib, stdenv
, fetchFromGitHub
+, fetchpatch
, cmake
+, pkg-config
, mbedtls
, fuse
}:
@@ -17,7 +19,20 @@ stdenv.mkDerivation rec {
sha256 = "1ak68s1v5dwh8y2dy5zjybmrh0pnqralmyqzis67y21m87g47h2k";
};
- nativeBuildInputs = [ cmake ];
+ patches = [
+ # This patch
+ # 1. adds support for the latest FUSE on macOS
+ # 2. uses pkg-config to find libfuse instead of searching in predetermined
+ # paths
+ #
+ # https://github.com/Aorimn/dislocker/pull/246
+ (fetchpatch {
+ url = "https://github.com/Aorimn/dislocker/commit/7744f87c75fcfeeb414d0957771042b10fb64e62.diff";
+ sha256 = "0bpyccbbfjsidsrd2q9qylb95nvi8g3glb3jss7xmhywj86bhzr5";
+ })
+ ];
+
+ nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ fuse mbedtls ];
meta = with lib; {
@@ -25,6 +40,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/aorimn/dislocker";
license = licenses.gpl2;
maintainers = with maintainers; [ elitak ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/encfs/default.nix b/pkgs/tools/filesystems/encfs/default.nix
index 2b88dde1531..14701a615c0 100644
--- a/pkgs/tools/filesystems/encfs/default.nix
+++ b/pkgs/tools/filesystems/encfs/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "An encrypted filesystem in user-space via FUSE";
homepage = "https://vgough.github.io/encfs";
- license = with licenses; [ gpl3 lgpl3 ];
- platforms = with platforms; linux;
+ license = with licenses; [ gpl3Plus lgpl3Plus ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/exfat/default.nix b/pkgs/tools/filesystems/exfat/default.nix
index 8cb552cdc70..488ae337a33 100644
--- a/pkgs/tools/filesystems/exfat/default.nix
+++ b/pkgs/tools/filesystems/exfat/default.nix
@@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
inherit (src.meta) homepage;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dywedir ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/gitfs/default.nix b/pkgs/tools/filesystems/gitfs/default.nix
index e4a120264fd..03e76e5fb27 100644
--- a/pkgs/tools/filesystems/gitfs/default.nix
+++ b/pkgs/tools/filesystems/gitfs/default.nix
@@ -14,6 +14,12 @@ python3Packages.buildPythonApplication rec {
patchPhase = ''
# requirement checks are unnecessary at runtime
echo > requirements.txt
+
+ # NOTE: As of gitfs 0.5.2, The pygit2 release that upstream uses is a major
+ # version behind the one packaged in nixpkgs.
+ substituteInPlace gitfs/mounter.py --replace \
+ 'from pygit2.remote import RemoteCallbacks' \
+ 'from pygit2 import RemoteCallbacks'
'';
checkInputs = with python3Packages; [ pytest pytestcov mock ];
@@ -31,7 +37,7 @@ python3Packages.buildPythonApplication rec {
'';
homepage = "https://github.com/PressLabs/gitfs";
license = lib.licenses.asl20;
- platforms = lib.platforms.linux;
+ platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.robbinch ];
};
}
diff --git a/pkgs/tools/filesystems/httpfs/default.nix b/pkgs/tools/filesystems/httpfs/default.nix
index c62703c7b52..f107add29c0 100644
--- a/pkgs/tools/filesystems/httpfs/default.nix
+++ b/pkgs/tools/filesystems/httpfs/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl2Plus;
- platforms = lib.platforms.linux;
+ platforms = lib.platforms.unix;
maintainers = [ ];
};
}
diff --git a/pkgs/tools/filesystems/hubicfuse/default.nix b/pkgs/tools/filesystems/hubicfuse/default.nix
index 4f40bd37abe..0ebc1f23223 100644
--- a/pkgs/tools/filesystems/hubicfuse/default.nix
+++ b/pkgs/tools/filesystems/hubicfuse/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, pkg-config, curl, openssl, fuse, libxml2, json_c, file }:
+{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, curl, openssl, fuse, libxml2, json_c, file }:
stdenv.mkDerivation rec {
pname = "hubicfuse";
@@ -11,6 +11,15 @@ stdenv.mkDerivation rec {
sha256 = "1x988hfffxgvqxh083pv3lj5031fz03sbgiiwrjpaiywfbhm8ffr";
};
+ patches = [
+ # Fix Darwin build
+ # https://github.com/TurboGit/hubicfuse/pull/159
+ (fetchpatch {
+ url = "https://github.com/TurboGit/hubicfuse/commit/b460f40d86bc281a21379158a7534dfb9f283786.patch";
+ sha256 = "0nqvcbrgbc5dms8fkz3brlj40yn48p36drabrnc26gvb3hydh5dl";
+ })
+ ];
+
nativeBuildInputs = [ pkg-config ];
buildInputs = [ curl openssl fuse libxml2 json_c file ];
postInstall = ''
@@ -22,7 +31,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/TurboGit/hubicfuse";
description = "FUSE-based filesystem to access hubic cloud storage";
- platforms = platforms.linux;
+ platforms = platforms.unix;
license = licenses.mit;
maintainers = [ maintainers.jpierre03 ];
};
diff --git a/pkgs/tools/filesystems/ifuse/default.nix b/pkgs/tools/filesystems/ifuse/default.nix
index 4abb50b8bd7..09be33384d5 100644
--- a/pkgs/tools/filesystems/ifuse/default.nix
+++ b/pkgs/tools/filesystems/ifuse/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
devices.
'';
license = licenses.lgpl21Plus;
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = with maintainers; [ infinisil ];
};
}
diff --git a/pkgs/tools/filesystems/jmtpfs/default.nix b/pkgs/tools/filesystems/jmtpfs/default.nix
index a9d3c40aae3..8589abffc77 100644
--- a/pkgs/tools/filesystems/jmtpfs/default.nix
+++ b/pkgs/tools/filesystems/jmtpfs/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, pkg-config, file, fuse, libmtp }:
+{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, file, fuse, libmtp }:
let version = "0.5"; in
stdenv.mkDerivation {
@@ -12,14 +12,22 @@ stdenv.mkDerivation {
owner = "JasonFerrara";
};
+ patches = [
+ # Fix Darwin build (https://github.com/JasonFerrara/jmtpfs/pull/12)
+ (fetchpatch {
+ url = "https://github.com/JasonFerrara/jmtpfs/commit/b89084303477d1bc4dc9a887ba9cdd75221f497d.patch";
+ sha256 = "0s7x3jfk8i86rd5bwhj7mb1lffcdlpj9bd7b41s1768ady91rb29";
+ })
+ ];
+
nativeBuildInputs = [ pkg-config ];
buildInputs = [ file fuse libmtp ];
meta = with lib; {
description = "A FUSE filesystem for MTP devices like Android phones";
homepage = "https://github.com/JasonFerrara/jmtpfs";
- license = licenses.gpl3;
- platforms = platforms.linux;
+ license = licenses.gpl3Only;
+ platforms = platforms.unix;
maintainers = [ maintainers.coconnor ];
};
}
diff --git a/pkgs/tools/filesystems/moosefs/default.nix b/pkgs/tools/filesystems/moosefs/default.nix
index e38b040ec0d..ee0d5eedc92 100644
--- a/pkgs/tools/filesystems/moosefs/default.nix
+++ b/pkgs/tools/filesystems/moosefs/default.nix
@@ -24,14 +24,30 @@ stdenv.mkDerivation rec {
buildInputs =
[ fuse libpcap zlib python ];
+ buildFlags = lib.optionals stdenv.isDarwin [ "CPPFLAGS=-UHAVE_STRUCT_STAT_ST_BIRTHTIME" ];
+
+ # Fix the build on macOS with macFUSE installed
+ postPatch = lib.optionalString stdenv.isDarwin ''
+ substituteInPlace configure --replace \
+ "/usr/local/lib/pkgconfig" "/nonexistent"
+ '';
+
+ preBuild = lib.optional stdenv.isDarwin ''
+ substituteInPlace config.h --replace \
+ "#define HAVE_STRUCT_STAT_ST_BIRTHTIME 1" \
+ "#undef HAVE_STRUCT_STAT_ST_BIRTHTIME"
+ '';
+
postInstall = ''
substituteInPlace $out/sbin/mfscgiserv --replace "datapath=\"$out" "datapath=\""
'';
+ doCheck = true;
+
meta = with lib; {
homepage = "https://moosefs.com";
description = "Open Source, Petabyte, Fault-Tolerant, Highly Performing, Scalable Network Distributed File System";
- platforms = platforms.linux;
+ platforms = platforms.unix;
license = licenses.gpl2;
maintainers = [ maintainers.mfossen ];
};
diff --git a/pkgs/tools/filesystems/mp3fs/default.nix b/pkgs/tools/filesystems/mp3fs/default.nix
index 8b241e9026e..1b80adc843a 100644
--- a/pkgs/tools/filesystems/mp3fs/default.nix
+++ b/pkgs/tools/filesystems/mp3fs/default.nix
@@ -27,6 +27,6 @@ stdenv.mkDerivation rec {
'';
homepage = "https://khenriks.github.io/mp3fs/";
license = licenses.gpl3Plus;
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/mtools/default.nix b/pkgs/tools/filesystems/mtools/default.nix
index 4316e0ee426..8f83f800b67 100644
--- a/pkgs/tools/filesystems/mtools/default.nix
+++ b/pkgs/tools/filesystems/mtools/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "mtools";
- version = "4.0.26";
+ version = "4.0.27";
src = fetchurl {
url = "mirror://gnu/mtools/${pname}-${version}.tar.bz2";
- sha256 = "06pabnjc4r2vv3dzfm6q97g6jbp2k5bhmcdwv2cf25ka8y5ir7sk";
+ sha256 = "1crqi10adwfahj8xyw60lx70hkpcc5g00b5r8277cm2f4kcwi24w";
};
patches = lib.optional stdenv.isDarwin ./UNUSED-darwin.patch;
diff --git a/pkgs/tools/filesystems/romdirfs/default.nix b/pkgs/tools/filesystems/romdirfs/default.nix
index b4fa173706e..0304508d41e 100644
--- a/pkgs/tools/filesystems/romdirfs/default.nix
+++ b/pkgs/tools/filesystems/romdirfs/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
description = "FUSE for access Playstation 2 IOP IOPRP images and BIOS dumps";
homepage = "https://github.com/mlafeldt/romdirfs";
license = licenses.gpl3;
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/tools/filesystems/s3backer/default.nix b/pkgs/tools/filesystems/s3backer/default.nix
index 0a05a683adb..b196b294839 100644
--- a/pkgs/tools/filesystems/s3backer/default.nix
+++ b/pkgs/tools/filesystems/s3backer/default.nix
@@ -16,6 +16,12 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ fuse curl expat ];
+ # AC_CHECK_DECLS doesn't work with clang
+ postPatch = lib.optionalString stdenv.cc.isClang ''
+ substituteInPlace configure.ac --replace \
+ 'AC_CHECK_DECLS(fdatasync)' ""
+ '';
+
autoreconfPhase = ''
patchShebangs ./autogen.sh
./autogen.sh
@@ -25,6 +31,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/archiecobbs/s3backer";
description = "FUSE-based single file backing store via Amazon S3";
license = licenses.gpl2Plus;
- platforms = with platforms; linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/securefs/add-macfuse-support.patch b/pkgs/tools/filesystems/securefs/add-macfuse-support.patch
new file mode 100644
index 00000000000..217f637ff9d
--- /dev/null
+++ b/pkgs/tools/filesystems/securefs/add-macfuse-support.patch
@@ -0,0 +1,188 @@
+From 8c65c2219976c02a68e27c28156ec0c4c02857e0 Mon Sep 17 00:00:00 2001
+From: midchildan
+Date: Sun, 28 Mar 2021 23:39:59 +0900
+Subject: [PATCH] Support the latest FUSE on macOS
+
+This drops osxfuse support in favor of macFUSE. macFUSE is a newer
+version of osxfuse that supports the latest release of macOS, and is a
+rebranded version of the same project.
+---
+ CMakeLists.txt | 8 ++----
+ LICENSE.md | 58 ++++++++++++++++++++------------------
+ README.md | 2 +-
+ sources/commands.cpp | 6 ----
+ 4 files changed, 33 insertions(+), 41 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 7b5e57d..c176554 100755
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -18,12 +18,8 @@ git_describe(GIT_VERSION --tags)
+ configure_file(${CMAKE_SOURCE_DIR}/sources/git-version.cpp.in ${CMAKE_BINARY_DIR}/git-version.cpp)
+
+ if (UNIX)
+- find_path(FUSE_INCLUDE_DIR fuse.h PATHS /usr/local/include PATH_SUFFIXES osxfuse)
+- if (APPLE)
+- find_library(FUSE_LIBRARIES osxfuse PATHS /usr/local/lib)
+- else()
+- find_library(FUSE_LIBRARIES fuse PATHS /usr/local/lib)
+- endif()
++ find_path(FUSE_INCLUDE_DIR fuse.h PATHS /usr/local/include)
++ find_library(FUSE_LIBRARIES fuse PATHS /usr/local/lib)
+ include_directories(${FUSE_INCLUDE_DIR})
+ link_libraries(${FUSE_LIBRARIES})
+ add_compile_options(-Wall -Wextra -Wno-unknown-pragmas)
+diff --git a/LICENSE.md b/LICENSE.md
+index a8f920c..b134532 100644
+--- a/LICENSE.md
++++ b/LICENSE.md
+@@ -758,13 +758,11 @@ Public License instead of this License.
+
+ ------------------------------------------------------------------------------
+
+-# [osxfuse] (https://github.com/osxfuse/osxfuse)
++# [macFUSE] (https://github.com/osxfuse/osxfuse)
+
+-FUSE for macOS is a software developed by the osxfuse project and is covered
+-under the following BSD-style license:
++macFUSE is covered under the following license:
+
+- Copyright (c) 2011-2016 Benjamin Fleischer
+- Copyright (c) 2011-2012 Erik Larsson
++ Copyright (c) 2011-2021 Benjamin Fleischer
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+@@ -775,9 +773,13 @@ under the following BSD-style license:
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+- 3. Neither the name of osxfuse nor the names of its contributors may be used
+- to endorse or promote products derived from this software without specific
+- prior written permission.
++ 3. Neither the name of the copyright holder nor the names of its contributors
++ may be used to endorse or promote products derived from this software
++ without specific prior written permission.
++ 4. Redistributions in binary form, bundled with commercial software, are not
++ allowed without specific prior written permission. This includes the
++ automated download or installation or both of the binary form in the
++ context of commercial software.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+@@ -791,9 +793,9 @@ under the following BSD-style license:
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+
+-FUSE for macOS is a fork of MacFUSE. MacFUSE has been developed by Google Inc..
+-Additional information and the original source of MacFUSE are available on
+-http://code.google.com/p/macfuse/. MacFUSE is covered under the following
++macFUSE is a fork of the legacy Google MacFUSE software. Additional information
++and the original source code of Google MacFUSE are available on
++http://code.google.com/p/macfuse/. Google MacFUSE is covered under the following
+ BSD-style license:
+
+ Copyright (c) 2007—2009 Google Inc.
+@@ -830,9 +832,9 @@ BSD-style license:
+ Portions of this package were derived from code developed by other authors.
+ Please read further for specific details.
+
+-* Unless otherwise noted, parts of the FUSE for macOS kernel extension contain
+- code derived from the FreeBSD version of FUSE, which is covered under the
+- following BSD-style license:
++* Unless otherwise noted, parts of the macFUSE kernel extension contain code
++ derived from the FreeBSD version of FUSE, which is covered under the following
++ BSD-style license:
+
+ Copyright (C) 2005 Csaba Henk. All rights reserved.
+
+@@ -856,12 +858,13 @@ Please read further for specific details.
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+-* Parts of the FUSE for macOS kernel extension contain code derived from Tuxera
+- Inc.'s "rebel" branch. The original source of the "rebel" branch is available
+- on https://github.com/tuxera. These modifications are covered under the
+- following BSD-style license:
++* Parts of the macFUSE kernel extension contain code derived from Tuxera's
++ "rebel" branch. The original source code of the "rebel" branch is available on
++ https://github.com/tuxera. These modifications are covered under the following
++ BSD-style license:
+
+ Copyright (c) 2010 Tuxera Inc.
++ Copyright (c) 2011-2012 Erik Larsson
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+@@ -888,9 +891,9 @@ Please read further for specific details.
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+
+-* Parts of FUSE for macOS contain code derived from Fuse4X. The original source
+- of Fuse4X is available on https://github.com/fuse4x. Fuse4X is covered under
+- the following BSD-style license:
++* Parts of macFUSE contain code derived from Fuse4X. The original source code of
++ Fuse4X is available on https://github.com/fuse4x. Fuse4X is covered under the
++ following BSD-style license:
+
+ Copyright (c) 2011 Anatol Pomozov
+ All rights reserved.
+@@ -916,21 +919,20 @@ Please read further for specific details.
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+
+-* Parts of the mount_osxfuse command-line program are covered under the Apple
++* Parts of the mount_macfuse command-line program are covered under the Apple
+ Public Source License (APSL). You can read the APSL at:
+
+ http://www.opensource.apple.com/license/apsl/
+
+-* fuse_kernel.h is an unmodified copy of the interface header from the Linux
++* fuse_kernel.h is a modified copy of the interface header from the Linux
+ FUSE distribution (https://github.com/libfuse/libfuse). fuse_kernel.h can be
+ redistributed either under the GPL or under the BSD license. It is being
+ redistributed here under the BSD license.
+
+-* fuse_nodehash.c is a slightly modified version of HashNode.c from an
+- Apple Developer Technical Support (DTS) sample code example. The original
+- source, which is available on
+- http://developer.apple.com/library/mac/#samplecode/MFSLives/, has the
+- following disclaimer:
++* fuse_nodehash.c is a modified version of HashNode.c from an Apple Developer
++ Technical Support (DTS) sample code example. The original source, which is
++ available on http://developer.apple.com/library/mac/#samplecode/MFSLives/,
++ has the following disclaimer:
+
+ Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple
+ Computer, Inc. Apple") in consideration of your agreement to the following
+diff --git a/README.md b/README.md
+index 9085e96..6fe3592 100644
+--- a/README.md
++++ b/README.md
+@@ -28,7 +28,7 @@ There are already many encrypting filesystem in widespread use. Some notable one
+
+ ### macOS
+
+-Install with [Homebrew](https://brew.sh). [osxfuse](https://osxfuse.github.io) has to be installed beforehand.
++Install with [Homebrew](https://brew.sh). [macFUSE](https://osxfuse.github.io) has to be installed beforehand.
+ ```
+ brew install securefs
+ ```
+diff --git a/sources/commands.cpp b/sources/commands.cpp
+index a371212..862602b 100644
+--- a/sources/commands.cpp
++++ b/sources/commands.cpp
+@@ -1252,12 +1252,6 @@ class VersionCommand : public CommandBase
+ printf("WinFsp %u.%u\n", vn >> 16, vn & 0xFFFFu);
+ }
+ }
+-#elif defined(__APPLE__)
+- typedef const char* version_function(void);
+- auto osx_version_func
+- = reinterpret_cast(::dlsym(RTLD_DEFAULT, "osxfuse_version"));
+- if (osx_version_func)
+- printf("osxfuse %s\n", osx_version_func());
+ #else
+ typedef int version_function(void);
+ auto fuse_version_func
+
diff --git a/pkgs/tools/filesystems/securefs/default.nix b/pkgs/tools/filesystems/securefs/default.nix
index 235d8a53fe7..44e547b01c2 100644
--- a/pkgs/tools/filesystems/securefs/default.nix
+++ b/pkgs/tools/filesystems/securefs/default.nix
@@ -14,6 +14,12 @@ stdenv.mkDerivation rec {
fetchSubmodules = true;
};
+ patches = [
+ # Make it build with macFUSE
+ # Backported from https://github.com/netheril96/securefs/pull/114
+ ./add-macfuse-support.patch
+ ];
+
nativeBuildInputs = [ cmake ];
buildInputs = [ fuse ];
@@ -31,6 +37,6 @@ stdenv.mkDerivation rec {
contents.
'';
license = with licenses; [ bsd2 mit ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/squashfs-tools-ng/default.nix b/pkgs/tools/filesystems/squashfs-tools-ng/default.nix
index bb7df1aa940..265495389b0 100644
--- a/pkgs/tools/filesystems/squashfs-tools-ng/default.nix
+++ b/pkgs/tools/filesystems/squashfs-tools-ng/default.nix
@@ -19,6 +19,17 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
maintainers = with maintainers; [ qyliss ];
platforms = platforms.unix;
+
+ # TODO: Remove once nixpkgs uses newer SDKs that supports '*at' functions.
+ # Probably macOS SDK 10.13 or later. Check the current version in
+ # ../../../../os-specific/darwin/apple-sdk/default.nix
+ #
+ # From the build logs:
+ #
+ # > Undefined symbols for architecture x86_64:
+ # > "_utimensat", referenced from:
+ # > _set_attribs in rdsquashfs-restore_fstree.o
+ # > ld: symbol(s) not found for architecture x86_64
broken = stdenv.isDarwin;
};
}
diff --git a/pkgs/tools/filesystems/squashfuse/default.nix b/pkgs/tools/filesystems/squashfuse/default.nix
index a2e930f9155..14a7f602430 100644
--- a/pkgs/tools/filesystems/squashfuse/default.nix
+++ b/pkgs/tools/filesystems/squashfuse/default.nix
@@ -8,10 +8,6 @@ stdenv.mkDerivation rec {
pname = "squashfuse";
version = "0.1.103";
- # platforms.darwin should be supported : see PLATFORMS file in src.
- # we could use a nix fuseProvider, and let the derivation choose the OS
- # specific implementation.
-
src = fetchFromGitHub {
owner = "vasi";
repo = pname;
@@ -26,7 +22,7 @@ stdenv.mkDerivation rec {
description = "FUSE filesystem to mount squashfs archives";
homepage = "https://github.com/vasi/squashfuse";
maintainers = [ ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
license = "BSD-2-Clause";
};
}
diff --git a/pkgs/tools/filesystems/svnfs/default.nix b/pkgs/tools/filesystems/svnfs/default.nix
index bef4d6b5cea..a192032aa93 100644
--- a/pkgs/tools/filesystems/svnfs/default.nix
+++ b/pkgs/tools/filesystems/svnfs/default.nix
@@ -1,14 +1,26 @@
-{ lib, stdenv, fetchurl, automake, autoconf, subversion, fuse, apr, perl }:
+{ lib, stdenv, fetchurl, autoreconfHook, subversion, fuse, apr, perl }:
-stdenv.mkDerivation {
- name = "svnfs-0.4";
+stdenv.mkDerivation rec {
+ pname = "svnfs";
+ version = "0.4";
src = fetchurl {
- url = "http://www.jmadden.eu/wp-content/uploads/svnfs/svnfs-0.4.tgz";
+ url = "http://www.jmadden.eu/wp-content/uploads/svnfs/svnfs-${version}.tgz";
sha256 = "1lrzjr0812lrnkkwk60bws9k1hq2iibphm0nhqyv26axdsygkfky";
};
- buildInputs = [automake autoconf subversion fuse apr perl];
+ nativeBuildInputs = [ autoreconfHook ];
+ buildInputs = [ subversion fuse apr perl ];
+
+ # autoconf's AC_CHECK_HEADERS and AC_CHECK_LIBS fail to detect libfuse on
+ # Darwin if FUSE_USE_VERSION isn't set at configure time.
+ #
+ # NOTE: Make sure the value of FUSE_USE_VERSION specified here matches the
+ # actual version used in the source code:
+ #
+ # $ tar xf "$(nix-build -A svnfs.src)"
+ # $ grep -R FUSE_USE_VERSION
+ configureFlags = lib.optionals stdenv.isDarwin [ "CFLAGS=-DFUSE_USE_VERSION=25" ];
# why is this required?
preConfigure=''
@@ -21,8 +33,8 @@ stdenv.mkDerivation {
meta = {
description = "FUSE filesystem for accessing Subversion repositories";
homepage = "http://www.jmadden.eu/index.php/svnfs/";
- license = lib.licenses.gpl2;
+ license = lib.licenses.gpl2Only;
maintainers = [lib.maintainers.marcweber];
- platforms = lib.platforms.linux;
+ platforms = lib.platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/tmsu/default.nix b/pkgs/tools/filesystems/tmsu/default.nix
index 1eac3e03ec9..aa3057202c7 100644
--- a/pkgs/tools/filesystems/tmsu/default.nix
+++ b/pkgs/tools/filesystems/tmsu/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildGoPackage, fetchFromGitHub, fuse, installShellFiles }:
+{ lib, buildGoPackage, fetchFromGitHub, installShellFiles }:
buildGoPackage rec {
pname = "tmsu";
@@ -14,7 +14,6 @@ buildGoPackage rec {
goDeps = ./deps.nix;
- buildInputs = [ fuse ];
nativeBuildInputs = [ installShellFiles ];
preBuild = ''
@@ -24,7 +23,10 @@ buildGoPackage rec {
'';
postInstall = ''
- mv $out/bin/{TMSU,tmsu}
+ # can't do "mv TMSU tmsu" on case-insensitive filesystems
+ mv $out/bin/{TMSU,tmsu.tmp}
+ mv $out/bin/{tmsu.tmp,tmsu}
+
cp src/misc/bin/* $out/bin/
installManPage src/misc/man/tmsu.1
installShellCompletion --zsh src/misc/zsh/_tmsu
@@ -34,7 +36,7 @@ buildGoPackage rec {
homepage = "http://www.tmsu.org";
description = "A tool for tagging your files using a virtual filesystem";
maintainers = with maintainers; [ pSub ];
- license = licenses.gpl3;
- platforms = platforms.linux;
+ license = licenses.gpl3Plus;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/tmsu/deps.nix b/pkgs/tools/filesystems/tmsu/deps.nix
index 90e64b434c4..7dee6324b67 100644
--- a/pkgs/tools/filesystems/tmsu/deps.nix
+++ b/pkgs/tools/filesystems/tmsu/deps.nix
@@ -5,8 +5,8 @@
fetch = {
type = "git";
url = "https://github.com/hanwen/go-fuse";
- rev = "730713460d4fc41afdc2533bd37ff60c94c0c586";
- sha256 = "1y44d08fxyis99s6jxdr6dbbw5kv3wb8lkhq3xmr886i4w41lz03";
+ rev = "0f728ba15b38579efefc3dc47821882ca18ffea7";
+ sha256 = "05ymw2pp58avf19wvi0cgdzqf3d88k1jdf6ldj4hmhbkm3waqf7l";
};
}
{
diff --git a/pkgs/tools/filesystems/wdfs/default.nix b/pkgs/tools/filesystems/wdfs/default.nix
index 98377365738..29d8b4c2887 100644
--- a/pkgs/tools/filesystems/wdfs/default.nix
+++ b/pkgs/tools/filesystems/wdfs/default.nix
@@ -1,18 +1,27 @@
-{lib, stdenv, fetchurl, glib, neon, fuse, pkg-config}:
+{lib, stdenv, fetchurl, glib, neon, fuse, autoreconfHook, pkg-config}:
+
+stdenv.mkDerivation rec {
+ pname = "wdfs-fuse";
+ version = "1.4.2";
-stdenv.mkDerivation {
- name = "wdfs-fuse-1.4.2";
src = fetchurl {
- url = "http://noedler.de/projekte/wdfs/wdfs-1.4.2.tar.gz";
+ url = "http://noedler.de/projekte/wdfs/wdfs-${version}.tar.gz";
sha256 = "fcf2e1584568b07c7f3683a983a9be26fae6534b8109e09167e5dff9114ba2e5";
};
- nativeBuildInputs = [ pkg-config ];
+ nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [fuse glib neon];
+ postPatch = lib.optionalString stdenv.isDarwin ''
+ # Fix the build on macOS with macFUSE installed. Needs autoreconfHook to
+ # take effect.
+ substituteInPlace configure.ac --replace \
+ 'export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH' ""
+ '';
+
meta = with lib; {
homepage = "http://noedler.de/projekte/wdfs/";
- license = licenses.gpl2;
+ license = licenses.gpl2Plus;
description = "User-space filesystem that allows to mount a webdav share";
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/graphics/agi/default.nix b/pkgs/tools/graphics/agi/default.nix
new file mode 100644
index 00000000000..aca53c25461
--- /dev/null
+++ b/pkgs/tools/graphics/agi/default.nix
@@ -0,0 +1,69 @@
+{ lib
+, stdenv
+, fetchzip
+, autoPatchelfHook
+, makeWrapper
+, makeDesktopItem
+, copyDesktopItems
+, wrapGAppsHook
+, gobject-introspection
+, gdk-pixbuf
+, jre
+, androidenv
+}:
+
+stdenv.mkDerivation rec {
+ pname = "agi";
+ version = "1.1.0-dev-20210421";
+
+ src = fetchzip {
+ url = "https://github.com/google/agi-dev-releases/releases/download/v${version}/agi-${version}-linux.zip";
+ sha256 = "sha256-2IgGvQy6omDEwrzQDfa/OLi3f+Q2zarvJVGk6ZhsjSA=";
+ };
+
+ nativeBuildInputs = [
+ autoPatchelfHook
+ makeWrapper
+ wrapGAppsHook
+ gdk-pixbuf
+ gobject-introspection
+ copyDesktopItems
+ ];
+
+ buildInputs = [
+ stdenv.cc.cc.lib
+ ];
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/{bin,lib}
+ cp ./{agi,gapis,gapir,gapit,device-info} $out/bin
+ cp lib/gapic.jar $out/lib
+ wrapProgram $out/bin/agi \
+ --add-flags "--vm ${jre}/bin/java" \
+ --add-flags "--jar $out/lib/gapic.jar" \
+ --add-flags "--adb ${androidenv.androidPkgs_9_0.platform-tools}/bin/adb"
+ for i in 16 32 48 64 96 128 256 512 1024; do
+ install -D ${src}/icon.png $out/share/icons/hicolor/''${i}x$i/apps/agi.png
+ done
+ runHook postInstall
+ '';
+
+ desktopItems = [(makeDesktopItem {
+ name = "agi";
+ desktopName = "Android GPU Inspector";
+ exec = "$out/bin/agi";
+ icon = "agi";
+ type = "Application";
+ categories = "Development;Debugger;Graphics;3DGraphics";
+ terminal = "false";
+ })];
+
+ meta = with lib; {
+ homepage = "https://github.com/google/agi/";
+ description = "Android GPU Inspector";
+ license = licenses.asl20;
+ platforms = [ "x86_64-linux" ];
+ maintainers = [ maintainers.ivar ];
+ };
+}
diff --git a/pkgs/tools/graphics/astc-encoder/default.nix b/pkgs/tools/graphics/astc-encoder/default.nix
new file mode 100644
index 00000000000..859d6f1eee0
--- /dev/null
+++ b/pkgs/tools/graphics/astc-encoder/default.nix
@@ -0,0 +1,71 @@
+{ lib
+, gccStdenv
+, fetchFromGitHub
+, cmake
+, simdExtensions ? null
+}:
+
+with rec {
+ # SIMD instruction sets to compile for. If none are specified by the user,
+ # an appropriate one is selected based on the detected host system
+ isas = with gccStdenv.hostPlatform;
+ if simdExtensions != null then lib.toList simdExtensions
+ else if avx2Support then [ "AVX2" ]
+ else if sse4_1Support then [ "SSE41" ]
+ else if isx86_64 then [ "SSE2" ]
+ else if isAarch64 then [ "NEON" ]
+ else [ "NONE" ];
+
+ archFlags = lib.optionals gccStdenv.hostPlatform.isAarch64 [ "-DARCH=aarch64" ];
+
+ # CMake Build flags for the selected ISAs. For a list of flags, see
+ # https://github.com/ARM-software/astc-encoder/blob/main/Docs/Building.md
+ isaFlags = map ( isa: "-DISA_${isa}=ON" ) isas;
+
+ # The suffix of the binary to link as 'astcenc'
+ mainBinary = builtins.replaceStrings
+ [ "AVX2" "SSE41" "SSE2" "NEON" "NONE" ]
+ [ "avx2" "sse4.1" "sse2" "neon" "none" ]
+ ( builtins.head isas );
+};
+
+gccStdenv.mkDerivation rec {
+ pname = "astc-encoder";
+ version = "2.5";
+
+ src = fetchFromGitHub {
+ owner = "ARM-software";
+ repo = "astc-encoder";
+ rev = version;
+ sha256 = "0ff5jh40w942dz7hmgvznmpa9yhr1j4i9qqj5wy6icm2jb9j4pak";
+ };
+
+ nativeBuildInputs = [ cmake ];
+
+ cmakeFlags = isaFlags ++ archFlags ++ [
+ "-DCMAKE_BUILD_TYPE=Release"
+ ];
+
+ # Link binaries into environment and provide 'astcenc' link
+ postInstall = ''
+ mv $out/astcenc $out/bin
+ ln -s $out/bin/astcenc-${mainBinary} $out/bin/astcenc
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/ARM-software/astc-encoder";
+ description = "An encoder for the ASTC texture compression format";
+ longDescription = ''
+ The Adaptive Scalable Texture Compression (ASTC) format is
+ widely supported by mobile and desktop graphics hardware and
+ provides better quality at a given bitrate compared to ETC2.
+
+ This program supports both compression and decompression in LDR
+ and HDR mode and can read various image formats. Run `astcenc
+ -help` to see all the options.
+ '';
+ platforms = platforms.unix;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ dasisdormax ];
+ };
+}
diff --git a/pkgs/tools/graphics/grim/default.nix b/pkgs/tools/graphics/grim/default.nix
index 1dddd7959b0..f678b2bcae9 100644
--- a/pkgs/tools/graphics/grim/default.nix
+++ b/pkgs/tools/graphics/grim/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "grim";
- version = "1.3.1";
+ version = "1.3.2";
src = fetchFromGitHub {
owner = "emersion";
repo = pname;
rev = "v${version}";
- sha256 = "0fjmjq0ws9rlblkcqxxw2lv7zvvyi618jqzlnz5z9zb477jwdfib";
+ sha256 = "sha256-71dmYENfPX8YHcTlR2F67EheoewicePMKm9/wPbmj9A=";
};
nativeBuildInputs = [
diff --git a/pkgs/tools/graphics/jhead/default.nix b/pkgs/tools/graphics/jhead/default.nix
index ab5fd4f5401..16e57252275 100644
--- a/pkgs/tools/graphics/jhead/default.nix
+++ b/pkgs/tools/graphics/jhead/default.nix
@@ -1,31 +1,20 @@
-{ lib, stdenv, fetchurl, fetchpatch, libjpeg }:
+{ lib, stdenv, fetchFromGitHub, libjpeg }:
stdenv.mkDerivation rec {
pname = "jhead";
- version = "3.04";
+ version = "3.06.0.1";
- src = fetchurl {
- url = "http://www.sentex.net/~mwandel/jhead/${pname}-${version}.tar.gz";
- sha256 = "1j831bqw1qpkbchdriwcy3sgzvbagaj45wlc124fs9bc9z7vp2gg";
+ src = fetchFromGitHub {
+ owner = "Matthias-Wandel";
+ repo = "jhead";
+ rev = version;
+ sha256 = "0zgh36486cpcnf7xg6dwf7rhz2h4gpayqvdk8hmrx6y418b2pfyf";
};
- patches = [
- (fetchpatch {
- url = "https://sources.debian.org/data/main/j/jhead/1:3.04-2/debian/patches/01_gpsinfo.c";
- sha256 = "0r8hdbfrdxip4dwz5wqsv47a29j33cx7w5zx4jdhp5l1ihg003lz";
- })
- ];
-
buildInputs = [ libjpeg ];
makeFlags = [ "CPPFLAGS=" "CFLAGS=-O3" "LDFLAGS=" ];
- patchPhase = ''
- sed -i '/dpkg-buildflags/d' makefile
- substituteInPlace jhead.c \
- --replace "jpegtran -trim" "${libjpeg.bin}/bin/jpegtran -trim"
- '';
-
installPhase = ''
mkdir -p \
$out/bin \
@@ -43,10 +32,5 @@ stdenv.mkDerivation rec {
license = licenses.publicDomain;
maintainers = with maintainers; [ rycee ];
platforms = platforms.all;
- # https://github.com/NixOS/nixpkgs/issues/90828
- knownVulnerabilities = [
- "CVE-2020-6624"
- "CVE-2020-6625"
- ];
};
}
diff --git a/pkgs/tools/inputmethods/kime/default.nix b/pkgs/tools/inputmethods/kime/default.nix
new file mode 100644
index 00000000000..35ed99b5a42
--- /dev/null
+++ b/pkgs/tools/inputmethods/kime/default.nix
@@ -0,0 +1,113 @@
+{ lib, stdenv, rustPlatform, rustc, cargo, fetchFromGitHub, pkg-config, cmake, extra-cmake-modules, llvmPackages
+, withWayland ? true
+, withIndicator ? true, dbus, libdbusmenu
+, withXim ? true, xorg, cairo
+, withGtk2 ? true, gtk2
+, withGtk3 ? true, gtk3
+, withQt5 ? true, qt5
+}:
+
+let
+ cmake_args = lib.optionals withGtk2 ["-DENABLE_GTK2=ON"]
+ ++ lib.optionals withGtk3 ["-DENABLE_GTK3=ON"]
+ ++ lib.optionals withQt5 ["-DENABLE_QT5=ON"];
+
+ optFlag = w: (if w then "1" else "0");
+in
+stdenv.mkDerivation rec {
+ pname = "kime";
+ version = "2.5.2";
+
+ src = fetchFromGitHub {
+ owner = "Riey";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "10zd4yrqxzxf4nj3b5bsblcmlbqssxqq9pac0misa1g61jdbszj8";
+ };
+
+ cargoDeps = rustPlatform.fetchCargoTarball {
+ inherit src;
+ sha256 = "1bimi7020m7v287bh7via7zm9m7y13d13kqpd772xmpdbwrj8nrl";
+ };
+
+ # Replace autostart path
+ postPatch = ''
+ substituteInPlace res/kime.desktop --replace "/usr/bin/kime" "$out/bin/kime"
+ '';
+
+ dontUseCmakeConfigure = true;
+ dontWrapQtApps = true;
+ buildPhase = ''
+ runHook preBuild
+ export KIME_BUILD_CHECK=1
+ export KIME_BUILD_INDICATOR=${optFlag withIndicator}
+ export KIME_BUILD_XIM=${optFlag withXim}
+ export KIME_BUILD_WAYLAND=${optFlag withWayland}
+ export KIME_BUILD_KIME=1
+ export KIME_CARGO_ARGS="-j$NIX_BUILD_CORES --frozen"
+ export KIME_MAKE_ARGS="-j$NIX_BUILD_CORES"
+ export KIME_CMAKE_ARGS="${lib.concatStringsSep " " cmake_args}"
+ bash scripts/build.sh -r
+ runHook postBuild
+ '';
+
+ doCheck = true;
+ checkPhase = ''
+ runHook preCheck
+ cargo test --release --frozen
+ runHook postCheck
+ '';
+
+ installPhase = ''
+ runHook preInstall
+ export KIME_BIN_DIR=bin
+ export KIME_INSTALL_HEADER=1
+ export KIME_INSTALL_DOC=1
+ export KIME_INCLUDE_DIR=include
+ export KIME_DOC_DIR=share/doc/kime
+ export KIME_ICON_DIR=share/icons
+ export KIME_LIB_DIR=lib
+ export KIME_QT5_DIR=lib/qt-${qt5.qtbase.version}
+ bash scripts/install.sh "$out"
+ runHook postInstall
+ '';
+
+ doInstallCheck = true;
+ installCheckPhase = ''
+ runHook preInstallCheck
+ # Don't pipe output to head directly it will cause broken pipe error https://github.com/rust-lang/rust/issues/46016
+ kimeVersion=$(echo "$($out/bin/kime --version)" | head -n1)
+ echo "'kime --version | head -n1' returns: $kimeVersion"
+ [[ "$kimeVersion" == "kime ${version}" ]]
+ runHook postInstallCheck
+ '';
+
+ buildInputs = lib.optionals withIndicator [ dbus libdbusmenu ]
+ ++ lib.optionals withXim [ xorg.libxcb cairo ]
+ ++ lib.optionals withGtk2 [ gtk2 ]
+ ++ lib.optionals withGtk3 [ gtk3 ]
+ ++ lib.optionals withQt5 [ qt5.qtbase ];
+
+ nativeBuildInputs = [
+ pkg-config
+ llvmPackages.clang
+ llvmPackages.libclang
+ llvmPackages.bintools
+ cmake
+ extra-cmake-modules
+ rustPlatform.cargoSetupHook
+ rustc
+ cargo
+ ];
+
+ RUST_BACKTRACE = 1;
+ LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
+
+ meta = with lib; {
+ homepage = "https://github.com/Riey/kime";
+ description = "Korean IME";
+ license = licenses.gpl3Plus;
+ maintainers = [ maintainers.riey ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/tools/misc/bat-extras/default.nix b/pkgs/tools/misc/bat-extras/default.nix
index 323099f02c6..4fb09f4d8dc 100644
--- a/pkgs/tools/misc/bat-extras/default.nix
+++ b/pkgs/tools/misc/bat-extras/default.nix
@@ -21,15 +21,13 @@ let
# This includes the complete source so the per-script derivations can run the tests.
core = stdenv.mkDerivation rec {
pname = "bat-extras";
- # there hasn't been a release since 2020-05-01 but there are important bugfixes
- # to the test suite so we'll pull the latest commit as of 2020-06-17.
- version = "20200515-dev"; # latest commit was dated 2020-05-15
+ version = "2021.04.06";
src = fetchFromGitHub {
owner = "eth-p";
repo = pname;
- rev = "3029b6749f61f7514e9eef30e035cfab0e31eb1d";
- sha256 = "08mb94k2n182ql97c5s5j1v7np25ivynn5g0418whrx11ra41wr7";
+ rev = "v${version}";
+ sha256 = "sha256-MphI2n+oHZrw8bPohNGeGdST5LS1c6s/rKqtpcR9cLo=";
fetchSubmodules = true;
};
diff --git a/pkgs/tools/misc/betterdiscord-installer/default.nix b/pkgs/tools/misc/betterdiscord-installer/default.nix
index d74a914ba65..f1aefd9b758 100644
--- a/pkgs/tools/misc/betterdiscord-installer/default.nix
+++ b/pkgs/tools/misc/betterdiscord-installer/default.nix
@@ -18,7 +18,7 @@ in appimageTools.wrapType2 {
install -m 444 -D ${appimageContents}/betterdiscord.desktop -t $out/share/applications
substituteInPlace $out/share/applications/betterdiscord.desktop \
- --replace "Exec=AppRun" "Exec=$out/bin/${pname}"
+ --replace 'Exec=AppRun' 'Exec=${pname}'
cp -r ${appimageContents}/usr/share/icons $out/share
'';
diff --git a/pkgs/tools/misc/broot/default.nix b/pkgs/tools/misc/broot/default.nix
index a3299b42744..90039d17802 100644
--- a/pkgs/tools/misc/broot/default.nix
+++ b/pkgs/tools/misc/broot/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ lib
+, stdenv
, rustPlatform
, fetchCrate
, installShellFiles
@@ -11,14 +12,14 @@
rustPlatform.buildRustPackage rec {
pname = "broot";
- version = "1.2.0";
+ version = "1.2.9";
src = fetchCrate {
inherit pname version;
- sha256 = "1mqaynrqaas82f5957lx31x80v74zwmwmjxxlbywajb61vh00d38";
+ sha256 = "sha256-5tM8ywLBPPjCKEfXIfUZ5aF4t9YpYA3tzERxC1NEsso=";
};
- cargoHash = "sha256-ffFS1myFjoQ6768D4zUytN6F9paWeJJFPFugCrfh4iU=";
+ cargoHash = "sha256-P5ukwtRUpIJIqJjwTXIB2xRnpyLkzMeBMHmUz4Ery3s=";
nativeBuildInputs = [
makeWrapper
diff --git a/pkgs/tools/misc/chezmoi/default.nix b/pkgs/tools/misc/chezmoi/default.nix
index f6c6b1aecc5..cec900189c4 100644
--- a/pkgs/tools/misc/chezmoi/default.nix
+++ b/pkgs/tools/misc/chezmoi/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "chezmoi";
- version = "2.0.9";
+ version = "2.0.10";
src = fetchFromGitHub {
owner = "twpayne";
repo = "chezmoi";
rev = "v${version}";
- sha256 = "sha256-yDd9u9cwC+bjB0ZQW0EgEDaHmWwkUprwXIiVrOVP2nk=";
+ sha256 = "sha256-WVG4rww9Wd1H6zw5lRBErX9VwnA21dhvith9BQFYqxw=";
};
- vendorSha256 = "sha256-c6YIWpC8sQA/gbgD2vuuFvwccEE00aUrj6gcPpJsn0k=";
+ vendorSha256 = "sha256-khYcNP3xAXeQR9vaghkGq8x6KB1k5hLEcE7Zx8H+CfA=";
doCheck = false;
diff --git a/pkgs/tools/misc/ckb-next/default.nix b/pkgs/tools/misc/ckb-next/default.nix
index 9c6909d445d..81e51bbbf20 100644
--- a/pkgs/tools/misc/ckb-next/default.nix
+++ b/pkgs/tools/misc/ckb-next/default.nix
@@ -1,21 +1,25 @@
{ lib, mkDerivation, fetchFromGitHub, substituteAll, udev
-, pkg-config, qtbase, cmake, zlib, kmod }:
+, pkg-config, qtbase, cmake, zlib, kmod, libXdmcp, qttools, qtx11extras, libdbusmenu }:
mkDerivation rec {
- version = "0.4.2";
+ version = "0.4.4";
pname = "ckb-next";
src = fetchFromGitHub {
owner = "ckb-next";
repo = "ckb-next";
rev = "v${version}";
- sha256 = "1mkx1psw5xnpscdfik1kpzsnfhhkn3571i7acr9gxyjr27sckplc";
+ sha256 = "1fgvh2hsrm8vqbqq9g45skhyyrhhka4d8ngmyldkldak1fgmrvb7";
};
buildInputs = [
udev
qtbase
zlib
+ libXdmcp
+ qttools
+ qtx11extras
+ libdbusmenu
];
nativeBuildInputs = [
diff --git a/pkgs/tools/misc/ckb-next/install-dirs.patch b/pkgs/tools/misc/ckb-next/install-dirs.patch
index 0f113d71aa3..05a661c7ffc 100644
--- a/pkgs/tools/misc/ckb-next/install-dirs.patch
+++ b/pkgs/tools/misc/ckb-next/install-dirs.patch
@@ -1,12 +1,12 @@
diff --git a/src/daemon/CMakeLists.txt b/src/daemon/CMakeLists.txt
-index 2fc10a8..22dbd14 100644
+index a04b80c..2969b3b 100644
--- a/src/daemon/CMakeLists.txt
+++ b/src/daemon/CMakeLists.txt
-@@ -421,7 +421,7 @@ if ("${CKB_NEXT_INIT_SYSTEM}" STREQUAL "launchd")
+@@ -437,7 +437,7 @@ if ("${CKB_NEXT_INIT_SYSTEM}" STREQUAL "launchd")
elseif ("${CKB_NEXT_INIT_SYSTEM}" STREQUAL "systemd")
install(
FILES "${CMAKE_CURRENT_BINARY_DIR}/service/ckb-next-daemon.service"
-- DESTINATION "/usr/lib/systemd/system"
+- DESTINATION "${SYSTEMD_UNIT_INSTALL_DIR}"
+ DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/systemd/system"
PERMISSIONS
OWNER_READ OWNER_WRITE
diff --git a/pkgs/tools/misc/ckb-next/modprobe.patch b/pkgs/tools/misc/ckb-next/modprobe.patch
index a2cbe262e89..257683e11f6 100644
--- a/pkgs/tools/misc/ckb-next/modprobe.patch
+++ b/pkgs/tools/misc/ckb-next/modprobe.patch
@@ -1,21 +1,21 @@
diff --git a/src/daemon/input_linux.c b/src/daemon/input_linux.c
-index 8489f5b..b851419 100644
+index 933e628..c4f97f2 100644
--- a/src/daemon/input_linux.c
+++ b/src/daemon/input_linux.c
-@@ -63,7 +63,7 @@ int os_inputopen(usbdevice* kb){
+@@ -70,7 +70,7 @@ int os_inputopen(usbdevice* kb){
// If not available, load the module
if(fd < 0){
- if(system("modprobe uinput") != 0) {
+ if(system("@kmod@/bin/modprobe uinput") != 0) {
- ckb_fatal("Failed to load uinput module\n");
+ ckb_fatal("Failed to load uinput module");
return 1;
}
diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp
-index 1eb95bd..f7d38ba 100644
+index eeadaf8..87de71f 100644
--- a/src/gui/mainwindow.cpp
+++ b/src/gui/mainwindow.cpp
-@@ -284,7 +284,7 @@ void MainWindow::updateVersion(){
+@@ -309,7 +309,7 @@ void MainWindow::updateVersion(){
#elif defined(Q_OS_LINUX)
if(!(QFileInfo("/dev/uinput").exists() || QFileInfo("/dev/input/uinput").exists())){
QProcess modprobe;
diff --git a/pkgs/tools/misc/cyclonedx-python/default.nix b/pkgs/tools/misc/cyclonedx-python/default.nix
new file mode 100644
index 00000000000..97dfd8310da
--- /dev/null
+++ b/pkgs/tools/misc/cyclonedx-python/default.nix
@@ -0,0 +1,47 @@
+{ lib
+, python3
+, fetchFromGitHub
+}:
+python3.pkgs.buildPythonApplication rec {
+ pname = "cyclonedx-python";
+ version = "0.4.3";
+
+ src = fetchFromGitHub {
+ owner = "CycloneDX";
+ repo = "cyclonedx-python";
+ rev = "v${version}";
+ sha256 = "BvG4aWBMsllW2L4lLsiRFUCPjgoDpHxN49fsUFdg7tQ=";
+ };
+
+ # They pin versions for exact version numbers because "A bill-of-material such
+ # as CycloneDX expects exact version numbers" -- but that's unnecessary with
+ # Nix.
+ preBuild = ''
+ sed "s@==.*'@'@" -i setup.py
+ '';
+
+ propagatedBuildInputs = with python3.pkgs; [
+ packageurl-python
+ requests
+ xmlschema
+ setuptools
+ requirements-parser
+ packaging
+ chardet
+ jsonschema
+ ];
+
+ # the tests want access to the cyclonedx binary
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "cyclonedx"
+ ];
+
+ meta = with lib; {
+ description = "Creates CycloneDX Software Bill of Materials (SBOM) from Python projects";
+ homepage = "https://github.com/CycloneDX/cyclonedx-python";
+ license = licenses.asl20;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/tools/misc/ffsend/default.nix b/pkgs/tools/misc/ffsend/default.nix
index 4c92a0be792..4e059725f86 100644
--- a/pkgs/tools/misc/ffsend/default.nix
+++ b/pkgs/tools/misc/ffsend/default.nix
@@ -7,7 +7,7 @@
}:
let
- usesX11 = stdenv.isLinux || stdenv.hostPlatform.isBSD;
+ usesX11 = stdenv.isLinux || stdenv.isBSD;
in
assert (x11Support && usesX11) -> xclip != null || xsel != null;
diff --git a/pkgs/tools/misc/goreleaser/default.nix b/pkgs/tools/misc/goreleaser/default.nix
index 8732ee66ef6..6b92ecc5ef2 100644
--- a/pkgs/tools/misc/goreleaser/default.nix
+++ b/pkgs/tools/misc/goreleaser/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "goreleaser";
- version = "0.162.0";
+ version = "0.163.1";
src = fetchFromGitHub {
owner = "goreleaser";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-nhl6GATzFsfEQjKVxz65REn9QTvOH49omU00ZCfO6CY=";
+ sha256 = "sha256-2SDy/Mk4TkXkJKF1gFW7/FH4Y31TE2X38I0r/Ng/BjU=";
};
- vendorSha256 = "sha256-zq/RIOK/Hs1GJ2yLE7pe0UoDuR6LGUrPQAuQzrTvuKs=";
+ vendorSha256 = "sha256-+Qdxnd+IhBNfZ0R2lCfPGJSjpTw1TA6uPjykCfrYtMk=";
buildFlagsArray = [
"-ldflags="
diff --git a/pkgs/tools/misc/macchina/default.nix b/pkgs/tools/misc/macchina/default.nix
new file mode 100644
index 00000000000..d975e02d5ac
--- /dev/null
+++ b/pkgs/tools/misc/macchina/default.nix
@@ -0,0 +1,29 @@
+{ lib, rustPlatform, fetchFromGitHub, installShellFiles }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "macchina";
+ version = "0.6.9";
+
+ src = fetchFromGitHub {
+ owner = "Macchina-CLI";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-y23gpYDnYoiTJcNyWKslVenPTXcCrOvxq+0N9PjQN3g=";
+ };
+
+ cargoSha256 = "sha256-jfLj8kLBG6AeeYo421JCl1bMqWwOGiwQgv7AEomtFcY=";
+
+ nativeBuildInputs = [ installShellFiles ];
+
+ postInstall = ''
+ installShellCompletion target/completions/*.{bash,fish}
+ '';
+
+ meta = with lib; {
+ description = "A fast, minimal and customizable system information fetcher";
+ homepage = "https://github.com/Macchina-CLI/macchina";
+ changelog = "https://github.com/Macchina-CLI/macchina/releases/tag/v${version}";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ _414owen ];
+ };
+}
diff --git a/pkgs/tools/misc/miniserve/default.nix b/pkgs/tools/misc/miniserve/default.nix
index 1223432ad7d..98fb8335788 100644
--- a/pkgs/tools/misc/miniserve/default.nix
+++ b/pkgs/tools/misc/miniserve/default.nix
@@ -11,16 +11,16 @@
rustPlatform.buildRustPackage rec {
pname = "miniserve";
- version = "0.13.0";
+ version = "0.14.0";
src = fetchFromGitHub {
owner = "svenstaro";
repo = "miniserve";
rev = "v${version}";
- sha256 = "sha256-1nXhAYvvvUQb0RcWidsRMQOhU8eXt7ngzodsMkYvqvg=";
+ sha256 = "sha256-Hv1aefuiu7pOlSMUjZLGY6bxVy+6myFH1afZZ5gtmi0=";
};
- cargoSha256 = "sha256-P5ukE7eXBRJMrc7+T9/TMq2uGs0AuZliHTtoqiZXNZw=";
+ cargoSha256 = "sha256-CgiHluc9+5+hKwsC7UZimy1586QBUsj+TVlb2lQRXs0=";
nativeBuildInputs = [ installShellFiles pkg-config zlib ];
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
diff --git a/pkgs/tools/misc/nncp/default.nix b/pkgs/tools/misc/nncp/default.nix
index 4c03172d9af..2c821c33360 100644
--- a/pkgs/tools/misc/nncp/default.nix
+++ b/pkgs/tools/misc/nncp/default.nix
@@ -10,11 +10,11 @@
stdenv.mkDerivation rec {
pname = "nncp";
- version = "6.2.0";
+ version = "6.3.0";
src = fetchurl {
url = "http://www.nncpgo.org/download/${pname}-${version}.tar.xz";
- sha256 = "1zj0v82zqigcxhpc50mvafvi1ihs92ck35vjfrwb7wzzd7nysb17";
+ sha256 = "0ss6p91r9sr3q8p8f6mjjc2cspx3fq0q4w44gfxl0da2wc8nmhkn";
};
nativeBuildInputs = [ go redo-apenwarr ];
diff --git a/pkgs/tools/misc/ostree/default.nix b/pkgs/tools/misc/ostree/default.nix
index 53966705c2d..b5c0940910c 100644
--- a/pkgs/tools/misc/ostree/default.nix
+++ b/pkgs/tools/misc/ostree/default.nix
@@ -12,6 +12,8 @@
, xz
, e2fsprogs
, libsoup
+, glib-networking
+, wrapGAppsHook
, gpgme
, which
, makeWrapper
@@ -39,13 +41,13 @@ let
]));
in stdenv.mkDerivation rec {
pname = "ostree";
- version = "2020.8";
+ version = "2021.1";
outputs = [ "out" "dev" "man" "installedTests" ];
src = fetchurl {
url = "https://github.com/ostreedev/ostree/releases/download/v${version}/libostree-${version}.tar.xz";
- sha256 = "16v73v63h16ika73kgh2cvgm0v27r2d48m932mbj3xm6s295kapx";
+ sha256 = "sha256-kbS9kmSDHSD/AOxELUjt5SbbVTeb2RdgaGPAX0O4WlE=";
};
patches = [
@@ -78,6 +80,7 @@ in stdenv.mkDerivation rec {
libxslt
docbook-xsl-nons
docbook_xml_dtd_42
+ wrapGAppsHook
];
buildInputs = [
@@ -85,6 +88,7 @@ in stdenv.mkDerivation rec {
systemd
e2fsprogs
libsoup
+ glib-networking
gpgme
fuse
libselinux
diff --git a/pkgs/tools/misc/pcb2gcode/default.nix b/pkgs/tools/misc/pcb2gcode/default.nix
index 6d385169975..d7f6a3d8739 100644
--- a/pkgs/tools/misc/pcb2gcode/default.nix
+++ b/pkgs/tools/misc/pcb2gcode/default.nix
@@ -13,13 +13,13 @@
stdenv.mkDerivation rec {
pname = "pcb2gcode";
- version = "2.3.0";
+ version = "2.3.1";
src = fetchFromGitHub {
owner = "pcb2gcode";
repo = "pcb2gcode";
rev = "v${version}";
- sha256 = "sha256-BELugmnnedqXTnSwiQN3XbqkWKTKF27ElQAwrEWNSao=";
+ sha256 = "sha256-blbfpMBe7X3OrNbBiz8fNzKcS/bbViQUTXtdxZpXPBk=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
diff --git a/pkgs/tools/misc/pspg/default.nix b/pkgs/tools/misc/pspg/default.nix
index 354075df549..ff4e15c9cc8 100644
--- a/pkgs/tools/misc/pspg/default.nix
+++ b/pkgs/tools/misc/pspg/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "pspg";
- version = "4.4.0";
+ version = "4.5.0";
src = fetchFromGitHub {
owner = "okbob";
repo = pname;
rev = version;
- sha256 = "sha256-kRKU6ynZffV17GqEArkXxz6M9xoa3kn2yNqjyLRY0rc=";
+ sha256 = "sha256-RWezBNqjKybMtfpxPhDg2ysb4ksKphTPdTNTwCe4pas=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/tools/misc/snapper/default.nix b/pkgs/tools/misc/snapper/default.nix
index 03f24c16aab..8eeee269b07 100644
--- a/pkgs/tools/misc/snapper/default.nix
+++ b/pkgs/tools/misc/snapper/default.nix
@@ -1,18 +1,18 @@
{ lib, stdenv, fetchFromGitHub
, autoreconfHook, pkg-config, docbook_xsl, libxslt, docbook_xml_dtd_45
, acl, attr, boost, btrfs-progs, dbus, diffutils, e2fsprogs, libxml2
-, lvm2, pam, python, util-linux, fetchpatch, json_c, nixosTests
+, lvm2, pam, python, util-linux, json_c, nixosTests
, ncurses }:
stdenv.mkDerivation rec {
pname = "snapper";
- version = "0.8.15";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "openSUSE";
repo = "snapper";
rev = "v${version}";
- sha256 = "1rqv1qfxr02qbkix1mpx91s4827irxryxkhby3ii0fdkm3ympsas";
+ sha256 = "1gx3ichbkdqlzl7w187vc3xpmr9prmnp7as0h6ympgigradj5c7g";
};
nativeBuildInputs = [
@@ -26,14 +26,6 @@ stdenv.mkDerivation rec {
passthru.tests.snapper = nixosTests.snapper;
- patches = [
- # Don't use etc/dbus-1/system.d
- (fetchpatch {
- url = "https://github.com/openSUSE/snapper/commit/c51708aea22d9436da287cba84424557ad03644b.patch";
- sha256 = "106pf7pv8z3q37c8ckmgwxs1phf2fy7l53a9g5xq5kk2rjj1cx34";
- })
- ];
-
postPatch = ''
# Hard-coded root paths, hard-coded root paths everywhere...
for file in {client,data,pam,scripts,zypp-plugin}/Makefile.am; do
diff --git a/pkgs/tools/misc/sta/default.nix b/pkgs/tools/misc/sta/default.nix
index aa27ddf0838..809287edcf6 100644
--- a/pkgs/tools/misc/sta/default.nix
+++ b/pkgs/tools/misc/sta/default.nix
@@ -1,16 +1,21 @@
-{ stdenv, lib, fetchFromGitHub, autoreconfHook }:
+{ stdenv
+, lib
+, fetchFromGitHub
+, autoreconfHook
+}:
+
stdenv.mkDerivation {
pname = "sta";
- version = "unstable-2016-01-25";
+ version = "unstable-2020-05-10";
src = fetchFromGitHub {
owner = "simonccarter";
repo = "sta";
- rev = "2aa2a6035dde88b24978b875e4c45e0e296f77ed";
- sha256 = "05804f106nb89yvdd0csvpd5skwvnr9x4qr3maqzaw0qr055mrsk";
+ rev = "566e3a77b103aa27a5f77ada8e068edf700f26ef";
+ sha256 = "1v20di90ckl405rj5pn6lxlpxh2m2b3y9h2snjvk0k9sihk7w7d5";
};
- buildInputs = [ autoreconfHook ];
+ nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
description = "Simple statistics from the command line interface (CLI), fast";
diff --git a/pkgs/tools/misc/starship/default.nix b/pkgs/tools/misc/starship/default.nix
index c589590abcf..1e3eae78701 100644
--- a/pkgs/tools/misc/starship/default.nix
+++ b/pkgs/tools/misc/starship/default.nix
@@ -11,13 +11,13 @@
rustPlatform.buildRustPackage rec {
pname = "starship";
- version = "0.51.0";
+ version = "0.52.1";
src = fetchFromGitHub {
owner = "starship";
repo = pname;
rev = "v${version}";
- sha256 = "1bmnwvjhw2ba7yqn9if83d57b8qbrbqgy2br8q2drz4ylk0gjirg";
+ sha256 = "sha256-BX+NUF7mgZyrloj3h9YcG2r6ZZWO20hXQYbBvaK34JQ=";
};
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.isLinux [ pkg-config ];
@@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec {
done
'';
- cargoSha256 = "1d4ca8yzx437x53i7z2kddv9db89zy6ywbgl6y1cwwd6wscbrxcq";
+ cargoSha256 = "sha256-8xqbPkdIVfAkeG1WZFq56N0rcF+uh2FeMKzz4FgMFYs=";
preCheck = ''
HOME=$TMPDIR
diff --git a/pkgs/tools/misc/svtplay-dl/default.nix b/pkgs/tools/misc/svtplay-dl/default.nix
index 58c488f7b80..cad7f5e3881 100644
--- a/pkgs/tools/misc/svtplay-dl/default.nix
+++ b/pkgs/tools/misc/svtplay-dl/default.nix
@@ -47,6 +47,5 @@ in stdenv.mkDerivation rec {
description = "Command-line tool to download videos from svtplay.se and other sites";
license = licenses.mit;
platforms = lib.platforms.unix;
- maintainers = [ maintainers.rycee ];
};
}
diff --git a/pkgs/tools/misc/tremor-rs/default.nix b/pkgs/tools/misc/tremor-rs/default.nix
index fb1268acc6f..ca3f3058755 100644
--- a/pkgs/tools/misc/tremor-rs/default.nix
+++ b/pkgs/tools/misc/tremor-rs/default.nix
@@ -3,22 +3,26 @@
rustPlatform.buildRustPackage rec {
pname = "tremor";
- version = "0.10.1";
+ version = "0.11.0";
src = fetchFromGitHub {
owner = "tremor-rs";
repo = "tremor-runtime";
rev = "v${version}";
- sha256 = "1z1khxfdj2j0xf7dp0x2cd9kl6r4qicp7kc4p4sdky2yib66512y";
+ sha256 = "19g0ijkclrza6s0qcbwwh3lhlkisy00ffcl0c0d7dfqwrcisgz57";
};
- cargoSha256 = "sha256-rN/d6BL2d0D0ichQR6v0543Bh/Y2ktz8ExMH50M8B8c=";
+ cargoSha256 = "1xv205czb2z6qpqi6vslyrx2n21510qqa11i2hwya3jdcc9lkrsd";
nativeBuildInputs = [ cmake pkg-config installShellFiles ];
buildInputs = [ openssl ];
+ # TODO export TREMOR_PATH($out/lib) variable
postInstall = ''
+ # Copy the standard library to $out/lib
+ cp -r ${src}/tremor-script/lib/ $out
+
installShellCompletion --cmd tremor \
--bash <($out/bin/tremor completions bash) \
--fish <($out/bin/tremor completions fish) \
@@ -30,7 +34,7 @@ rustPlatform.buildRustPackage rec {
# OPENSSL_NO_VENDOR - If set, always find OpenSSL in the system, even if the vendored feature is enabled.
OPENSSL_NO_VENDOR = 1;
- cargoBuildFlags = [ "--all" ];
+ cargoBuildFlags = [ "-p tremor-cli" ];
meta = with lib; {
description = "Early stage event processing system for unstructured data with rich support for structural pattern matching, filtering and transformation";
diff --git a/pkgs/tools/misc/vector/default.nix b/pkgs/tools/misc/vector/default.nix
index 04eb29ca1e1..0c4085d8296 100644
--- a/pkgs/tools/misc/vector/default.nix
+++ b/pkgs/tools/misc/vector/default.nix
@@ -18,16 +18,16 @@
rustPlatform.buildRustPackage rec {
pname = "vector";
- version = "0.12.2";
+ version = "0.13.0";
src = fetchFromGitHub {
owner = "timberio";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-LutCzpJo47wvEze7bAObRVraNhVuQFc9NQ79NzKA9CM=";
+ sha256 = "sha256-Sur5QfPIoJXkcYdyNlIHOvmV2yBedhNm7UinmaFEc2E=";
};
- cargoSha256 = "sha256-GU5p9DB5Bk8eQc1B/WA87grbVJVcT1ELJ0WzmRYgDzc=";
+ cargoSha256 = "sha256-1Xm1X1pfx9J0tBck2WA+zt2OxtQsqustcWPazsPyKPY=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl protobuf rdkafka ]
++ lib.optional stdenv.isDarwin [ Security libiconv coreutils CoreServices ];
diff --git a/pkgs/tools/misc/watchexec/default.nix b/pkgs/tools/misc/watchexec/default.nix
index 5a264db2d4d..ce525dd98dd 100644
--- a/pkgs/tools/misc/watchexec/default.nix
+++ b/pkgs/tools/misc/watchexec/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "watchexec";
- version = "1.15.0";
+ version = "1.15.1";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
- sha256 = "1b0ds04q4g8xcgwkziwb5hsi7v73w9y0prvhxz880zzh930652n2";
+ sha256 = "1xznhfljvsvc0ykv5h1wg31n93v96lvhbxfhavxivq3b0xh5vxrw";
};
- cargoSha256 = "0jpfgyz5l4fdb5cnqmadzjzrvc6dwgray4b0mx80pghpjw8a8qfb";
+ cargoSha256 = "00dampnsnpzmchjcn0j5zslx17i0qgrv99gq772n0683m1l2lfq3";
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/tools/misc/websocat/default.nix b/pkgs/tools/misc/websocat/default.nix
index d5f09d9f9fa..821c059a45f 100644
--- a/pkgs/tools/misc/websocat/default.nix
+++ b/pkgs/tools/misc/websocat/default.nix
@@ -2,21 +2,24 @@
rustPlatform.buildRustPackage rec {
pname = "websocat";
- version = "1.6.0";
+ version = "1.8.0";
src = fetchFromGitHub {
owner = "vi";
- repo = "websocat";
+ repo = pname;
rev = "v${version}";
- sha256 = "0iilq96bxcb2fsljvlgy47pg514w0jf72ckz39yy3k0gwc1yfcja";
+ sha256 = "sha256-jwoWxK4phBqhIeo3+oRnpGsfvtn9gTR1ryd4N+0Lmbw=";
};
cargoBuildFlags = [ "--features=ssl" ];
- cargoSha256 = "1hsms8rlnds8npr8m0dm21h04ci5ljda09pqb598v7ny3j2dldiq";
+ cargoSha256 = "sha256-+3SG1maarY4DJ4+QiYGwltGLksOoOhKtcqstRwgzi2k=";
nativeBuildInputs = [ pkg-config makeWrapper ];
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
+ # Needed to get openssl-sys to use pkg-config.
+ OPENSSL_NO_VENDOR=1;
+
# The wrapping is required so that the "sh-c" option of websocat works even
# if sh is not in the PATH (as can happen, for instance, when websocat is
# started as a systemd service).
@@ -26,8 +29,9 @@ rustPlatform.buildRustPackage rec {
'';
meta = with lib; {
- description = "Command-line client for WebSockets (like netcat/socat)";
homepage = "https://github.com/vi/websocat";
+ description = "Command-line client for WebSockets (like netcat/socat)";
+ changelog = "https://github.com/vi/websocat/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ thoughtpolice Br1ght0ne ];
};
diff --git a/pkgs/tools/misc/wemux/default.nix b/pkgs/tools/misc/wemux/default.nix
new file mode 100644
index 00000000000..0eee60187f2
--- /dev/null
+++ b/pkgs/tools/misc/wemux/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, lib, fetchFromGitHub, tmux, installShellFiles }:
+
+stdenv.mkDerivation rec {
+ pname = "wemux";
+ version = "unstable-2021-04-16";
+
+ src = fetchFromGitHub {
+ owner = "zolrath";
+ repo = "wemux";
+ rev = "01c6541f8deceff372711241db2a13f21c4b210c";
+ sha256 = "1y962nzvs7sf720pl3wa582l6irxc8vavd0gp4ag4243b2gs4qvm";
+ };
+
+ nativeBuildInputs = [ installShellFiles ];
+
+ installPhase = ''
+ runHook preInstall
+
+ substituteInPlace wemux \
+ --replace tmux ${tmux}/bin/tmux \
+ --replace "/usr/local/etc" "/etc"
+
+ substituteInPlace man/wemux.1 --replace "/usr/local/etc" "/etc"
+
+ install -Dm755 wemux -t $out/bin
+ installManPage man/wemux.1
+
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/zolrath/wemux";
+ description = "Multi-user tmux made easy";
+ license = licenses.mit;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ bsima ];
+ };
+}
diff --git a/pkgs/tools/misc/xdaliclock/default.nix b/pkgs/tools/misc/xdaliclock/default.nix
index 6aaee0f00b5..7f453892934 100644
--- a/pkgs/tools/misc/xdaliclock/default.nix
+++ b/pkgs/tools/misc/xdaliclock/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A clock application that morphs digits when they are changed";
- maintainers = with maintainers; [ raskin rycee ];
+ maintainers = with maintainers; [ raskin ];
platforms = with platforms; linux ++ freebsd;
license = licenses.free; #TODO BSD on Gentoo, looks like MIT
downloadPage = "http://www.jwz.org/xdaliclock/";
diff --git a/pkgs/tools/misc/xdxf2slob/default.nix b/pkgs/tools/misc/xdxf2slob/default.nix
index b898aa2fc24..28c952400f1 100644
--- a/pkgs/tools/misc/xdxf2slob/default.nix
+++ b/pkgs/tools/misc/xdxf2slob/default.nix
@@ -16,7 +16,6 @@ python3Packages.buildPythonApplication {
description = "Tool to convert XDXF dictionary files to slob format";
homepage = "https://github.com/itkach/xdxf2slob/";
license = licenses.gpl3;
- maintainers = [ maintainers.rycee ];
platforms = platforms.all;
};
}
diff --git a/pkgs/tools/misc/ytfzf/default.nix b/pkgs/tools/misc/ytfzf/default.nix
index ca211cff131..ba1658f3d1d 100644
--- a/pkgs/tools/misc/ytfzf/default.nix
+++ b/pkgs/tools/misc/ytfzf/default.nix
@@ -16,13 +16,13 @@
stdenv.mkDerivation rec {
pname = "ytfzf";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchFromGitHub {
owner = "pystardust";
repo = "ytfzf";
rev = "v${version}";
- sha256 = "sha256-ST6ZSNJW4Pe8fdwRsQ0BLdCd3AE9OTG6is3J+HMdIzs=";
+ sha256 = "sha256-zRzd+rZxT5IJoFJl9sutTdQC4eMDUCBld5bTGfQWtco=";
};
patches = [
diff --git a/pkgs/tools/networking/anevicon/default.nix b/pkgs/tools/networking/anevicon/default.nix
new file mode 100644
index 00000000000..95a4bbe9fb8
--- /dev/null
+++ b/pkgs/tools/networking/anevicon/default.nix
@@ -0,0 +1,39 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, fetchpatch
+, rustPlatform
+, Security
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "anevicon";
+ version = "0.1.0";
+
+ src = fetchFromGitHub {
+ owner = "rozgo";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1m3ci7g7nn28p6x5m85av3ljgszwlg55f1hmgjnarc6bas5bapl7";
+ };
+
+ cargoSha256 = "1g15v13ysx09fy0b8qddw5fwql2pvwzc2g2h1ndhzpxvfy7fzpr1";
+
+ buildInputs = lib.optionals stdenv.isDarwin [ Security ];
+
+ cargoPatches = [
+ # Add Cargo.lock file, https://github.com/rozgo/anevicon/pull/1
+ (fetchpatch {
+ name = "cargo-lock-file.patch";
+ url = "https://github.com/rozgo/anevicon/commit/205440a0863aaea34394f30f4255fa0bb1704aed.patch";
+ sha256 = "02syzm7irn4slr3s5dwwhvg1qx8fdplwlhza8gfkc6ajl7vdc7ri";
+ })
+ ];
+
+ meta = with lib; {
+ description = "UDP-based load generator";
+ homepage = "https://github.com/rozgo/anevicon";
+ license = licenses.gpl3Only;
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/networking/croc/default.nix b/pkgs/tools/networking/croc/default.nix
index 8e9097f2f99..187c07b040b 100644
--- a/pkgs/tools/networking/croc/default.nix
+++ b/pkgs/tools/networking/croc/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "croc";
- version = "8.6.12";
+ version = "9.1.0";
src = fetchFromGitHub {
owner = "schollz";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-Oad0JpeeCpIHfH9e1pTKtrnvZ+eFx3dR5GP6g6piFS0=";
+ sha256 = "sha256-teH4Y6PrUSE7Rxw0WV7Ka+CB44nwYXy9q09wOAhC8Bc=";
};
- vendorSha256 = "sha256-LYMZFaCNlJg+9Hoh2VbY6tMHv6oT7r+JHBcQYpOceRQ=";
+ vendorSha256 = "sha256-HPUvL22BrVH9/j41VFaystZWs0LO6KNIf2cNYqKxWnY=";
doCheck = false;
diff --git a/pkgs/tools/networking/dnsproxy/default.nix b/pkgs/tools/networking/dnsproxy/default.nix
index 20256aa006b..4c784d00542 100644
--- a/pkgs/tools/networking/dnsproxy/default.nix
+++ b/pkgs/tools/networking/dnsproxy/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "dnsproxy";
- version = "0.37.0";
+ version = "0.37.1";
src = fetchFromGitHub {
owner = "AdguardTeam";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-3zsEEq6pVo5yHY4v5TXhZo4jo6htjCYypzxMMv8zQGE=";
+ sha256 = "sha256-zenVgWVzKnq9WzJFC6vpE5Gwbv3lJC7aIe3xBQGeWr8=";
};
vendorSha256 = null;
diff --git a/pkgs/tools/networking/dnstwist/default.nix b/pkgs/tools/networking/dnstwist/default.nix
new file mode 100644
index 00000000000..e19b4dabd78
--- /dev/null
+++ b/pkgs/tools/networking/dnstwist/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, fetchFromGitHub
+, python3
+}:
+
+python3.pkgs.buildPythonApplication rec {
+ pname = "dnstwist";
+ version = "20201228";
+ disabled = python3.pythonOlder "3.6";
+
+ src = fetchFromGitHub {
+ owner = "elceef";
+ repo = pname;
+ rev = version;
+ sha256 = "0bxshi1p0va2f449v6vsm8bav5caa3r3pyknj3zf4n5rvk6say70";
+ };
+
+ propagatedBuildInputs = with python3.pkgs; [
+ dnspython
+ GeoIP
+ ppdeep
+ requests
+ tld
+ whois
+ ];
+
+ # Project has no tests
+ doCheck = false;
+ pythonImportsCheck = [ "dnstwist" ];
+
+ meta = with lib; {
+ description = "Domain name permutation engine for detecting homograph phishing attacks";
+ homepage = "https://github.com/elceef/dnstwist";
+ license = with licenses; [ gpl3Only ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/networking/innernet/default.nix b/pkgs/tools/networking/innernet/default.nix
new file mode 100644
index 00000000000..a195841ab57
--- /dev/null
+++ b/pkgs/tools/networking/innernet/default.nix
@@ -0,0 +1,25 @@
+{ lib, stdenv, rustPlatform, fetchFromGitHub, llvmPackages, linuxHeaders, sqlite, Security }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "innernet";
+ version = "1.1.0";
+
+ src = fetchFromGitHub {
+ owner = "tonarino";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-OomCSA02ypFVzkYMcmkFREWB6x7oxgpt7x2zRANIDMw=";
+ };
+ LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
+
+ nativeBuildInputs = with llvmPackages; [ llvm clang ];
+ buildInputs = [ sqlite ] ++ lib.optionals stdenv.isDarwin [ Security ];
+ cargoSha256 = "sha256-GYNk3j8fjKSo3Qk6Qy0l6kNINK3FxlSYoEkJSx7kVpk=";
+
+ meta = with lib; {
+ description = "A private network system that uses WireGuard under the hood";
+ homepage = "https://github.com/tonarino/innernet";
+ license = licenses.mit;
+ maintainers = with maintainers; [ tomberek _0x4A6F ];
+ };
+}
diff --git a/pkgs/tools/networking/lychee/default.nix b/pkgs/tools/networking/lychee/default.nix
index 40353ea278c..72f5b6f57fd 100644
--- a/pkgs/tools/networking/lychee/default.nix
+++ b/pkgs/tools/networking/lychee/default.nix
@@ -7,16 +7,16 @@
rustPlatform.buildRustPackage rec {
pname = "lychee";
- version = "0.5.0";
+ version = "0.7.0";
src = fetchFromGitHub {
owner = "lycheeverse";
repo = pname;
- rev = "v${version}";
- sha256 = "03dsp0384mwr51dkqfl25xba0m17sppabiz7slhxcig89b0ksykm";
+ rev = version;
+ sha256 = "0kpwpbv0dqb0p4bxjlcjas6x1n91rdsvy2psrc1nyr1sh6gb1q5j";
};
- cargoSha256 = "08y2wpm2qgm2jsy257b2p2anxy4q3bj2kfdr5cnb6wnaz9g4ypq2";
+ cargoSha256 = "1b915zkg41n3azk4hhg6fgc83n7iq8p7drvdyil2m2a4qdjvp9r3";
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/tools/networking/ntp/default.nix b/pkgs/tools/networking/ntp/default.nix
index 28144104932..8c62e3b0d64 100644
--- a/pkgs/tools/networking/ntp/default.nix
+++ b/pkgs/tools/networking/ntp/default.nix
@@ -47,6 +47,6 @@ stdenv.mkDerivation rec {
url = "https://www.eecis.udel.edu/~mills/ntp/html/copyright.html";
};
maintainers = with maintainers; [ eelco thoughtpolice ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/networking/qrcp/default.nix b/pkgs/tools/networking/qrcp/default.nix
index bf3b3936edd..fd6b79ecb21 100644
--- a/pkgs/tools/networking/qrcp/default.nix
+++ b/pkgs/tools/networking/qrcp/default.nix
@@ -1,23 +1,34 @@
{ lib
, buildGoModule
, fetchFromGitHub
+, installShellFiles
}:
buildGoModule rec {
pname = "qrcp";
- version = "0.7.0";
+ version = "0.8.1";
src = fetchFromGitHub {
owner = "claudiodangelis";
repo = "qrcp";
rev = version;
- sha256 = "0rx0pzy7p3dklayr2lkmyfdc00x9v4pd5xnzydbjx12hncnkpw4l";
+ sha256 = "001w15hj5xb7p9gpvw1216lp26g5018qdi8mq6i84akb7zfd2q01";
};
- vendorSha256 = "0iffy43x3njcahrxl99a71v8p7im102nzv8iqbvd5c6m14rsckqa";
+ vendorSha256 = "1hn8c72fvih6ws1y2c4963pww3ld64m0yh3pmx62hwcy83bhb0v4";
subPackages = [ "." ];
+ nativeBuildInputs = [
+ installShellFiles
+ ];
+
+ postInstall = ''
+ installShellCompletion --bash --cmd qrcp <($out/bin/qrcp completion bash)
+ installShellCompletion --fish --cmd qrcp <($out/bin/qrcp completion fish)
+ installShellCompletion --zsh --cmd qrcp <($out/bin/qrcp completion zsh)
+ '';
+
meta = with lib; {
homepage = "https://claudiodangelis.com/qrcp/";
description = "Transfer files over wifi by scanning a QR code from your terminal";
diff --git a/pkgs/tools/networking/shadowsocks-rust/default.nix b/pkgs/tools/networking/shadowsocks-rust/default.nix
index 5b5d8ee1545..97157071733 100644
--- a/pkgs/tools/networking/shadowsocks-rust/default.nix
+++ b/pkgs/tools/networking/shadowsocks-rust/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "shadowsocks-rust";
- version = "1.10.5";
+ version = "1.10.7";
src = fetchFromGitHub {
rev = "v${version}";
owner = "shadowsocks";
repo = pname;
- sha256 = "0nagn7792qniczzv0912h89bn8rm8hyikdiw7cqwknx0hw8dwz1z";
+ sha256 = "08k5j469750bhlq49qc5nwc2jjgmy9qsm58nf2jfwhxlpflv12sc";
};
- cargoSha256 = "0arqc0wnvfkmk8xzsdc6fvd1adazrw950ld8xyh7r588pyphjmhn";
+ cargoSha256 = "1r8w5cdygd26m95q9qpqa85aixx25jr510hpjlllbpfvm7zjpbqk";
RUSTC_BOOTSTRAP = 1;
diff --git a/pkgs/tools/networking/sish/default.nix b/pkgs/tools/networking/sish/default.nix
new file mode 100644
index 00000000000..181582f5452
--- /dev/null
+++ b/pkgs/tools/networking/sish/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+ pname = "sish";
+ version = "1.1.5";
+
+ src = fetchFromGitHub {
+ owner = "antoniomika";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "06ckgxhnijs7yrj0hhwh1vk2fvapwn6wb44w3g6qs6n6fmqh92mb";
+ };
+
+ vendorSha256 = "0vfazbaiaqka5nd7imh5ls7k3asf1c17y081nzkban98svg3l3sj";
+
+ meta = with lib; {
+ description = "HTTP(S)/WS(S)/TCP Tunnels to localhost";
+ homepage = "https://github.com/antoniomika/sish";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/networking/swagger-codegen/default.nix b/pkgs/tools/networking/swagger-codegen/default.nix
index 93fb6e1e358..f2847703bdb 100644
--- a/pkgs/tools/networking/swagger-codegen/default.nix
+++ b/pkgs/tools/networking/swagger-codegen/default.nix
@@ -15,12 +15,12 @@ stdenv.mkDerivation rec {
sha256 = "04wl5k8k1ziqz7k5w0g7i6zdfn41pbh3k0m8vq434k1886inf8yn";
};
- phases = [ "installPhase" ];
+ dontUnpack = true;
installPhase = ''
- install -D "$src" "$out/share/java/${jarfilename}"
+ install -D $src $out/share/java/${jarfilename}
- makeWrapper ${jre}/bin/java $out/bin/swagger-codegen \
+ makeWrapper ${jre}/bin/java $out/bin/${pname} \
--add-flags "-jar $out/share/java/${jarfilename}"
'';
diff --git a/pkgs/tools/networking/swagger-codegen3/default.nix b/pkgs/tools/networking/swagger-codegen3/default.nix
new file mode 100644
index 00000000000..8fc908a1f2c
--- /dev/null
+++ b/pkgs/tools/networking/swagger-codegen3/default.nix
@@ -0,0 +1,33 @@
+{ lib, stdenv, fetchurl, jre, makeWrapper }:
+
+stdenv.mkDerivation rec {
+ version = "3.0.25";
+ pname = "swagger-codegen";
+
+ jarfilename = "${pname}-cli-${version}.jar";
+
+ nativeBuildInputs = [
+ makeWrapper
+ ];
+
+ src = fetchurl {
+ url = "https://repo1.maven.org/maven2/io/swagger/codegen/v3/${pname}-cli/${version}/${jarfilename}";
+ sha256 = "1rdz45kmmg60fs7ddnla1xq30nah6s6rd18fqbjbjxng8r92brnd";
+ };
+
+ dontUnpack = true;
+
+ installPhase = ''
+ install -D $src $out/share/java/${jarfilename}
+
+ makeWrapper ${jre}/bin/java $out/bin/${pname}3 \
+ --add-flags "-jar $out/share/java/${jarfilename}"
+ '';
+
+ meta = with lib; {
+ description = "Allows generation of API client libraries (SDK generation), server stubs and documentation automatically given an OpenAPI Spec";
+ homepage = "https://github.com/swagger-api/swagger-codegen/tree/3.0.0";
+ license = licenses.asl20;
+ maintainers = [ maintainers._1000101 ];
+ };
+}
diff --git a/pkgs/tools/nix/manix/default.nix b/pkgs/tools/nix/manix/default.nix
index 6c9f02f0e4f..768a283ebd2 100644
--- a/pkgs/tools/nix/manix/default.nix
+++ b/pkgs/tools/nix/manix/default.nix
@@ -1,19 +1,19 @@
-{ lib, stdenv, fetchFromGitHub, rustPlatform, darwin }:
+{ lib, stdenv, fetchFromGitHub, rustPlatform, darwin, Security }:
rustPlatform.buildRustPackage rec {
pname = "manix";
- version = "0.6.2";
+ version = "0.6.3";
src = fetchFromGitHub {
owner = "mlvzk";
repo = pname;
rev = "v${version}";
- sha256 = "0fv3sgzwjsgq2h1177r8r1cl5zrfja4ll801sd0bzj3nzmkyww7p";
+ sha256 = "1b7xi8c2drbwzfz70czddc4j33s7g1alirv12dwl91hbqxifx8qs";
};
- buildInputs = lib.optional stdenv.isDarwin [ darwin.Security ];
+ buildInputs = lib.optionals stdenv.isDarwin [ Security ];
- cargoSha256 = "0f2q3bj1cmpbma0fjhc2lc92j4al78fhrx3yc37kmbgzaza0yan5";
+ cargoSha256 = "1yivx9vzk2fvncvlkwq5v11hb9llr1zlcmy69y12q6xnd9rd8x1b";
meta = with lib; {
description = "A Fast Documentation Searcher for Nix";
diff --git a/pkgs/tools/nix/rnix-hashes/default.nix b/pkgs/tools/nix/rnix-hashes/default.nix
index 607884b8ac9..acdf230749c 100644
--- a/pkgs/tools/nix/rnix-hashes/default.nix
+++ b/pkgs/tools/nix/rnix-hashes/default.nix
@@ -1,4 +1,5 @@
{ lib, rustPlatform, fetchFromGitHub, fetchpatch }:
+
rustPlatform.buildRustPackage rec {
pname = "rnix-hashes";
version = "0.2.0";
@@ -10,12 +11,20 @@ rustPlatform.buildRustPackage rec {
sha256 = "SzHyG5cEjaaPjTkn8puht6snjHMl8DtorOGDjxakJfA=";
};
+ patches = [
+ # fix test failure
+ (fetchpatch {
+ url = "https://github.com/numtide/rnix-hashes/commit/62ab96cfd1efeade7d98efd9829eae8677bac9cc.patch";
+ sha256 = "sha256-oE2fBt20FmO2cEUGivu2mKo3z6rbhVLXSF8SRvhibFs=";
+ })
+ ];
+
cargoSha256 = "vaG+0t+XAckV9F4iIgcTkbIUurxdQsTCfOnRnrOKoRc=";
meta = with lib; {
description = "Nix Hash Converter";
homepage = "https://github.com/numtide/rnix-hashes";
license = licenses.asl20;
- maintainers = with maintainers; [ rizary ];
+ maintainers = with maintainers; [ rizary SuperSandro2000 ];
};
}
diff --git a/pkgs/tools/package-management/nix-update/default.nix b/pkgs/tools/package-management/nix-update/default.nix
index 3c420a55652..296f3be49cc 100644
--- a/pkgs/tools/package-management/nix-update/default.nix
+++ b/pkgs/tools/package-management/nix-update/default.nix
@@ -3,21 +3,23 @@
, fetchFromGitHub
, nixFlakes
, nix-prefetch
+, nixpkgs-fmt
+, nixpkgs-review
}:
buildPythonApplication rec {
pname = "nix-update";
- version = "0.3.2";
+ version = "0.4.0";
src = fetchFromGitHub {
owner = "Mic92";
repo = pname;
rev = version;
- sha256 = "1ykxr0yah7zl06igm7wiji9zx3y0xpjc37hbfhn6gnir6ssa0kqp";
+ sha256 = "sha256-n3YuNypKFaBtO5Fhf7Z3Wgh0+WH5bQWR0W0uHCYKtuY=";
};
makeWrapperArgs = [
- "--prefix" "PATH" ":" (lib.makeBinPath [ nixFlakes nix-prefetch ])
+ "--prefix" "PATH" ":" (lib.makeBinPath [ nixFlakes nix-prefetch nixpkgs-fmt nixpkgs-review ])
];
checkPhase = ''
diff --git a/pkgs/tools/package-management/nixpkgs-review/default.nix b/pkgs/tools/package-management/nixpkgs-review/default.nix
index d3fcac6277f..2229e0c6a1d 100644
--- a/pkgs/tools/package-management/nixpkgs-review/default.nix
+++ b/pkgs/tools/package-management/nixpkgs-review/default.nix
@@ -7,19 +7,21 @@
python3.pkgs.buildPythonApplication rec {
pname = "nixpkgs-review";
- version = "2.5.0";
+ version = "2.6.0";
src = fetchFromGitHub {
owner = "Mic92";
repo = "nixpkgs-review";
rev = version;
- sha256 = "1k4i54j5if86qf9dmwm8ybfc4j7ap40y82f03hxfxb7lzq5cqmcv";
+ sha256 = "sha256-096oSvc9DidURGKE0FNEBOQz82+RGg6aJo8o9HhaSp0=";
};
makeWrapperArgs = [
"--prefix" "PATH" ":" (lib.makeBinPath [ nixFlakes git ])
];
+ doCheck = false;
+
meta = with lib; {
description = "Review pull-requests on https://github.com/NixOS/nixpkgs";
homepage = "https://github.com/Mic92/nixpkgs-review";
diff --git a/pkgs/tools/security/badtouch/default.nix b/pkgs/tools/security/badtouch/default.nix
new file mode 100644
index 00000000000..ea74bbb4fc3
--- /dev/null
+++ b/pkgs/tools/security/badtouch/default.nix
@@ -0,0 +1,50 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, installShellFiles
+, libcap
+, openssl
+, pkg-config
+, rustPlatform
+, Security
+, zlib
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "badtouch";
+ version = "0.7.3";
+
+ src = fetchFromGitHub {
+ owner = "kpcyrd";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "05dzwx9y8zh0y9zd4mibp02255qphc6iqy916fkm3ahaw0rg84h3";
+ };
+
+ cargoSha256 = "0mmglgz037dk3g7qagf1dyss5hvvsdy0m5m1h6c3rk5bp5kjzg87";
+
+ nativeBuildInputs = [
+ installShellFiles
+ pkg-config
+ ];
+
+ buildInputs = [
+ libcap
+ zlib
+ openssl
+ ] ++ lib.optional stdenv.isDarwin Security;
+
+ postInstall = ''
+ installManPage docs/${pname}.1
+ '';
+
+ # Tests requires access to httpin.org
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Scriptable network authentication cracker";
+ homepage = "https://github.com/kpcyrd/badtouch";
+ license = with licenses; [ gpl3Only ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/security/bettercap/default.nix b/pkgs/tools/security/bettercap/default.nix
index 1383de79feb..e50de9fcfcd 100644
--- a/pkgs/tools/security/bettercap/default.nix
+++ b/pkgs/tools/security/bettercap/default.nix
@@ -10,16 +10,16 @@
buildGoModule rec {
pname = "bettercap";
- version = "2.30.2";
+ version = "2.31.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
- sha256 = "sha256-5CAWMW0u/8BUn/8JJBApyHGH+/Tz8hzAmSChoT2gFr8=";
+ sha256 = "sha256-PmS4ox1ZaHrBGJAdNByott61rEvfmR1ZJ12ut0MGtrc=";
};
- vendorSha256 = "sha256-fApxHxdzEEc+M+U5f0271VgrkXTGkUD75BpDXpVYd5k=";
+ vendorSha256 = "sha256-3j64Z4BQhAbUtoHJ6IT1SCsKxSeYZRxSO3K2Nx9Vv4w=";
doCheck = false;
@@ -30,10 +30,12 @@ buildGoModule rec {
meta = with lib; {
description = "A man in the middle tool";
longDescription = ''
- BetterCAP is a powerful, flexible and portable tool created to perform various types of MITM attacks against a network, manipulate HTTP, HTTPS and TCP traffic in realtime, sniff for credentials and much more.
+ BetterCAP is a powerful, flexible and portable tool created to perform various
+ types of MITM attacks against a network, manipulate HTTP, HTTPS and TCP traffic
+ in realtime, sniff for credentials and much more.
'';
homepage = "https://www.bettercap.org/";
- license = with licenses; gpl3;
+ license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ y0no ];
};
}
diff --git a/pkgs/tools/security/cosign/default.nix b/pkgs/tools/security/cosign/default.nix
index c0ef3b7400a..eb33d7dbb5f 100644
--- a/pkgs/tools/security/cosign/default.nix
+++ b/pkgs/tools/security/cosign/default.nix
@@ -1,25 +1,35 @@
-{ lib, buildGoModule, fetchFromGitHub }:
+{ stdenv, lib, buildGoModule, fetchFromGitHub, pcsclite, pkg-config, PCSC }:
buildGoModule rec {
pname = "cosign";
- version = "0.2.0";
+ version = "0.3.1";
src = fetchFromGitHub {
owner = "sigstore";
repo = pname;
rev = "v${version}";
- sha256 = "1zwb2q62ngb2zh1hasvq7r7pmrjlpgfhs5raibbhkxbk5kayvmii";
+ sha256 = "1gfzard6bh78xxgjk14c9zmdplppkcjqxhvfazcbv8qppjl2pbbd";
};
- vendorSha256 = "0nwbjaps4z5fhiknbj9pybxb6kgwb1vf2qhy0mzpycprf04q6g0v";
+ buildInputs =
+ lib.optional stdenv.isLinux (lib.getDev pcsclite)
+ ++ lib.optionals stdenv.isDarwin [ PCSC ];
+
+ nativeBuildInputs = [ pkg-config ];
+
+ vendorSha256 = "15163v484rv08rn439y38r9spyqn3lf4q4ly8xr18nnf4bs3h6y2";
subPackages = [ "cmd/cosign" ];
+ preBuild = ''
+ buildFlagsArray+=("-ldflags" "-s -w -X github.com/sigstore/cosign/cmd/cosign/cli.gitVersion=v${version}")
+ '';
+
meta = with lib; {
homepage = "https://github.com/sigstore/cosign";
changelog = "https://github.com/sigstore/cosign/releases/tag/v${version}";
description = "Container Signing CLI with support for ephemeral keys and Sigstore signing";
license = licenses.asl20;
- maintainers = with maintainers; [ lesuisse ];
+ maintainers = with maintainers; [ lesuisse jk ];
};
}
diff --git a/pkgs/tools/security/cryptomator/default.nix b/pkgs/tools/security/cryptomator/default.nix
index 1cc0045a5b2..ec18a5ed10c 100644
--- a/pkgs/tools/security/cryptomator/default.nix
+++ b/pkgs/tools/security/cryptomator/default.nix
@@ -6,20 +6,20 @@
let
pname = "cryptomator";
- version = "1.5.14";
+ version = "1.5.15";
src = fetchFromGitHub {
owner = "cryptomator";
repo = "cryptomator";
rev = version;
- sha256 = "05zgan1i2dzipzw8x510lg2l40dz9hvk43nrwpi0kg9l1qs9sxrq";
+ sha256 = "06n7wda7gfalvsg1rlcm51ss73nlbhh95z6zq18yvn040clkzkij";
};
icons = fetchFromGitHub {
owner = "cryptomator";
repo = "cryptomator-linux";
rev = version;
- sha256 = "0gb5sd5bkpxv4hff1i09rxr90pi5d15vjsfrk9m8221xiypqmccp";
+ sha256 = "1sqbx858zglv0xkpjya0cpbkxf2hkj1xvxhnir3176y2xyjv6aib";
};
# perform fake build to make a fixed-output derivation out of the files downloaded from maven central (120MB)
@@ -44,7 +44,7 @@ let
outputHashAlgo = "sha256";
outputHashMode = "recursive";
- outputHash = "0gvpjc77g99vcwk77nknvg8z33xbskcfwx3015nhhc089b2frq02";
+ outputHash = "195ysv9l861y9d1lvmvi7wmk172ynlba9n233blpaigq88cjn208";
};
in stdenv.mkDerivation rec {
@@ -75,7 +75,7 @@ in stdenv.mkDerivation rec {
--set JAVA_HOME "${jre.home}"
# install desktop entry and icons
- cp -r ${icons}/resources/appimage/AppDir/usr $out/
+ cp -r ${icons}/resources/appimage/AppDir/usr/* $out/
'';
nativeBuildInputs = [ autoPatchelfHook maven makeWrapper wrapGAppsHook jdk ];
diff --git a/pkgs/tools/security/dnsx/default.nix b/pkgs/tools/security/dnsx/default.nix
index 9b1457554fc..b294bb6281b 100644
--- a/pkgs/tools/security/dnsx/default.nix
+++ b/pkgs/tools/security/dnsx/default.nix
@@ -5,16 +5,16 @@
buildGoModule rec {
pname = "dnsx";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "dnsx";
rev = "v${version}";
- sha256 = "sha256-CjWFXYU34PE4I9xihQbPxVcxLyiMCYueuaB/LaXhHQg=";
+ sha256 = "sha256-k71Pw6XdOFMUf7w7QAAxqQkmkCINl+3KApkIPRyAQLM=";
};
- vendorSha256 = "sha256-vTXvlpXpFf78Cwxq/y6ysSeXM3g71kHBn9zd6c4mxlk=";
+ vendorSha256 = "sha256-YA0XZSXmpAcNEFutrBbQE8DN7v5hcva0fscemEMLewU=";
meta = with lib; {
description = "Fast and multi-purpose DNS toolkit";
diff --git a/pkgs/tools/security/earlybird/default.nix b/pkgs/tools/security/earlybird/default.nix
new file mode 100644
index 00000000000..30916acda72
--- /dev/null
+++ b/pkgs/tools/security/earlybird/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+buildGoModule {
+ pname = "earlybird";
+ version = "1.25.0";
+
+ src = fetchFromGitHub {
+ owner = "americanexpress";
+ repo = "earlybird";
+ # According to the GitHub repo, the latest version *is* 1.25.0, but they
+ # tagged it as "refs/heads/main-2"
+ rev = "4f365f1c02972dc0a68a196a262912d9c4325b21";
+ sha256 = "UZXHYBwBmb9J1HrE/htPZcKvZ+7mc+oXnUtzgBmBgN4=";
+ };
+
+ vendorSha256 = "oSHBR1EvK/1+cXqGNCE9tWn6Kd/BwNY3m5XrKCAijhA=";
+
+ meta = with lib; {
+ description = "A sensitive data detection tool capable of scanning source code repositories for passwords, key files, and more";
+ homepage = "https://github.com/americanexpress/earlybird";
+ license = licenses.asl20;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/tools/security/ffuf/default.nix b/pkgs/tools/security/ffuf/default.nix
index 6af8b6fcba9..9c8beeab3d9 100644
--- a/pkgs/tools/security/ffuf/default.nix
+++ b/pkgs/tools/security/ffuf/default.nix
@@ -1,25 +1,21 @@
-{ buildGoModule
+{ lib
+, buildGoModule
, fetchFromGitHub
-, lib
}:
buildGoModule rec {
pname = "ffuf";
- version = "1.2.1";
+ version = "1.3.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
- sha256 = "sha256-XSdFLfSYDdKI7BYo9emYanvZeSFGxiNLYxuw5QKAyRc=";
+ sha256 = "sha256-0ckpEiXxen2E9IzrsmKoEKagoJ5maAbH1tHKgQjoCjo=";
};
vendorSha256 = "sha256-szT08rIozAuliOmge5RFX4NeVrJ2pCVyfotrHuvc0UU=";
- # tests don't pass due to an issue with the memory addresses
- # https://github.com/ffuf/ffuf/issues/367
- doCheck = false;
-
meta = with lib; {
description = "Fast web fuzzer written in Go";
longDescription = ''
diff --git a/pkgs/tools/security/flare-floss/default.nix b/pkgs/tools/security/flare-floss/default.nix
new file mode 100644
index 00000000000..954dd07d6ab
--- /dev/null
+++ b/pkgs/tools/security/flare-floss/default.nix
@@ -0,0 +1,46 @@
+{ lib
+, python2
+, fetchFromGitHub
+}:
+python2.pkgs.buildPythonPackage rec {
+ pname = "flare-floss";
+ version = "1.7.0";
+
+ src = fetchFromGitHub {
+ owner = "fireeye";
+ repo = "flare-floss";
+ rev = "v${version}";
+ sha256 = "GMOA1+qM2A/Qw33kOTIINEvjsfqjWQWBXHNemh3IK8w=";
+ };
+
+ propagatedBuildInputs = with python2.pkgs; [
+ pyyaml
+ simplejson
+ tabulate
+ vivisect
+ plugnplay
+ viv-utils
+ enum34
+ ];
+
+ checkInputs = [
+ python2.pkgs.pytestCheckHook
+ ];
+
+ disabledTests = [
+ # test data is in a submodule
+ "test_main"
+ ];
+
+ pythonImportsCheck = [
+ "floss"
+ "floss.plugins"
+ ];
+
+ meta = with lib; {
+ description = "Automatically extract obfuscated strings from malware";
+ homepage = "https://github.com/fireeye/flare-floss";
+ license = licenses.asl20;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/tools/security/grype/default.nix b/pkgs/tools/security/grype/default.nix
index 13bbdbb99d4..5db1f1d20e7 100644
--- a/pkgs/tools/security/grype/default.nix
+++ b/pkgs/tools/security/grype/default.nix
@@ -6,16 +6,16 @@
buildGoModule rec {
pname = "grype";
- version = "0.9.0";
+ version = "0.10.2";
src = fetchFromGitHub {
owner = "anchore";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-X67TEHKmKKuTFGo55ZVkYVNw4f/d8aU2b/FQsq1OIJg=";
+ sha256 = "sha256-kKzrV2TTO8NmB3x27ZStMZpSIRGwm5Ev+cPGwT50FEU=";
};
- vendorSha256 = "sha256-SGO8RKSOK0PHqSIJfTdcuAmqMtFuo9MBdiEylDUpOFo=";
+ vendorSha256 = "sha256-PC2n6+gPDxpG8RTAmCfK4P40yfxqlleYI6Ex4FtPjk4=";
propagatedBuildInputs = [ docker ];
diff --git a/pkgs/tools/security/hfinger/default.nix b/pkgs/tools/security/hfinger/default.nix
index 9e053276ecf..8116c222d07 100644
--- a/pkgs/tools/security/hfinger/default.nix
+++ b/pkgs/tools/security/hfinger/default.nix
@@ -6,14 +6,14 @@
python3.pkgs.buildPythonApplication rec {
pname = "hfinger";
- version = "0.2.0";
+ version = "0.2.1";
disabled = python3.pythonOlder "3.3";
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = pname;
rev = "v${version}";
- sha256 = "1vz8mf572qyng684fvb9gdwaaiybk7mjmikbymvjvy24d10raak1";
+ sha256 = "sha256-QKnrprDDBq+D8N1brkqgcfK4E+6ssvgPtRaSxkF0C84=";
};
propagatedBuildInputs = with python3.pkgs; [
diff --git a/pkgs/tools/security/honeytrap/default.nix b/pkgs/tools/security/honeytrap/default.nix
new file mode 100644
index 00000000000..735d5d69bd8
--- /dev/null
+++ b/pkgs/tools/security/honeytrap/default.nix
@@ -0,0 +1,28 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+buildGoModule {
+ pname = "honeytrap";
+ version = "unstable-2020-12-10";
+
+ src = fetchFromGitHub {
+ owner = "honeytrap";
+ repo = "honeytrap";
+ rev = "affd7b21a5aa1b57f086e6871753cb98ce088d76";
+ sha256 = "y1SWlBFgX3bFoSRGJ45DdC1DoIK5BfO9Vpi2h57wWtU=";
+ };
+
+ # Otherwise, will try to install a "scripts" binary; it's only used in
+ # dockerize.sh, which we don't care about.
+ subPackages = [ "." ];
+
+ vendorSha256 = "W8w66weYzCpZ+hmFyK2F6wdFz6aAZ9UxMhccNy1X1R8=";
+
+ meta = with lib; {
+ description = "Advanced Honeypot framework";
+ homepage = "https://github.com/honeytrap/honeytrap";
+ license = licenses.asl20;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/tools/security/ldeep/default.nix b/pkgs/tools/security/ldeep/default.nix
index db4d14ba3ed..82d0456a05b 100644
--- a/pkgs/tools/security/ldeep/default.nix
+++ b/pkgs/tools/security/ldeep/default.nix
@@ -10,11 +10,11 @@
buildPythonApplication rec {
pname = "ldeep";
- version = "1.0.10";
+ version = "1.0.11";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-/7mcmAj69NmuiK+xlQijAk39sMLDX8kHatmSI6XYbwE=";
+ sha256 = "sha256-MYVC8fxLW85n8uZVMhb2Zml1lQ8vW9gw/eRLcmemQx4=";
};
propagatedBuildInputs = [
diff --git a/pkgs/tools/security/libmodsecurity/default.nix b/pkgs/tools/security/libmodsecurity/default.nix
index 2222316a742..03aed8c50e0 100644
--- a/pkgs/tools/security/libmodsecurity/default.nix
+++ b/pkgs/tools/security/libmodsecurity/default.nix
@@ -4,14 +4,14 @@
stdenv.mkDerivation rec {
pname = "libmodsecurity";
- version = "3.0.3";
+ version = "3.0.4";
src = fetchFromGitHub {
owner = "SpiderLabs";
repo = "ModSecurity";
fetchSubmodules = true;
rev = "v${version}";
- sha256 = "00g2407g2679zv73q67zd50z0f1g1ij734ssv2pp77z4chn5dzib";
+ sha256 = "07vry10cdll94sp652hwapn0ppjv3mb7n2s781yhy7hssap6f2vp";
};
nativeBuildInputs = [ autoreconfHook pkg-config doxygen ];
diff --git a/pkgs/tools/security/ntlmrecon/default.nix b/pkgs/tools/security/ntlmrecon/default.nix
new file mode 100644
index 00000000000..d24d4ed4d68
--- /dev/null
+++ b/pkgs/tools/security/ntlmrecon/default.nix
@@ -0,0 +1,35 @@
+{ lib
+, fetchFromGitHub
+, python3
+}:
+
+python3.pkgs.buildPythonApplication rec {
+ pname = "ntlmrecon";
+ version = "0.4";
+ disabled = python3.pythonOlder "3.6";
+
+ src = fetchFromGitHub {
+ owner = "pwnfoo";
+ repo = "NTLMRecon";
+ rev = "v-${version}";
+ sha256 = "0rrx49li2l9xlcax84qxjf60nbzp3fgq77c36yqmsp0pc9i89ah6";
+ };
+
+ propagatedBuildInputs = with python3.pkgs; [
+ colorama
+ iptools
+ requests
+ termcolor
+ ];
+
+ # Project has no tests
+ doCheck = false;
+ pythonImportsCheck = [ "ntlmrecon" ];
+
+ meta = with lib; {
+ description = "Information enumerator for NTLM authentication enabled web endpoints";
+ homepage = "https://github.com/pwnfoo/NTLMRecon";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/security/nwipe/default.nix b/pkgs/tools/security/nwipe/default.nix
index d87be0c2974..81ed9849bef 100644
--- a/pkgs/tools/security/nwipe/default.nix
+++ b/pkgs/tools/security/nwipe/default.nix
@@ -1,22 +1,42 @@
-{ lib, stdenv, fetchFromGitHub, ncurses, parted, automake, autoconf, pkg-config }:
+{ lib
+, stdenv
+, autoreconfHook
+, fetchFromGitHub
+, ncurses
+, parted
+, pkg-config
+}:
stdenv.mkDerivation rec {
- version = "0.28";
pname = "nwipe";
+ version = "0.30";
+
src = fetchFromGitHub {
owner = "martijnvanbrummelen";
repo = "nwipe";
rev = "v${version}";
- sha256 = "1aw905lmn1vm6klqn3q7445dwmwbjhcmwnkygpq9rddacgig1gdx";
+ sha256 = "sha256-cNZMFnk4L95jKTyGEUN3DlAChUNZlIjDdZqkkwPjehE=";
};
- nativeBuildInputs = [ automake autoconf pkg-config ];
- buildInputs = [ ncurses parted ];
- preConfigure = "sh init.sh || :";
+
+ nativeBuildInputs = [
+ autoreconfHook
+ pkg-config
+ ];
+
+ buildInputs = [
+ ncurses
+ parted
+ ];
+
+ preConfigure = ''
+ sh init.sh || :
+ '';
+
meta = with lib; {
description = "Securely erase disks";
homepage = "https://github.com/martijnvanbrummelen/nwipe";
- license = licenses.gpl2;
- maintainers = [ maintainers.woffs ];
+ license = licenses.gpl2Only;
+ maintainers = with maintainers; [ woffs ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/tools/security/passphrase2pgp/default.nix b/pkgs/tools/security/passphrase2pgp/default.nix
index a53e03c3c1e..55e19b94813 100644
--- a/pkgs/tools/security/passphrase2pgp/default.nix
+++ b/pkgs/tools/security/passphrase2pgp/default.nix
@@ -1,14 +1,14 @@
-{ lib, pandoc, buildGoModule, fetchFromGitHub }:
+{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "passphrase2pgp";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchFromGitHub {
owner = "skeeto";
repo = pname;
rev = "v${version}";
- hash = "sha256-Nje77tn55CKRU6igEA/6IquDhXVVQAdiez6nmN49di4";
+ hash = "sha256-VNOoYYnHsSgiSbVxlBwYUq0JsLa4BwZQSvMVSiyB6rg=";
};
vendorSha256 = "sha256-7q5nwkj4TP7VgHmV9YBbCB11yTPL7tK4gD+uN4Vw3Cs";
diff --git a/pkgs/tools/security/tor/default.nix b/pkgs/tools/security/tor/default.nix
index 0291d7bb3aa..2e1e1ae2a67 100644
--- a/pkgs/tools/security/tor/default.nix
+++ b/pkgs/tools/security/tor/default.nix
@@ -30,11 +30,11 @@ let
in
stdenv.mkDerivation rec {
pname = "tor";
- version = "0.4.5.6";
+ version = "0.4.5.7";
src = fetchurl {
url = "https://dist.torproject.org/${pname}-${version}.tar.gz";
- sha256 = "0cz78pjw2bc3kl3ziip1nhhbq89crv315rf1my3zmmgd9xws7jr2";
+ sha256 = "0x7hhl0svfc4yh9xvq7kkzgmwjcw1ak9i0794wjg4biy2fmclzs4";
};
outputs = [ "out" "geoip" ];
diff --git a/pkgs/tools/security/traitor/default.nix b/pkgs/tools/security/traitor/default.nix
new file mode 100644
index 00000000000..8718c92cd3d
--- /dev/null
+++ b/pkgs/tools/security/traitor/default.nix
@@ -0,0 +1,30 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+ pname = "traitor";
+ version = "0.0.3";
+
+ src = fetchFromGitHub {
+ owner = "liamg";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0mffh4k87ybl0mpglgi2yfwksygrh62mcmkcmfcbszlh5pagsch1";
+ };
+
+ vendorSha256 = null;
+
+ meta = with lib; {
+ description = "Automatic Linux privilege escalation";
+ longDescription = ''
+ Automatically exploit low-hanging fruit to pop a root shell. Traitor packages
+ up a bunch of methods to exploit local misconfigurations and vulnerabilities
+ (including most of GTFOBins) in order to pop a root shell.
+ '';
+ homepage = "https://github.com/liamg/traitor";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/security/wprecon/default.nix b/pkgs/tools/security/wprecon/default.nix
new file mode 100644
index 00000000000..401692bdf67
--- /dev/null
+++ b/pkgs/tools/security/wprecon/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+ pname = "wprecon";
+ version = "1.6.3a";
+
+ src = fetchFromGitHub {
+ owner = "blackbinn";
+ repo = pname;
+ rev = version;
+ sha256 = "0gqi4799ha3mf8r7ini0wj4ilkfsh80vnnxijfv9a343r6z5w0dn";
+ };
+
+ vendorSha256 = "1sab58shspll96rqy1rp659s0yikqdcx59z9b88d6p4w8a98ns87";
+
+ meta = with lib; {
+ description = "WordPress vulnerability recognition tool";
+ homepage = "https://github.com/blackbinn/wprecon";
+ # License Zero Noncommercial Public License 2.0.1
+ # https://github.com/blackbinn/wprecon/blob/master/LICENSE
+ license = with licenses; [ unfree ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/security/xorex/default.nix b/pkgs/tools/security/xorex/default.nix
new file mode 100644
index 00000000000..84919f54826
--- /dev/null
+++ b/pkgs/tools/security/xorex/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, python3
+, fetchFromGitHub
+}:
+python3.pkgs.buildPythonApplication rec {
+ pname = "xorex";
+ version = "0.3.0";
+ format = "other";
+
+ src = fetchFromGitHub {
+ owner = "Neo23x0";
+ repo = "xorex";
+ rev = version;
+ sha256 = "rBsOSXWnHRhpLmq20XBuGx8gGBM8ouMyOISkbzUcvE4=";
+ };
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/bin
+ chmod +x xorex.py
+ mv xorex.py $out/bin/xorex
+
+ runHook postInstall
+ '';
+
+ propagatedBuildInputs = with python3.pkgs; [
+ colorama
+ pefile
+ ];
+
+ meta = with lib; {
+ description = "XOR Key Extractor";
+ homepage = "https://github.com/Neo23x0/xorex";
+ license = licenses.asl20;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/tools/security/yarGen/default.nix b/pkgs/tools/security/yarGen/default.nix
new file mode 100644
index 00000000000..8a2d51b8e19
--- /dev/null
+++ b/pkgs/tools/security/yarGen/default.nix
@@ -0,0 +1,58 @@
+{ lib
+, python3
+, fetchFromGitHub
+, fetchpatch
+}:
+python3.pkgs.buildPythonApplication rec {
+ pname = "yarGen";
+ version = "0.23.4";
+ format = "other";
+
+ src = fetchFromGitHub {
+ owner = "Neo23x0";
+ repo = "yarGen";
+ rev = version;
+ sha256 = "6PJNAeeLAyUlZcIi0g57sO1Ex6atn7JhbK9kDbNrZ6A=";
+ };
+
+ patches = [
+ # https://github.com/Neo23x0/yarGen/pull/33
+ (fetchpatch {
+ name = "use-built-in-scandir.patch";
+ url = "https://github.com/Neo23x0/yarGen/commit/cae14ac8efeb5536885792cae99d1d0f7fb6fde3.patch";
+ sha256 = "0z6925r7n1iysld5c8li5nkm1dbxg8j7pn0626a4vic525vf8ndl";
+ })
+ # https://github.com/Neo23x0/yarGen/pull/34
+ (fetchpatch {
+ name = "use-cwd-for-abspath.patch";
+ url = "https://github.com/Neo23x0/yarGen/commit/441dafb702149f5728c2c6736fc08741a46deb26.patch";
+ sha256 = "lNp3oC2BM7tBzN4AetvPr+xJLz6KkZxQmsldeZaxJQU=";
+ })
+ ];
+
+ postPatch = ''
+ substituteInPlace yarGen.py \
+ --replace "./3rdparty/strings.xml" "$out/share/yarGen/3rdparty/strings.xml"
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ install -Dt "$out/bin" yarGen.py
+ install -Dt "$out/share/yarGen/3rdparty" 3rdparty/strings.xml
+
+ runHook postInstall
+ '';
+
+ propagatedBuildInputs = with python3.pkgs; [
+ pefile
+ lxml
+ ];
+
+ meta = with lib; {
+ description = "A generator for YARA rules";
+ homepage = "https://github.com/Neo23x0/yarGen";
+ license = licenses.bsd3;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/tools/security/yubikey-agent/default.nix b/pkgs/tools/security/yubikey-agent/default.nix
index d4f3e1567ca..305f5a4fe79 100644
--- a/pkgs/tools/security/yubikey-agent/default.nix
+++ b/pkgs/tools/security/yubikey-agent/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "yubikey-agent";
- version = "0.1.3";
+ version = "unstable-2021-02-18";
src = fetchFromGitHub {
owner = "FiloSottile";
repo = pname;
- rev = "v${version}";
- sha256 = "07gix5wrakn4z846zhvl66lzwx58djrfnn6m8v7vc69l9jr3kihr";
+ rev = "8cadc13d107757f8084d9d2b93ea64ff0c1748e8";
+ sha256 = "1lklgq9qkqil5s0g56wbhs0vpr9c1bd4ir7bkrjwqj75ygxim8ml";
};
buildInputs =
@@ -25,7 +25,7 @@ buildGoModule rec {
substituteInPlace main.go --replace 'notify-send' ${libnotify}/bin/notify-send
'';
- vendorSha256 = "128mlsagj3im6h0p0ndhzk29ya47g19im9dldx3nmddf2jlccj2h";
+ vendorSha256 = "1zx1w2is61471v4dlmr4wf714zqsc8sppik671p7s4fis5vccsca";
doCheck = false;
@@ -42,7 +42,7 @@ buildGoModule rec {
# See https://github.com/FiloSottile/yubikey-agent/pull/43
+ lib.optionalString stdenv.isLinux ''
mkdir -p $out/lib/systemd/user
- substitute ${./yubikey-agent.service} $out/lib/systemd/user/yubikey-agent.service \
+ substitute contrib/systemd/user/yubikey-agent.service $out/lib/systemd/user/yubikey-agent.service \
--replace 'ExecStart=yubikey-agent' "ExecStart=$out/bin/yubikey-agent"
'';
diff --git a/pkgs/tools/security/yubikey-agent/yubikey-agent.service b/pkgs/tools/security/yubikey-agent/yubikey-agent.service
deleted file mode 100644
index 7a91f902544..00000000000
--- a/pkgs/tools/security/yubikey-agent/yubikey-agent.service
+++ /dev/null
@@ -1,35 +0,0 @@
-[Unit]
-Description=Seamless ssh-agent for YubiKeys
-Documentation=https://filippo.io/yubikey-agent
-
-[Service]
-ExecStart=yubikey-agent -l %t/yubikey-agent/yubikey-agent.sock
-ExecReload=/bin/kill -HUP $MAINPID
-ProtectSystem=strict
-ProtectKernelLogs=yes
-ProtectKernelModules=yes
-ProtectKernelTunables=yes
-ProtectControlGroups=yes
-ProtectClock=yes
-ProtectHostname=yes
-PrivateTmp=yes
-PrivateDevices=yes
-PrivateUsers=yes
-IPAddressDeny=any
-RestrictAddressFamilies=AF_UNIX
-RestrictNamespaces=yes
-RestrictRealtime=yes
-RestrictSUIDSGID=yes
-LockPersonality=yes
-CapabilityBoundingSet=
-SystemCallFilter=@system-service
-SystemCallFilter=~@privileged @resources
-SystemCallErrorNumber=EPERM
-SystemCallArchitectures=native
-NoNewPrivileges=yes
-KeyringMode=private
-UMask=0177
-RuntimeDirectory=yubikey-agent
-
-[Install]
-WantedBy=default.target
diff --git a/pkgs/tools/system/awstats/default.nix b/pkgs/tools/system/awstats/default.nix
index 88162780cb7..e0fb92b519f 100644
--- a/pkgs/tools/system/awstats/default.nix
+++ b/pkgs/tools/system/awstats/default.nix
@@ -2,11 +2,11 @@
perlPackages.buildPerlPackage rec {
pname = "awstats";
- version = "7.7";
+ version = "7.8";
src = fetchurl {
url = "mirror://sourceforge/awstats/${pname}-${version}.tar.gz";
- sha256 = "0z3p77jnpjilajs9yv87r8xla2x1gjqlvrhpbgbh5ih73386v3j2";
+ sha256 = "1f6l0hd01jmz7hpg0py8qixxiq50n8gl37iypayskxmy05z8craa";
};
postPatch = ''
@@ -54,7 +54,7 @@ perlPackages.buildPerlPackage rec {
meta = with lib; {
description = "Real-time logfile analyzer to get advanced statistics";
- homepage = "http://awstats.org";
+ homepage = "https://awstats.org";
license = licenses.gpl3Plus;
platforms = platforms.unix;
};
diff --git a/pkgs/tools/system/gdu/default.nix b/pkgs/tools/system/gdu/default.nix
index c9479dca906..348d635584f 100644
--- a/pkgs/tools/system/gdu/default.nix
+++ b/pkgs/tools/system/gdu/default.nix
@@ -7,13 +7,13 @@
buildGoModule rec {
pname = "gdu";
- version = "4.10.0";
+ version = "4.10.1";
src = fetchFromGitHub {
owner = "dundee";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-qYxWjvXGaygoe88muQmQWlDJfM04wqxHy8+l7KO688U=";
+ sha256 = "sha256-zU4aSvfW1ph9PrXsAErCOedPn4oeeSh8tpnUj5LRlUw=";
};
vendorSha256 = "sha256-QiO5p0x8kmIN6f0uYS0IR2MlWtRYTHeZpW6Nmupjias=";
diff --git a/pkgs/tools/system/inxi/default.nix b/pkgs/tools/system/inxi/default.nix
index d529e9cf025..b03a7c14a7d 100644
--- a/pkgs/tools/system/inxi/default.nix
+++ b/pkgs/tools/system/inxi/default.nix
@@ -22,13 +22,13 @@ let
++ recommendedDisplayInformationPrograms;
in stdenv.mkDerivation rec {
pname = "inxi";
- version = "3.3.03-1";
+ version = "3.3.04-1";
src = fetchFromGitHub {
owner = "smxi";
repo = "inxi";
rev = version;
- sha256 = "sha256-OFjhMlBR1QUYUvpuFATCWZWZp2dop30Iz8qVCIK2UN0=";
+ sha256 = "sha256-/EutIHQGLiRcRD/r8LJYG7oJBb7EAhR5cn6QiC7zMOc=";
};
nativeBuildInputs = [ makeWrapper ];
@@ -57,6 +57,6 @@ in stdenv.mkDerivation rec {
changelog = "https://github.com/smxi/inxi/blob/${version}/inxi.changelog";
license = licenses.gpl3Plus;
platforms = platforms.unix;
- maintainers = with maintainers; [ primeos ];
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/tools/text/amber/default.nix b/pkgs/tools/text/amber/default.nix
index 632a318e862..1cd9e74f194 100644
--- a/pkgs/tools/text/amber/default.nix
+++ b/pkgs/tools/text/amber/default.nix
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, rustPlatform
-, Security
+, libiconv, Security
}:
rustPlatform.buildRustPackage rec {
@@ -15,7 +15,7 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "sha256-opRinhTmhZxpAwHNiVOLXL8boQf09Y1NXrWQ6HWQYQ0=";
- buildInputs = lib.optional stdenv.isDarwin Security;
+ buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
meta = with lib; {
description = "A code search-and-replace tool";
diff --git a/pkgs/tools/text/dcs/default.nix b/pkgs/tools/text/dcs/default.nix
new file mode 100644
index 00000000000..610b494439c
--- /dev/null
+++ b/pkgs/tools/text/dcs/default.nix
@@ -0,0 +1,48 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+, python3Packages
+, perl
+, zopfli
+, stdenv
+}:
+buildGoModule {
+ pname = "dcs";
+ version = "unstable-2021-04-07";
+
+ src = fetchFromGitHub {
+ owner = "Debian";
+ repo = "dcs";
+ rev = "da46accc4d55e9bfde1a6852ac5a9e730fcbbb2c";
+ sha256 = "N+6BXlKn1YTlh0ZdPNWa0nuJNcQtlUIc9TocM8cbzQk=";
+ };
+
+ vendorSha256 = "l2mziuisx0HzuP88rS5M+Wha6lu8P036wJYZlmzjWfs=";
+
+ # Depends on dcs binaries
+ doCheck = false;
+
+ nativeBuildInputs = [
+ python3Packages.slimit
+ (perl.withPackages (p: [ p.CSSMinifier ]))
+ zopfli
+ ];
+
+ postBuild = ''
+ make -C static -j$NIX_BUILD_CORES
+ '';
+
+ postInstall = ''
+ mkdir -p $out/share/dcs
+ cp -r cmd/dcs-web/templates $out/share/dcs
+ cp -r static $out/share/dcs
+ '';
+
+ meta = with lib; {
+ description = "Debian Code Search";
+ homepage = "https://github.com/Debian/dcs";
+ license = licenses.bsd3;
+ maintainers = teams.determinatesystems.members;
+ broken = stdenv.isAarch64;
+ };
+}
diff --git a/pkgs/tools/text/frangipanni/default.nix b/pkgs/tools/text/frangipanni/default.nix
index def134af505..58da1a4be4d 100644
--- a/pkgs/tools/text/frangipanni/default.nix
+++ b/pkgs/tools/text/frangipanni/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "frangipanni";
- version = "0.4.2";
+ version = "0.5.0";
src = fetchFromGitHub {
owner = "birchb1024";
repo = "frangipanni";
rev = "v${version}";
- sha256 = "sha256-RzXfsaT/CUyWCpB5JGgl511gxgvzerqgwjpORgzyPCQ=";
+ sha256 = "sha256-jIXyqwZWfCBSDTTodHTct4V5rjYv7h4Vcw7cXOFk17w=";
};
vendorSha256 = "sha256-TSN5M/UCTtfoTf1hDCfrJMCFdSwL/NVXssgt4aefom8=";
diff --git a/pkgs/tools/text/zoekt/default.nix b/pkgs/tools/text/zoekt/default.nix
new file mode 100644
index 00000000000..cb270f69ad1
--- /dev/null
+++ b/pkgs/tools/text/zoekt/default.nix
@@ -0,0 +1,29 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+, git
+}:
+buildGoModule {
+ pname = "zoekt";
+ version = "unstable-2021-03-17";
+
+ src = fetchFromGitHub {
+ owner = "google";
+ repo = "zoekt";
+ rev = "d92b3b80e582e735b2459413ee7d9dbbf294d629";
+ sha256 = "JdORh6bRdHsAYwsmdKY0OUavXfu3HsPQFkQjRBkcMBo=";
+ };
+
+ vendorSha256 = "d+Xvl6fleMO0frP9qr5tZgkzsnH5lPELwmEQEspD22M=";
+
+ checkInputs = [
+ git
+ ];
+
+ meta = with lib; {
+ description = "Fast trigram based code search";
+ homepage = "https://github.com/google/zoekt";
+ license = licenses.asl20;
+ maintainers = teams.determinatesystems.members;
+ };
+}
diff --git a/pkgs/tools/virtualization/linode-cli/default.nix b/pkgs/tools/virtualization/linode-cli/default.nix
index ba343fe657b..155daf41a7f 100644
--- a/pkgs/tools/virtualization/linode-cli/default.nix
+++ b/pkgs/tools/virtualization/linode-cli/default.nix
@@ -7,6 +7,7 @@
, requests
, pyyaml
, setuptools
+, installShellFiles
}:
let
@@ -48,14 +49,21 @@ buildPythonApplication rec {
cp data-3 linodecli/
'';
- # requires linode access token for unit tests, and running executable
- doCheck = false;
+ doInstallCheck = true;
+ installCheckPhase = ''
+ $out/bin/linode-cli --skip-config --version | grep ${version} > /dev/null
+ '';
+
+ nativeBuildInputs = [ installShellFiles ];
+ postInstall = ''
+ installShellCompletion --cmd linode-cli --bash <($out/bin/linode-cli --skip-config completion bash)
+ '';
meta = with lib; {
homepage = "https://github.com/linode/linode-cli";
description = "The Linode Command Line Interface";
license = licenses.bsd3;
- maintainers = with maintainers; [ ryantm ];
+ maintainers = with maintainers; [ ryantm superherointj ];
};
}
diff --git a/pkgs/tools/wayland/slurp/default.nix b/pkgs/tools/wayland/slurp/default.nix
index 107ef68da56..1105813550f 100644
--- a/pkgs/tools/wayland/slurp/default.nix
+++ b/pkgs/tools/wayland/slurp/default.nix
@@ -13,13 +13,13 @@
stdenv.mkDerivation rec {
pname = "slurp";
- version = "1.3.1";
+ version = "1.3.2";
src = fetchFromGitHub {
owner = "emersion";
repo = "slurp";
rev = "v${version}";
- sha256 = "1fby2v2ylcadgclds05wpkl9xi2r9dfz49dqyqpn20rjv1wnz3jv";
+ sha256 = "sha256-5ZB34rqLyZmfjT/clxNRDmF0qgITFZ5xt/gIEXQzvQE=";
};
nativeBuildInputs = [
diff --git a/pkgs/tools/wayland/ydotool/default.nix b/pkgs/tools/wayland/ydotool/default.nix
index 76ebd225006..4a75eac8c57 100644
--- a/pkgs/tools/wayland/ydotool/default.nix
+++ b/pkgs/tools/wayland/ydotool/default.nix
@@ -1,26 +1,34 @@
-{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, boost, libevdevplus, libuinputplus }:
+{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, boost, libevdevplus, libuinputplus, iodash, cxxopts}:
stdenv.mkDerivation rec {
pname = "ydotool";
- version = "0.1.8";
+ version = "unstable-2021-01-20";
src = fetchFromGitHub {
owner = "ReimuNotMoe";
repo = "ydotool";
- rev = "v${version}";
- sha256 = "0mx3636p0f8pznmwm4rlbwq7wrmjb2ygkf8b3a6ps96a7j1fw39l";
+ rev = "b1d041f52f7bac364d6539b1251d29c3b77c0f37";
+ sha256 = "1gzdbx6fv0dbcyia3yyzhv93az2gf90aszb9kcj5cnxywfpv9w9g";
};
- # disable static linking
+ # upstream decided to use a cpp package manager called cpm.
+ # we need to disable that because it wants networking, furthermore,
+ # it does some system folder creating which also needs to be disabled.
+ # Both changes are to respect the sandbox.
+ patches = [ ./fixup-cmakelists.patch ];
+
+
+ # cxxopts is a header only library.
+ # See pull request: https://github.com/ReimuNotMoe/ydotool/pull/105
postPatch = ''
substituteInPlace CMakeLists.txt --replace \
- "-static" \
- ""
+ "PUBLIC cxxopts" \
+ "PUBLIC"
'';
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
- boost libevdevplus libuinputplus
+ boost libevdevplus libuinputplus iodash cxxopts
];
meta = with lib; {
diff --git a/pkgs/tools/wayland/ydotool/fixup-cmakelists.patch b/pkgs/tools/wayland/ydotool/fixup-cmakelists.patch
new file mode 100644
index 00000000000..965d5c38d83
--- /dev/null
+++ b/pkgs/tools/wayland/ydotool/fixup-cmakelists.patch
@@ -0,0 +1,58 @@
+From bb8bc44d22060cd1215712117cf30eae09f4f6ba Mon Sep 17 00:00:00 2001
+From: Jappie Klooster
+Date: Fri, 2 Apr 2021 14:04:14 -0400
+Subject: [PATCH] Fixup cmaklists
+
+We remove cpm, which is a package manager for c++,
+which requires networking, so it's better just deleted.
+
+Furthermore we delete the adddirectory statements.
+These want to modify directories outside of the sandbox.
+---
+ CMakeLists.txt | 26 --------------------------
+ 1 file changed, 26 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index b5e8789..b797538 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -13,30 +13,6 @@ endif()
+
+ include(${CPM_DOWNLOAD_LOCATION})
+
+-CPMAddPackage(
+- NAME IODash
+- GITHUB_REPOSITORY YukiWorkshop/IODash
+- VERSION 0.1.0
+-)
+-
+-CPMAddPackage(
+- NAME libevdevPlus
+- GITHUB_REPOSITORY YukiWorkshop/libevdevPlus
+- VERSION 0.2.1
+-)
+-
+-CPMAddPackage(
+- NAME libuInputPlus
+- GITHUB_REPOSITORY YukiWorkshop/libuInputPlus
+- VERSION 0.2.1
+-)
+-
+-CPMAddPackage(
+- NAME cxxopts
+- GITHUB_REPOSITORY jarro2783/cxxopts
+- VERSION 3.0.0
+- GIT_TAG 2d8e17c4f88efce80e274cb03eeb902e055a91d3
+-)
+
+ set(SOURCE_FILES_LIBRARY
+ CommonIncludes.hpp
+@@ -74,5 +50,3 @@ add_executable(ydotool ${SOURCE_FILES_CLIENT})
+ target_link_libraries(ydotool ydotool_library dl pthread uInputPlus evdevPlus)
+ install(TARGETS ydotool DESTINATION ${CMAKE_INSTALL_BINDIR})
+
+-add_subdirectory(Daemon)
+-add_subdirectory(manpage)
+--
+2.29.2
+
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index cb219cc84ed..999c26e320b 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -130,10 +130,18 @@ mapAliases ({
cudatoolkit_7 = throw "cudatoolkit_7 has been removed in favor of newer versions"; # added 2021-02-14
cudatoolkit_7_5 = throw "cudatoolkit_7_5 has been removed in favor of newer versions"; # added 2021-02-14
cudatoolkit_8 = throw "cudatoolkit_8 has been removed in favor of newer versions"; # added 2021-02-14
+ cudatoolkit_9 = throw "cudatoolkit_9 has been removed in favor of newer versions"; # added 2021-04-18
+ cudatoolkit_9_0 = throw "cudatoolkit_9_0 has been removed in favor of newer versions"; # added 2021-04-18
+ cudatoolkit_9_1 = throw "cudatoolkit_9_1 has been removed in favor of newer versions"; # added 2021-04-18
+ cudatoolkit_9_2 = throw "cudatoolkit_9_2 has been removed in favor of newer versions"; # added 2021-04-18
cudnn_cudatoolkit_7 = throw "cudnn_cudatoolkit_7 has been removed in favor of newer versions"; # added 2021-02-14
cudnn_cudatoolkit_7_5 = throw "cudnn_cudatoolkit_7_5 has been removed in favor of newer versions"; # added 2021-02-14
cudnn6_cudatoolkit_8 = throw "cudnn6_cudatoolkit_8 has been removed in favor of newer versions"; # added 2021-02-14
cudnn_cudatoolkit_8 = throw "cudnn_cudatoolkit_8 has been removed in favor of newer versions"; # added 2021-02-14
+ cudnn_cudatoolkit_9 = throw "cudnn_cudatoolkit_9 has been removed in favor of newer versions"; # added 2021-04-18
+ cudnn_cudatoolkit_9_0 = throw "cudnn_cudatoolkit_9_0 has been removed in favor of newer versions"; # added 2021-04-18
+ cudnn_cudatoolkit_9_1 = throw "cudnn_cudatoolkit_9_1 has been removed in favor of newer versions"; # added 2021-04-18
+ cudnn_cudatoolkit_9_2 = throw "cudnn_cudatoolkit_9_2 has been removed in favor of newer versions"; # added 2021-04-18
cupsBjnp = cups-bjnp; # added 2016-01-02
cups_filters = cups-filters; # added 2016-08
cups-googlecloudprint = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006";
@@ -446,6 +454,7 @@ mapAliases ({
mpv-with-scripts = self.wrapMpv self.mpv-unwrapped { }; # added 2020-05-22
multipath_tools = multipath-tools; # added 2016-01-21
mupen64plus1_5 = mupen64plus; # added 2016-02-12
+ mxisd = throw "mxisd has been removed from nixpkgs as it has reached end of life, see https://github.com/kamax-matrix/mxisd/blob/535e0a5b96ab63cb0ddef90f6f42c5866407df95/EOL.md#end-of-life-notice . ma1sd may be a suitable alternative."; # added 2021-04-15
mysqlWorkbench = mysql-workbench; # added 2017-01-19
nagiosPluginsOfficial = monitoring-plugins;
ncat = nmap; # added 2016-01-26
@@ -466,6 +475,7 @@ mapAliases ({
nologin = shadow; # added 2018-04-25
nxproxy = nx-libs; # added 2019-02-15
nylas-mail-bin = throw "nylas-mail-bin was deprecated on 2019-09-11: abandoned by upstream";
+ oauth2_proxy = oauth2-proxy; # added 2021-04-18
opencascade_oce = opencascade; # added 2018-04-25
oblogout = throw "oblogout has been removed from nixpkgs, as it's archived upstream."; # added 2019-12-10
opencl-icd = ocl-icd; # added 2017-01-20
@@ -553,7 +563,6 @@ mapAliases ({
pmtools = acpica-tools; # added 2018-11-01
polarssl = mbedtls; # added 2018-04-25
poppler_qt5 = libsForQt5.poppler; # added 2015-12-19
- postgresql95 = postgresql_9_5;
postgresql96 = postgresql_9_6;
postgresql100 = throw "postgresql100 was deprecated on 2018-10-21: use postgresql_10 instead";
# postgresql plugins
@@ -593,6 +602,7 @@ mapAliases ({
phonon = throw "phonon: Please use libsForQt5.phonon, as Qt4 support in this package has been removed."; # added 2019-11-22
pynagsystemd = throw "pynagsystemd was removed as it was unmaintained and incompatible with recent systemd versions. Instead use its fork check_systemd."; # added 2020-10-24
python2nix = throw "python2nix has been removed as it is outdated. Use e.g. nixpkgs-pytools instead."; # added 2021-03-08
+ quagga = throw "quagga is no longer maintained upstream"; # added 2021-04-22
qca-qt5 = libsForQt5.qca-qt5; # added 2015-12-19
qcsxcad = libsForQt5.qcsxcad; # added 2020-11-05
qmk_firmware = throw "qmk_firmware has been removed because it was broken"; # added 2021-04-02
@@ -640,6 +650,7 @@ mapAliases ({
rubyPackages_2_5 = throw "rubyPackages_2_5 was deprecated in 2021-02: use a newer version of rubyPackages instead";
rubygems = throw "rubygems was deprecated on 2016-03-02: rubygems is now bundled with ruby";
rubyMinimal = throw "rubyMinimal was removed due to being unused";
+ runwayml = throw "runwayml is now a webapp"; # added 2021-04-17
rxvt_unicode-with-plugins = rxvt-unicode; # added 2020-02-02
rxvt_unicode = rxvt-unicode-unwrapped; # added 2020-02-02
subversion19 = throw "subversion19 has been removed as it has reached its end of life"; # added 2021-03-31
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 1e1617764f7..1da1e9d3457 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -404,6 +404,8 @@ in
find-cursor = callPackage ../tools/X11/find-cursor { };
+ flare-floss = callPackage ../tools/security/flare-floss { };
+
prefer-remote-fetch = import ../build-support/prefer-remote-fetch;
global-platform-pro = callPackage ../development/tools/global-platform-pro/default.nix { };
@@ -757,6 +759,8 @@ in
agda-pkg = callPackage ../development/tools/agda-pkg { };
+ agi = callPackage ../tools/graphics/agi { };
+
agrep = callPackage ../tools/text/agrep { };
aha = callPackage ../tools/text/aha { };
@@ -1048,6 +1052,8 @@ in
asls = callPackage ../development/tools/misc/asls { };
+ astc-encoder = callPackage ../tools/graphics/astc-encoder { };
+
asymptote = callPackage ../tools/graphics/asymptote {
texLive = texlive.combine { inherit (texlive) scheme-small epsf cm-super texinfo; };
gsl = gsl_1;
@@ -1272,7 +1278,9 @@ in
corsmisc = callPackage ../tools/security/corsmisc { };
- cosign = callPackage ../tools/security/cosign { };
+ cosign = callPackage ../tools/security/cosign {
+ inherit (darwin.apple_sdk.frameworks) PCSC;
+ };
cozy = callPackage ../applications/audio/cozy-audiobooks { };
@@ -1294,6 +1302,8 @@ in
cyclone-scheme = callPackage ../development/interpreters/cyclone { };
+ cyclonedx-python = callPackage ../tools/misc/cyclonedx-python { };
+
deltachat-electron = callPackage
../applications/networking/instant-messengers/deltachat-electron { };
@@ -1341,6 +1351,8 @@ in
enpass = callPackage ../tools/security/enpass { };
+ esbuild = callPackage ../development/tools/esbuild { };
+
essentia-extractor = callPackage ../tools/audio/essentia-extractor { };
esh = callPackage ../tools/text/esh { };
@@ -1592,6 +1604,10 @@ in
novacomd = callPackage ../development/mobile/webos/novacomd.nix { };
};
+ anevicon = callPackage ../tools/networking/anevicon {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
+
apprise = with python3Packages; toPythonApplication apprise;
aria2 = callPackage ../tools/networking/aria2 {
@@ -1660,6 +1676,10 @@ in
backblaze-b2 = callPackage ../development/tools/backblaze-b2 { };
+ badtouch = callPackage ../tools/security/badtouch {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
+
bandwhich = callPackage ../tools/networking/bandwhich {
inherit (darwin.apple_sdk.frameworks) Security;
};
@@ -1694,6 +1714,10 @@ in
bat-extras = recurseIntoAttrs (callPackages ../tools/misc/bat-extras { });
+ beauty-line-icon-theme = callPackage ../data/icons/beauty-line-icon-theme {
+ inherit (plasma5Packages) breeze-icons;
+ };
+
bc = callPackage ../tools/misc/bc { };
bdf2psf = callPackage ../tools/misc/bdf2psf { };
@@ -1738,6 +1762,8 @@ in
bindfs = callPackage ../tools/filesystems/bindfs { };
+ binwalk = with python3Packages; toPythonApplication binwalk;
+
birdtray = libsForQt5.callPackage ../applications/misc/birdtray { };
bitbucket-cli = python2Packages.bitbucket-cli;
@@ -2350,6 +2376,8 @@ in
dyndnsc = callPackage ../applications/networking/dyndns/dyndnsc { };
+ earlybird = callPackage ../tools/security/earlybird { };
+
earlyoom = callPackage ../os-specific/linux/earlyoom { };
EBTKS = callPackage ../development/libraries/science/biology/EBTKS { };
@@ -2538,6 +2566,8 @@ in
gif-for-cli = callPackage ../tools/misc/gif-for-cli { };
+ giph = callPackage ../applications/video/giph { };
+
gir-rs = callPackage ../development/tools/gir { };
gist = callPackage ../tools/text/gist { };
@@ -2663,6 +2693,8 @@ in
jellyfin-mpv-shim = python3Packages.callPackage ../applications/video/jellyfin-mpv-shim { };
+ jiten = callPackage ../applications/misc/jiten { };
+
jotta-cli = callPackage ../applications/misc/jotta-cli { };
joycond = callPackage ../os-specific/linux/joycond { };
@@ -2693,7 +2725,9 @@ in
lexicon = callPackage ../tools/admin/lexicon { };
- lief = callPackage ../development/libraries/lief {};
+ lief = callPackage ../development/libraries/lief {
+ python = python3;
+ };
libnbd = callPackage ../development/libraries/libnbd { };
@@ -2755,6 +2789,8 @@ in
meritous = callPackage ../games/meritous { };
+ oh-my-git = callPackage ../games/oh-my-git { };
+
opendune = callPackage ../games/opendune { };
merriweather = callPackage ../data/fonts/merriweather { };
@@ -2845,6 +2881,8 @@ in
nwipe = callPackage ../tools/security/nwipe { };
+ nx2elf = callPackage ../tools/compression/nx2elf { };
+
nx-libs = callPackage ../tools/X11/nx-libs { };
nyx = callPackage ../tools/networking/nyx { };
@@ -3343,6 +3381,7 @@ in
};
cjdns = callPackage ../tools/networking/cjdns { };
+ cjdns-tools = callPackage ../tools/admin/cjdns-tools { };
cjson = callPackage ../development/libraries/cjson { };
@@ -3439,6 +3478,8 @@ in
unifdef = callPackage ../development/tools/misc/unifdef { };
+ unify = with python3Packages; toPythonApplication unify;
+
unionfs-fuse = callPackage ../tools/filesystems/unionfs-fuse { };
usb-modeswitch = callPackage ../development/tools/misc/usb-modeswitch { };
@@ -3458,6 +3499,8 @@ in
gebaar-libinput = callPackage ../tools/inputmethods/gebaar-libinput { };
+ kime = callPackage ../tools/inputmethods/kime { };
+
libpinyin = callPackage ../development/libraries/libpinyin { };
libskk = callPackage ../development/libraries/libskk {
@@ -3638,10 +3681,6 @@ in
cudaPackages = recurseIntoAttrs (callPackage ../development/compilers/cudatoolkit {});
inherit (cudaPackages)
- cudatoolkit_9
- cudatoolkit_9_0
- cudatoolkit_9_1
- cudatoolkit_9_2
cudatoolkit_10
cudatoolkit_10_0
cudatoolkit_10_1
@@ -3655,10 +3694,6 @@ in
cudnnPackages = callPackages ../development/libraries/science/math/cudnn { };
inherit (cudnnPackages)
- cudnn_cudatoolkit_9
- cudnn_cudatoolkit_9_0
- cudnn_cudatoolkit_9_1
- cudnn_cudatoolkit_9_2
cudnn_cudatoolkit_10
cudnn_cudatoolkit_10_0
cudnn_cudatoolkit_10_1
@@ -3747,6 +3782,8 @@ in
dcraw = callPackage ../tools/graphics/dcraw { };
+ dcs = callPackage ../tools/text/dcs { };
+
dcfldd = callPackage ../tools/system/dcfldd { };
debianutils = callPackage ../tools/misc/debianutils { };
@@ -4146,6 +4183,8 @@ in
zeek = callPackage ../applications/networking/ids/zeek { };
+ zoekt = callPackage ../tools/text/zoekt { };
+
zoxide = callPackage ../tools/misc/zoxide { };
zzuf = callPackage ../tools/security/zzuf { };
@@ -5048,6 +5087,8 @@ in
godot = callPackage ../development/tools/godot {};
+ godot-export-templates = callPackage ../development/tools/godot/export-templates.nix { };
+
godot-headless = callPackage ../development/tools/godot/headless.nix { };
godot-server = callPackage ../development/tools/godot/server.nix { };
@@ -5574,6 +5615,10 @@ in
infamousPlugins = callPackage ../applications/audio/infamousPlugins { };
+ innernet = callPackage ../tools/networking/innernet {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
+
innoextract = callPackage ../tools/archivers/innoextract { };
input-utils = callPackage ../os-specific/linux/input-utils { };
@@ -5741,6 +5786,8 @@ in
jq = callPackage ../development/tools/jq { };
+ jql = callPackage ../development/tools/jql { };
+
jo = callPackage ../development/tools/jo { };
jrnl = python3Packages.callPackage ../applications/misc/jrnl { };
@@ -6105,8 +6152,6 @@ in
mxt-app = callPackage ../misc/mxt-app { };
- mxisd = callPackage ../servers/mxisd { };
-
naabu = callPackage ../tools/security/naabu { };
nagstamon = callPackage ../tools/misc/nagstamon {
@@ -6170,9 +6215,13 @@ in
nodejs-slim-15_x = callPackage ../development/web/nodejs/v15.nix {
enableNpm = false;
};
+ nodejs-16_x = callPackage ../development/web/nodejs/v16.nix { };
+ nodejs-slim-16_x = callPackage ../development/web/nodejs/v16.nix {
+ enableNpm = false;
+ };
# Update this when adding the newest nodejs major version!
- nodejs_latest = nodejs-15_x;
- nodejs-slim_latest = nodejs-slim-15_x;
+ nodejs_latest = nodejs-16_x;
+ nodejs-slim_latest = nodejs-slim-16_x;
nodePackages_latest = dontRecurseIntoAttrs (callPackage ../development/node-packages/default.nix {
nodejs = pkgs.nodejs_latest;
@@ -6198,6 +6247,7 @@ in
ispell = callPackage ../tools/text/ispell {};
+ iodash = callPackage ../development/libraries/iodash { };
jumanpp = callPackage ../tools/text/jumanpp {};
jump = callPackage ../tools/system/jump {};
@@ -6432,6 +6482,8 @@ in
macchanger = callPackage ../os-specific/linux/macchanger { };
+ macchina = callPackage ../tools/misc/macchina { };
+
madlang = haskell.lib.justStaticExecutables haskellPackages.madlang;
maeparser = callPackage ../development/libraries/maeparser { };
@@ -6480,7 +6532,9 @@ in
mandoc = callPackage ../tools/misc/mandoc { };
- manix = callPackage ../tools/nix/manix {};
+ manix = callPackage ../tools/nix/manix {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
marktext = callPackage ../applications/misc/marktext { };
@@ -6890,6 +6944,8 @@ in
notable = callPackage ../applications/misc/notable { };
+ ntlmrecon = callPackage ../tools/security/ntlmrecon { };
+
nvchecker = with python3Packages; toPythonApplication nvchecker;
miller = callPackage ../tools/text/miller { };
@@ -6956,6 +7012,7 @@ in
nnn = callPackage ../applications/misc/nnn { };
+ shfm = callPackage ../applications/misc/shfm { };
noise-repellent = callPackage ../applications/audio/noise-repellent { };
@@ -7142,6 +7199,8 @@ in
openrgb = libsForQt5.callPackage ../applications/misc/openrgb { };
+ openrussian-cli = callPackage ../misc/openrussian-cli { };
+
opensc = callPackage ../tools/security/opensc {
inherit (darwin.apple_sdk.frameworks) Carbon PCSC;
};
@@ -8445,6 +8504,8 @@ in
srcml = callPackage ../applications/version-management/srcml { };
+ srt-live-server = callPackage ../applications/video/srt-live-server { };
+
srt-to-vtt-cl = callPackage ../tools/cd-dvd/srt-to-vtt-cl { };
sourcehut = callPackage ../applications/version-management/sourcehut { };
@@ -8560,6 +8621,8 @@ in
swagger-codegen = callPackage ../tools/networking/swagger-codegen { };
+ swagger-codegen3 = callPackage ../tools/networking/swagger-codegen3 { };
+
swapview = callPackage ../os-specific/linux/swapview/default.nix { };
swec = callPackage ../tools/networking/swec { };
@@ -8659,6 +8722,8 @@ in
tea = callPackage ../tools/misc/tea { };
+ inherit (nodePackages) teck-programmer;
+
ted = callPackage ../tools/typesetting/ted { };
teamviewer = libsForQt514.callPackage ../applications/networking/remote/teamviewer { };
@@ -8781,6 +8846,8 @@ in
tmpwatch = callPackage ../tools/misc/tmpwatch { };
+ tmpmail = callPackage ../applications/networking/tmpmail { };
+
tmux = callPackage ../tools/misc/tmux { };
tmux-cssh = callPackage ../tools/misc/tmux-cssh { };
@@ -9205,6 +9272,8 @@ in
welkin = callPackage ../tools/graphics/welkin {};
+ wemux = callPackage ../tools/misc/wemux { };
+
wf-recorder = callPackage ../applications/video/wf-recorder { };
whipper = callPackage ../applications/audio/whipper { };
@@ -9249,6 +9318,8 @@ in
xe = callPackage ../tools/system/xe { };
+ xplr = callPackage ../applications/misc/xplr {};
+
testdisk = libsForQt5.callPackage ../tools/system/testdisk { };
testdisk-qt = testdisk.override { enableQt = true; };
@@ -9298,6 +9369,8 @@ in
tradcpp = callPackage ../development/tools/tradcpp { };
+ traitor = callPackage ../tools/security/traitor { };
+
tre = callPackage ../development/libraries/tre { };
tremor-rs = callPackage ../tools/misc/tremor-rs { };
@@ -10593,8 +10666,12 @@ in
graphviz = graphviz-nox;
});
- inherit (callPackage ../development/compilers/haxe { })
+ inherit (callPackage ../development/compilers/haxe {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ })
haxe_4_2
+ haxe_4_1
+ haxe_4_0
haxe_3_4
haxe_3_2
;
@@ -10903,7 +10980,7 @@ in
knightos-z80e = callPackage ../development/tools/knightos/z80e { };
- koka = haskellPackages.callPackage ../development/compilers/koka { };
+ koka = haskell.lib.justStaticExecutables (haskellPackages.callPackage ../development/compilers/koka { });
kotlin = callPackage ../development/compilers/kotlin { };
@@ -11238,6 +11315,10 @@ in
};
rust = rust_1_51;
+ mrustc = callPackage ../development/compilers/mrustc { };
+ mrustc-minicargo = callPackage ../development/compilers/mrustc/minicargo.nix { };
+ mrustc-bootstrap = callPackage ../development/compilers/mrustc/bootstrap.nix { };
+
rustPackages_1_45 = rust_1_45.packages.stable;
rustPackages_1_51 = rust_1_51.packages.stable;
rustPackages = rustPackages_1_51;
@@ -11642,7 +11723,8 @@ in
inherit (beam.interpreters)
erlang erlangR23 erlangR22 erlangR21 erlangR20 erlangR19 erlangR18
erlang_odbc erlang_javac erlang_odbc_javac erlang_basho_R16B02
- elixir elixir_1_11 elixir_1_10 elixir_1_9 elixir_1_8 elixir_1_7;
+ elixir elixir_1_11 elixir_1_10 elixir_1_9 elixir_1_8 elixir_1_7
+ elixir_ls;
erlang_nox = beam_nox.interpreters.erlang;
@@ -11657,15 +11739,6 @@ in
groovy = callPackage ../development/interpreters/groovy { };
- guile_1_8 = callPackage ../development/interpreters/guile/1.8.nix { };
-
- # Needed for autogen
- guile_2_0 = callPackage ../development/interpreters/guile/2.0.nix { };
-
- guile_2_2 = callPackage ../development/interpreters/guile { };
-
- guile = guile_2_2;
-
inherit (callPackages ../applications/networking/cluster/hadoop {
jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
})
@@ -11991,7 +12064,10 @@ in
dust = callPackage ../development/interpreters/pixie/dust.nix { };
buildRubyGem = callPackage ../development/ruby-modules/gem { };
- defaultGemConfig = callPackage ../development/ruby-modules/gem-config { };
+ defaultGemConfig = callPackage ../development/ruby-modules/gem-config {
+ inherit (darwin) DarwinTools cctools;
+ inherit (darwin.apple_sdk.frameworks) CoreServices;
+ };
bundix = callPackage ../development/ruby-modules/bundix { };
bundler = callPackage ../development/ruby-modules/bundler { };
bundlerEnv = callPackage ../development/ruby-modules/bundler-env { };
@@ -12087,8 +12163,19 @@ in
gImageReader = callPackage ../applications/misc/gImageReader { };
+ guile_1_8 = callPackage ../development/interpreters/guile/1.8.nix { };
+
+ # Needed for autogen
+ guile_2_0 = callPackage ../development/interpreters/guile/2.0.nix { };
+
+ guile_2_2 = callPackage ../development/interpreters/guile { };
+
+ guile = guile_2_2;
+
guile-cairo = callPackage ../development/guile-modules/guile-cairo { };
+ guile-commonmark = callPackage ../development/guile-modules/guile-commonmark { };
+
guile-fibers = callPackage ../development/guile-modules/guile-fibers { };
guile-gnome = callPackage ../development/guile-modules/guile-gnome {
@@ -12380,9 +12467,7 @@ in
wxGTK = wxGTK30;
};
- buck = callPackage ../development/tools/build-managers/buck {
- jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
- };
+ buck = callPackage ../development/tools/build-managers/buck { };
buildkite-agent = buildkite-agent3;
buildkite-agent2 = throw "pkgs.buildkite-agent2 has been discontinued. Please use pkgs.buildkite-agent (v3.x)";
@@ -12566,6 +12651,8 @@ in
csslint = callPackage ../development/web/csslint { };
+ css-html-js-minify = with python3Packages; toPythonApplication css-html-js-minify;
+
cvise = python3Packages.callPackage ../development/tools/misc/cvise {
inherit (llvmPackages_11) llvm clang-unwrapped;
};
@@ -16282,6 +16369,8 @@ in
libxls = callPackage ../development/libraries/libxls { };
+ libxlsxwriter = callPackage ../development/libraries/libxlsxwriter { };
+
libxmi = callPackage ../development/libraries/libxmi { };
libxml2 = callPackage ../development/libraries/libxml2 {
@@ -17464,6 +17553,8 @@ in
sqlar = callPackage ../development/libraries/sqlite/sqlar.nix { };
+ sqlitecpp = callPackage ../development/libraries/sqlitecpp { };
+
sqlite-interactive = appendToName "interactive" (sqlite.override { interactive = true; }).bin;
sqlite-jdbc = callPackage ../servers/sql/sqlite/jdbc { };
@@ -18664,6 +18755,15 @@ in
nginx = nginxStable;
+ nginxQuic = callPackage ../servers/http/nginx/quic.nix {
+ withPerl = false;
+ # We don't use `with` statement here on purpose!
+ # See https://github.com/NixOS/nixpkgs/pull/10474/files#r42369334
+ modules = [ nginxModules.rtmp nginxModules.dav nginxModules.moreheaders ];
+ # Use latest boringssl to allow http3 support
+ openssl = boringssl;
+ };
+
nginxStable = callPackage ../servers/http/nginx/stable.nix {
withPerl = false;
# We don't use `with` statement here on purpose!
@@ -18699,7 +18799,7 @@ in
nsq = callPackage ../servers/nsq { };
- oauth2_proxy = callPackage ../servers/oauth2_proxy {
+ oauth2-proxy = callPackage ../servers/oauth2-proxy {
buildGoModule = buildGo115Module;
};
@@ -18967,7 +19067,6 @@ in
timescaledb-tune = callPackage ../development/tools/database/timescaledb-tune { };
inherit (import ../servers/sql/postgresql pkgs)
- postgresql_9_5
postgresql_9_6
postgresql_10
postgresql_11
@@ -19059,8 +19158,6 @@ in
qremotecontrol-server = callPackage ../servers/misc/qremotecontrol-server { };
- quagga = callPackage ../servers/quagga { };
-
rabbitmq-server = callPackage ../servers/amqp/rabbitmq-server {
inherit (darwin.apple_sdk.frameworks) AppKit Carbon Cocoa;
elixir = beam_nox.interpreters.elixir_1_8;
@@ -20742,6 +20839,8 @@ in
# FIXME: `tcp-wrapper' is actually not OS-specific.
tcp_wrappers = callPackage ../os-specific/linux/tcp-wrappers { };
+ teck-udev-rules = callPackage ../os-specific/linux/teck-udev-rules { };
+
tiptop = callPackage ../os-specific/linux/tiptop { };
tpacpi-bat = callPackage ../os-specific/linux/tpacpi-bat { };
@@ -21131,6 +21230,7 @@ in
flat-remix-icon-theme = callPackage ../data/icons/flat-remix-icon-theme {
inherit (plasma5Packages) breeze-icons;
};
+ flat-remix-gtk = callPackage ../data/themes/flat-remix-gtk { };
font-awesome_4 = (callPackage ../data/fonts/font-awesome-5 { }).v4;
font-awesome_5 = (callPackage ../data/fonts/font-awesome-5 { }).v5;
@@ -21810,7 +21910,7 @@ in
acd-cli = callPackage ../applications/networking/sync/acd_cli {
inherit (python3Packages)
buildPythonApplication appdirs colorama dateutil
- requests requests_toolbelt sqlalchemy fusepy;
+ requests requests_toolbelt setuptools sqlalchemy fusepy;
};
adobe-reader = pkgsi686Linux.callPackage ../applications/misc/adobe-reader { };
@@ -22525,6 +22625,8 @@ in
dwm = callPackage ../applications/window-managers/dwm { };
+ dwmblocks = callPackage ../applications/misc/dwmblocks { };
+
dwm-status = callPackage ../applications/window-managers/dwm/dwm-status.nix { };
dynamips = callPackage ../applications/virtualization/dynamips { };
@@ -23079,6 +23181,10 @@ in
inherit buildPythonApplication;
};
+ foxotron = callPackage ../applications/graphics/foxotron {
+ inherit (darwin.apple_sdk.frameworks) AVFoundation Carbon Cocoa CoreAudio Kernel OpenGL;
+ };
+
foxtrotgps = callPackage ../applications/misc/foxtrotgps { };
fractal = callPackage ../applications/networking/instant-messengers/fractal { };
@@ -23429,6 +23535,8 @@ in
gxplugins-lv2 = callPackage ../applications/audio/gxplugins-lv2 { };
+ hachoir = with python3Packages; toPythonApplication hachoir;
+
hackrf = callPackage ../applications/radio/hackrf { };
hacksaw = callPackage ../tools/misc/hacksaw {};
@@ -23475,6 +23583,10 @@ in
hexedit = callPackage ../applications/editors/hexedit { };
+ himalaya = callPackage ../applications/networking/mailreaders/himalaya {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
+
hipchat = callPackage ../applications/networking/instant-messengers/hipchat { };
hivelytracker = callPackage ../applications/audio/hivelytracker { };
@@ -23521,6 +23633,8 @@ in
wxGTK = wxGTK30;
};
+ haunt = callPackage ../applications/misc/haunt { };
+
hugo = callPackage ../applications/misc/hugo { };
go-org = callPackage ../applications/misc/go-org { };
@@ -24219,6 +24333,8 @@ in
portaudio = null;
};
+ losslesscut-bin = callPackage ../applications/video/losslesscut-bin { };
+
loxodo = callPackage ../applications/misc/loxodo { };
lsd2dsl = libsForQt5.callPackage ../applications/misc/lsd2dsl { };
@@ -24589,6 +24705,7 @@ in
autoload = callPackage ../applications/video/mpv/scripts/autoload.nix {};
convert = callPackage ../applications/video/mpv/scripts/convert.nix {};
mpris = callPackage ../applications/video/mpv/scripts/mpris.nix {};
+ mpv-playlistmanager = callPackage ../applications/video/mpv/scripts/mpv-playlistmanager.nix {};
mpvacious = callPackage ../applications/video/mpv/scripts/mpvacious.nix {};
simple-mpv-webui = callPackage ../applications/video/mpv/scripts/simple-mpv-webui.nix {};
sponsorblock = callPackage ../applications/video/mpv/scripts/sponsorblock.nix {};
@@ -25077,6 +25194,8 @@ in
pamixer = callPackage ../applications/audio/pamixer { };
+ myxer = callPackage ../applications/audio/myxer { };
+
ncpamixer = callPackage ../applications/audio/ncpamixer { };
pan = callPackage ../applications/networking/newsreaders/pan { };
@@ -25680,6 +25799,8 @@ in
siproxd = callPackage ../applications/networking/siproxd { };
+ sish = callPackage ../tools/networking/sish { };
+
skypeforlinux = callPackage ../applications/networking/instant-messengers/skypeforlinux { };
skype4pidgin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/skype4pidgin { };
@@ -26203,6 +26324,11 @@ in
transcode = callPackage ../applications/audio/transcode { };
transmission = callPackage ../applications/networking/p2p/transmission { };
+ libtransmission = transmission.override {
+ installLib = true;
+ enableDaemon = false;
+ enableCli = false;
+ };
transmission-gtk = transmission.override { enableGTK3 = true; };
transmission-qt = transmission.override { enableQt = true; };
@@ -26759,6 +26885,7 @@ in
++ optional (cfg.enableStella or false) stella
++ optional (cfg.enableStella2014 or false) stella2014
++ optional (cfg.enableTGBDual or false) tgbdual
+ ++ optional (cfg.enableThePowderToy or false) the-powder-toy
++ optional (cfg.enableTIC80 or false) tic80
++ optional (cfg.enableVbaNext or false) vba-next
++ optional (cfg.enableVbaM or false) vba-m
@@ -26839,10 +26966,12 @@ in
};
kodi-wayland = callPackage ../applications/video/kodi {
+ jre_headless = jdk11_headless;
waylandSupport = true;
};
kodi-gbm = callPackage ../applications/video/kodi {
+ jre_headless = jdk11_headless;
gbmSupport = true;
};
@@ -27689,7 +27818,9 @@ in
ivan = callPackage ../games/ivan { };
- ja2-stracciatella = callPackage ../games/ja2-stracciatella { };
+ ja2-stracciatella = callPackage ../games/ja2-stracciatella {
+ inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
+ };
katago = callPackage ../games/katago { };
@@ -28940,9 +29071,7 @@ in
aspino = callPackage ../applications/science/logic/aspino {};
- beluga = callPackage ../applications/science/logic/beluga {
- ocamlPackages = ocaml-ng.ocamlPackages_4_07;
- };
+ beluga = callPackage ../applications/science/logic/beluga {};
boogie = dotnetPackages.Boogie;
@@ -29011,6 +29140,8 @@ in
hologram = callPackage ../tools/security/hologram { };
+ honeytrap = callPackage ../tools/security/honeytrap { };
+
tini = callPackage ../applications/virtualization/tini {};
ifstat-legacy = callPackage ../tools/networking/ifstat-legacy { };
@@ -30203,7 +30334,9 @@ in
rmount = callPackage ../tools/filesystems/rmount {};
- romdirfs = callPackage ../tools/filesystems/romdirfs {};
+ romdirfs = callPackage ../tools/filesystems/romdirfs {
+ stdenv = gccStdenv;
+ };
rss-glx = callPackage ../misc/screensavers/rss-glx { };
@@ -30547,6 +30680,8 @@ in
wordpress = callPackage ../servers/web-apps/wordpress { };
+ wprecon = callPackage ../tools/security/wprecon { };
+
wraith = callPackage ../applications/networking/irc/wraith {
openssl = openssl_1_0_2;
};
@@ -30573,6 +30708,8 @@ in
xortool = python3Packages.callPackage ../tools/security/xortool { };
+ xorex = callPackage ../tools/security/xorex { };
+
xow = callPackage ../misc/drivers/xow { };
xbps = callPackage ../tools/package-management/xbps { };
@@ -30641,6 +30778,8 @@ in
yara = callPackage ../tools/security/yara { };
+ yarGen = callPackage ../tools/security/yarGen { };
+
yaxg = callPackage ../tools/graphics/yaxg {};
yuzu-mainline = import ../misc/emulators/yuzu {
@@ -30831,6 +30970,8 @@ in
inherit (darwin) libresolv;
};
+ dnstwist = callPackage ../tools/networking/dnstwist {};
+
dsniff = callPackage ../tools/networking/dsniff {};
wal-g = callPackage ../tools/backup/wal-g { };
@@ -30913,8 +31054,6 @@ in
zrepl = callPackage ../tools/backup/zrepl { };
- runwayml = callPackage ../applications/graphics/runwayml {};
-
uhubctl = callPackage ../tools/misc/uhubctl {};
kodelife = callPackage ../applications/graphics/kodelife {};
diff --git a/pkgs/top-level/beam-packages.nix b/pkgs/top-level/beam-packages.nix
index aae127fd04e..ac9d4ab524e 100644
--- a/pkgs/top-level/beam-packages.nix
+++ b/pkgs/top-level/beam-packages.nix
@@ -111,7 +111,7 @@ rec {
# access for example elixir built with different version of Erlang, use
# `beam.packages.erlangR23.elixir`.
inherit (packages.erlang)
- elixir elixir_1_11 elixir_1_10 elixir_1_9 elixir_1_8 elixir_1_7;
+ elixir elixir_1_11 elixir_1_10 elixir_1_9 elixir_1_8 elixir_1_7 elixir_ls;
inherit (packages.erlang) lfe lfe_1_2 lfe_1_3;
};
diff --git a/pkgs/top-level/kodi-packages.nix b/pkgs/top-level/kodi-packages.nix
index fbdf45d4202..f9bf8dc8706 100644
--- a/pkgs/top-level/kodi-packages.nix
+++ b/pkgs/top-level/kodi-packages.nix
@@ -94,6 +94,8 @@ let self = rec {
vfs-libarchive = callPackage ../applications/video/kodi-packages/vfs-libarchive { };
+ youtube = callPackage ../applications/video/kodi-packages/youtube { };
+
# addon packages (dependencies)
certifi = callPackage ../applications/video/kodi-packages/certifi { };
diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix
index b8c8b0a9d93..d8c1f2d3e40 100644
--- a/pkgs/top-level/ocaml-packages.nix
+++ b/pkgs/top-level/ocaml-packages.nix
@@ -236,6 +236,8 @@ let
ctypes = callPackage ../development/ocaml-modules/ctypes { };
+ dap = callPackage ../development/ocaml-modules/dap { };
+
decompress = callPackage ../development/ocaml-modules/decompress { };
diet = callPackage ../development/ocaml-modules/diet { };
@@ -930,6 +932,8 @@ let
parse-argv = callPackage ../development/ocaml-modules/parse-argv { };
+ path_glob = callPackage ../development/ocaml-modules/path_glob { };
+
pbkdf = callPackage ../development/ocaml-modules/pbkdf { };
pcap-format = callPackage ../development/ocaml-modules/pcap-format { };
@@ -1018,7 +1022,11 @@ let
ocaml-protoc = callPackage ../development/ocaml-modules/ocaml-protoc { };
- ocaml_extlib = callPackage ../development/ocaml-modules/extlib { };
+ ocaml_extlib = ocaml_extlib-1-7-8;
+
+ ocaml_extlib-1-7-8 = callPackage ../development/ocaml-modules/extlib { };
+
+ ocaml_extlib-1-7-7 = callPackage ../development/ocaml-modules/extlib/1.7.7.nix { };
ocb-stubblr = callPackage ../development/ocaml-modules/ocb-stubblr { };
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index a3123546607..9db246eae43 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -4481,6 +4481,20 @@ let
propagatedBuildInputs = [ Clone ];
};
+ CSSMinifier = buildPerlPackage {
+ pname = "CSS-Minifier";
+ version = "0.01";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/P/PM/PMICHAUX/CSS-Minifier-0.01.tar.gz";
+ sha256 = "0Kk0m46LfoOrcM+IVM+7Qv8pwfbHyCmPIlfdIaoMf+8=";
+ };
+ meta = with lib; {
+ description = "Perl extension for minifying CSS";
+ license = licenses.artistic1;
+ maintainers = teams.determinatesystems.members;
+ };
+ };
+
CSSMinifierXS = buildPerlModule {
pname = "CSS-Minifier-XS";
version = "0.09";
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index f440e255f84..8169495a3e1 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -393,6 +393,8 @@ in {
androguard = callPackage ../development/python-modules/androguard { };
+ angr = callPackage ../development/python-modules/angr { };
+
aniso8601 = callPackage ../development/python-modules/aniso8601 { };
annexremote = callPackage ../development/python-modules/annexremote { };
@@ -1385,6 +1387,8 @@ in {
cld2-cffi = callPackage ../development/python-modules/cld2-cffi { };
+ cle = callPackage ../development/python-modules/cle { };
+
cleo = callPackage ../development/python-modules/cleo { };
clf = callPackage ../development/python-modules/clf { };
@@ -1627,6 +1631,8 @@ in {
cssmin = callPackage ../development/python-modules/cssmin { };
+ css-html-js-minify = callPackage ../development/python-modules/css-html-js-minify { };
+
css-parser = callPackage ../development/python-modules/css-parser { };
cssselect2 = callPackage ../development/python-modules/cssselect2 { };
@@ -1664,6 +1670,8 @@ in {
cx_oracle = callPackage ../development/python-modules/cx_oracle { };
+ cxxfilt = callPackage ../development/python-modules/cxxfilt { };
+
cycler = callPackage ../development/python-modules/cycler { };
cymem = callPackage ../development/python-modules/cymem { };
@@ -1773,6 +1781,8 @@ in {
debugpy = callPackage ../development/python-modules/debugpy { };
+ debut = callPackage ../development/python-modules/debut { };
+
decorator = callPackage ../development/python-modules/decorator { };
deep_merge = callPackage ../development/python-modules/deep_merge { };
@@ -1783,6 +1793,8 @@ in {
deeptoolsintervals = callPackage ../development/python-modules/deeptoolsintervals { };
+ deezer-python = callPackage ../development/python-modules/deezer-python { };
+
defcon = callPackage ../development/python-modules/defcon { };
deform = callPackage ../development/python-modules/deform { };
@@ -2105,6 +2117,8 @@ in {
ds4drv = callPackage ../development/python-modules/ds4drv { };
+ dsmr-parser = callPackage ../development/python-modules/dsmr-parser { };
+
dtopt = callPackage ../development/python-modules/dtopt { };
duckdb = callPackage ../development/python-modules/duckdb {
@@ -3065,6 +3079,8 @@ in {
habanero = callPackage ../development/python-modules/habanero { };
+ hachoir = callPackage ../development/python-modules/hachoir { };
+
ha-ffmpeg = callPackage ../development/python-modules/ha-ffmpeg { };
halo = callPackage ../development/python-modules/halo { };
@@ -3241,6 +3257,8 @@ in {
hyperframe = callPackage ../development/python-modules/hyperframe { };
+ hyperion-py = callPackage ../development/python-modules/hyperion-py { };
+
hyperkitty = callPackage ../servers/mail/mailman/hyperkitty.nix { };
hyperlink = callPackage ../development/python-modules/hyperlink { };
@@ -3691,6 +3709,8 @@ in {
karton-core = callPackage ../development/python-modules/karton-core { };
+ karton-dashboard = callPackage ../development/python-modules/karton-dashboard { };
+
karton-mwdb-reporter = callPackage ../development/python-modules/karton-mwdb-reporter { };
karton-yaramatcher = callPackage ../development/python-modules/karton-yaramatcher { };
@@ -3885,6 +3905,10 @@ in {
liblarch = callPackage ../development/python-modules/liblarch { };
+ liblzfse = callPackage ../development/python-modules/liblzfse {
+ inherit (pkgs) lzfse;
+ };
+
libmodulemd = pipe pkgs.libmodulemd [
toPythonModule
(p:
@@ -3996,6 +4020,10 @@ in {
license-expression = callPackage ../development/python-modules/license-expression { };
+ lief = (toPythonModule (pkgs.lief.override {
+ inherit python;
+ })).py;
+
lightblue = callPackage ../development/python-modules/lightblue { };
lightgbm = callPackage ../development/python-modules/lightgbm { };
@@ -4495,6 +4523,8 @@ in {
multi_key_dict = callPackage ../development/python-modules/multi_key_dict { };
+ multimethod = callPackage ../development/python-modules/multimethod { };
+
multipledispatch = callPackage ../development/python-modules/multipledispatch { };
multiprocess = callPackage ../development/python-modules/multiprocess { };
@@ -4847,6 +4877,8 @@ in {
omnilogic = callPackage ../development/python-modules/omnilogic { };
+ ondilo = callPackage ../development/python-modules/ondilo { };
+
onkyo-eiscp = callPackage ../development/python-modules/onkyo-eiscp { };
onnx = callPackage ../development/python-modules/onnx { };
@@ -4874,6 +4906,8 @@ in {
pythonPackages = self;
}));
+ openerz-api = callPackage ../development/python-modules/openerz-api { };
+
openhomedevice = callPackage ../development/python-modules/openhomedevice { };
openidc-client = callPackage ../development/python-modules/openidc-client { };
@@ -5245,6 +5279,8 @@ in {
pkuseg = callPackage ../development/python-modules/pkuseg { };
+ ppdeep = callPackage ../development/python-modules/ppdeep { };
+
pynndescent = callPackage ../development/python-modules/pynndescent { };
pynuki = callPackage ../development/python-modules/pynuki { };
@@ -5293,6 +5329,8 @@ in {
pluginbase = callPackage ../development/python-modules/pluginbase { };
+ plugnplay = callPackage ../development/python-modules/plugnplay { };
+
plugwise = callPackage ../development/python-modules/plugwise { };
plum-py = callPackage ../development/python-modules/plum-py { };
@@ -5496,6 +5534,8 @@ in {
pulsectl = callPackage ../development/python-modules/pulsectl { };
+ pur = callPackage ../development/python-modules/pur { };
+
pure-cdb = callPackage ../development/python-modules/pure-cdb { };
pure-eval = callPackage ../development/python-modules/pure-eval { };
@@ -5930,6 +5970,10 @@ in {
PyICU = callPackage ../development/python-modules/pyicu { };
+ pyimpfuzzy = callPackage ../development/python-modules/pyimpfuzzy {
+ inherit (pkgs) ssdeep;
+ };
+
pyinotify = callPackage ../development/python-modules/pyinotify { };
pyinputevent = callPackage ../development/python-modules/pyinputevent { };
@@ -6060,6 +6104,8 @@ in {
pymc3 = callPackage ../development/python-modules/pymc3 { };
+ pymdstat = callPackage ../development/python-modules/pymdstat { };
+
pymediainfo = callPackage ../development/python-modules/pymediainfo { };
pymediaroom = callPackage ../development/python-modules/pymediaroom { };
@@ -6426,6 +6472,8 @@ in {
pysmb = callPackage ../development/python-modules/pysmb { };
+ pysmart-smartx = callPackage ../development/python-modules/pysmart-smartx { };
+
pysmbc = callPackage ../development/python-modules/pysmbc { };
pysmf = callPackage ../development/python-modules/pysmf { };
@@ -6932,6 +6980,8 @@ in {
python-redis-lock = callPackage ../development/python-modules/python-redis-lock { };
+ python-registry = callPackage ../development/python-modules/python-registry { };
+
python-rtmidi = callPackage ../development/python-modules/python-rtmidi { };
python-sat = callPackage ../development/python-modules/python-sat { };
@@ -7149,6 +7199,8 @@ in {
pyx = callPackage ../development/python-modules/pyx { };
+ pyxbe = callPackage ../development/python-modules/pyxbe { };
+
pyxdg = callPackage ../development/python-modules/pyxdg { };
pyxeoma = callPackage ../development/python-modules/pyxeoma { };
@@ -7177,6 +7229,8 @@ in {
qds_sdk = callPackage ../development/python-modules/qds_sdk { };
+ qiling = callPackage ../development/python-modules/qiling { };
+
qimage2ndarray = callPackage ../development/python-modules/qimage2ndarray { };
qiskit-aer = callPackage ../development/python-modules/qiskit-aer { };
@@ -7368,6 +7422,8 @@ in {
requirements-detector = callPackage ../development/python-modules/requirements-detector { };
+ requirements-parser = callPackage ../development/python-modules/requirements-parser { };
+
resampy = callPackage ../development/python-modules/resampy { };
responses = callPackage ../development/python-modules/responses { };
@@ -7978,6 +8034,8 @@ in {
spark_parser = callPackage ../development/python-modules/spark_parser { };
+ sparklines = callPackage ../development/python-modules/sparklines { };
+
SPARQLWrapper = callPackage ../development/python-modules/sparqlwrapper { };
sparse = callPackage ../development/python-modules/sparse { };
@@ -8050,6 +8108,8 @@ in {
sphinx-jinja = callPackage ../development/python-modules/sphinx-jinja { };
+ sphinx-material = callPackage ../development/python-modules/sphinx-material { };
+
sphinx-navtree = callPackage ../development/python-modules/sphinx-navtree { };
sphinx_pypi_upload = callPackage ../development/python-modules/sphinx_pypi_upload { };
@@ -8276,6 +8336,8 @@ in {
tahoma-api = callPackage ../development/python-modules/tahoma-api { };
+ tailer = callPackage ../development/python-modules/tailer { };
+
tarman = callPackage ../development/python-modules/tarman { };
tasklib = callPackage ../development/python-modules/tasklib { };
@@ -8296,6 +8358,8 @@ in {
telethon-session-sqlalchemy = callPackage ../development/python-modules/telethon-session-sqlalchemy { };
+ telfhash = callPackage ../development/python-modules/telfhash { };
+
tempita = callPackage ../development/python-modules/tempita { };
tempora = callPackage ../development/python-modules/tempora { };
@@ -8365,6 +8429,8 @@ in {
termstyle = callPackage ../development/python-modules/termstyle { };
+ tern = callPackage ../development/python-modules/tern { };
+
teslajsonpy = callPackage ../development/python-modules/teslajsonpy { };
tess = callPackage ../development/python-modules/tess { };
@@ -8723,6 +8789,8 @@ in {
unifi = callPackage ../development/python-modules/unifi { };
+ unify = callPackage ../development/python-modules/unify { };
+
unifiled = callPackage ../development/python-modules/unifiled { };
units = callPackage ../development/python-modules/units { };
@@ -8741,6 +8809,8 @@ in {
untangle = callPackage ../development/python-modules/untangle { };
+ untokenize = callPackage ../development/python-modules/untokenize { };
+
upass = callPackage ../development/python-modules/upass { };
update_checker = callPackage ../development/python-modules/update_checker { };
@@ -8863,6 +8933,10 @@ in {
vispy = callPackage ../development/python-modules/vispy { };
+ vivisect = callPackage ../development/python-modules/vivisect { };
+
+ viv-utils = callPackage ../development/python-modules/viv-utils { };
+
vmprof = callPackage ../development/python-modules/vmprof { };
vncdo = callPackage ../development/python-modules/vncdo { };
@@ -9013,6 +9087,8 @@ in {
woob = callPackage ../development/python-modules/woob { };
+ woodblock = callPackage ../development/python-modules/woodblock { };
+
word2vec = callPackage ../development/python-modules/word2vec { };
wordcloud = callPackage ../development/python-modules/wordcloud { };
@@ -9358,5 +9434,7 @@ in {
zulip = callPackage ../development/python-modules/zulip { };
+ zwave-js-server-python = callPackage ../development/python-modules/zwave-js-server-python { };
+
zxcvbn = callPackage ../development/python-modules/zxcvbn { };
}
diff --git a/pkgs/top-level/ruby-packages.nix b/pkgs/top-level/ruby-packages.nix
index b25f854bdd0..1d928ce05a9 100644
--- a/pkgs/top-level/ruby-packages.nix
+++ b/pkgs/top-level/ruby-packages.nix
@@ -5,10 +5,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0clfsmkdqviwrjdc0fjqx3qs7xkq06bdl24f2qdyk4p2f0aszdw9";
+ sha256 = "0dr6w3h7i7xyqd04aw66x2ddm7xinvlw02pkk1sxczi8x21z16hf";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
actionmailbox = {
dependencies = ["actionpack" "activejob" "activerecord" "activestorage" "activesupport" "mail"];
@@ -16,10 +16,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "14qcia1l2yjga3azgc381mk75xrddspkpxxvswrr6rg9453i70wf";
+ sha256 = "0w3cq2m1qbmxp7yv3qs82ffn9y46vq5q04vqwxak6ln0ki0v4hn4";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
actionmailer = {
dependencies = ["actionpack" "actionview" "activejob" "activesupport" "mail" "rails-dom-testing"];
@@ -27,10 +27,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "17cnw2pi5gbll6wqqmp40wdxbg3v0kz1jmfdbg7kwdk8b4mkfqmw";
+ sha256 = "1wsa6kcgjx5am9hn44q2afg174m2gda4n8bfk5na17nj48s9g1ii";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
actionpack = {
dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"];
@@ -38,10 +38,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1mbmizxyl2k6z386zqvvzg3i8b91g7ag4hfjmm7fpbc8p6j4kjmb";
+ sha256 = "0brr9kbmmc4fr2x8a7kj88yv8whfjfvalik3h82ypxlbg5b1c9iz";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
actiontext = {
dependencies = ["actionpack" "activerecord" "activestorage" "activesupport" "nokogiri"];
@@ -49,10 +49,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "19dgv0zcq7k0wps7gbaiprrardqm74ija9zjydkv93anqqfw3rwd";
+ sha256 = "04f7x7ycg73zc2v3lhvrnl072f7nl0nhp0sspfa2sqq14v4akmmb";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
actionview = {
dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"];
@@ -60,10 +60,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1d68p974w96b3mg8q45cmwy2629dl615fm9in56fgb0k7vcrpazk";
+ sha256 = "0m009iki20hhwwj713bqdw57hmz650l7drfbajw32xn2qnawf294";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
activejob = {
dependencies = ["activesupport" "globalid"];
@@ -71,10 +71,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0pkiy5jy5xjgh4diw5wyc72w1r9s07p1qp1kpwv50a5q1ca12aw0";
+ sha256 = "0zjwcfr4qyff9ln4hhjb1csbjpvr3z4pdgvg8axvhcs86h4xpy2n";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
activemodel = {
dependencies = ["activesupport"];
@@ -82,10 +82,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "019gwxrbki4fr3n2c6g7qyyjw94z5qxjwalh2n69hh1anpcbrd98";
+ sha256 = "118slj94hif5g1maaijlxsywrq75h7qdz20bq62303pkrzabjaxm";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
activerecord = {
dependencies = ["activemodel" "activesupport"];
@@ -93,21 +93,21 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1ag8wpfayzbv8n9gf9ca2k8rm9yndsxybvf7jv451j9r822mxzm8";
+ sha256 = "1jva5iqnjmj76mhhxcvx6xzda071cy80bhxn3r79f76pvgwwyymg";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
activestorage = {
- dependencies = ["actionpack" "activejob" "activerecord" "activesupport" "marcel" "mimemagic"];
+ dependencies = ["actionpack" "activejob" "activerecord" "activesupport" "marcel" "mini_mime"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0kzslp0990fjyxvlsxb7kdysx28mc3zvay4q3zp2wbfnpl1ik41j";
+ sha256 = "1800ski0619mzyk2p2xcmy4xlym18g3lbqw8wb3ss06jhvn5dl5p";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
activesupport = {
dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo" "zeitwerk"];
@@ -115,10 +115,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1pflc2fch1bbgzk1rqgj21l6mgx025l92kd9arxjls98nf5am44v";
+ sha256 = "0l0khgrb7zn611xjnmygv5wdxh7wq645f613wldn5397q5w3l9lc";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
addressable = {
dependencies = ["public_suffix"];
@@ -136,10 +136,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1l3468czzjmxl93ap40hp7z94yxp4nbag0bxqs789bm30md90m2a";
+ sha256 = "04nc8x27hlzlrr5c2gn7mar4vdr0apw5xg22wp6m8dx3wqr04a0y";
type = "gem";
};
- version = "2.4.1";
+ version = "2.4.2";
};
atk = {
dependencies = ["glib2"];
@@ -167,10 +167,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "14arh1ixfsd6j5md0agyzvksm5svfkvchb90fp32nn7y3avcmc2h";
+ sha256 = "0vkq6c8y2jvaw03ynds5vjzl1v9wg608cimkd3bidzxc0jvk56z9";
type = "gem";
};
- version = "1.8.0";
+ version = "1.9.2";
};
bacon = {
groups = ["default"];
@@ -203,15 +203,15 @@
version = "11.1.3";
};
cairo = {
- dependencies = ["native-package-installer" "pkg-config"];
+ dependencies = ["native-package-installer" "pkg-config" "red-colors"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "00hiy6anibkjq9w77hg0lpgnkkbcxrfbz8wxv44jfzqbab8910wb";
+ sha256 = "0vbj9szp2xbnxqan8hppip8vm9fxpcmpx745y5fvg2scdh9f0p7s";
type = "gem";
};
- version = "1.16.6";
+ version = "1.17.5";
};
cairo-gobject = {
dependencies = ["cairo" "glib2"];
@@ -291,10 +291,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1jvpxf32l5y2ayj0jp9mv9n7vn61zingzd0s5f7490n584lwmvmg";
+ sha256 = "1y04ig8p9rparhff5dh3781pwf1xlirgq8p0fzvggjjpx761bvra";
type = "gem";
};
- version = "3.4.1";
+ version = "3.4.2";
};
cocoapods = {
dependencies = ["activesupport" "claide" "cocoapods-core" "cocoapods-deintegrate" "cocoapods-downloader" "cocoapods-plugins" "cocoapods-search" "cocoapods-stats" "cocoapods-trunk" "cocoapods-try" "colored" "escape" "fourflusher" "molinillo" "nap" "xcodeproj"];
@@ -354,10 +354,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1b91sfsriizsr08m1vn9j4sf9sb8vgsyr6xjnw18bpy66bpwsqca";
+ sha256 = "0syya8l1kz36069y7cx4f37aihpmbm4yd5wvifs3j8qzz8bpxpfi";
type = "gem";
};
- version = "0.0.2";
+ version = "0.0.3";
};
cocoapods-core = {
dependencies = ["activesupport" "fuzzy_match" "nap"];
@@ -458,10 +458,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1pwzrwp3sys5ad23lc49r3ja2ijzhzjfrq4bbrpbz1x5z7jsa77v";
+ sha256 = "0vpn0y2r91cv9kr2kh6rwh51ipi90iyjfya8ir9grxh1ngv179ck";
type = "gem";
};
- version = "2.2.0";
+ version = "2.2.2";
};
cocoapods-git_url_rewriter = {
groups = ["default"];
@@ -583,10 +583,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1ln4kywj4bx32qyqvr0byi3g4fk8yj026n00xch782x0147f8lka";
+ sha256 = "1z50v9y66kl0s9s84syd8vai77hhysdaymmgbdmpaq54bra6xk72";
type = "gem";
};
- version = "0.0.11";
+ version = "0.2.0";
};
cocoapods-wholemodule = {
groups = ["default"];
@@ -643,10 +643,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1vnxrbhi7cq3p4y2v9iwd10v1c7l15is4var14hwnb2jip4fyjzz";
+ sha256 = "0mr23wq0szj52xnj0zcn1k0c7j4v79wlwbijkpfcscqww3l6jlg3";
type = "gem";
};
- version = "1.1.7";
+ version = "1.1.8";
};
crass = {
groups = ["default"];
@@ -745,10 +745,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0wi81lynfdvbwhrc4ws746g3j8761vian4m9gxamdj9rjwj9jhls";
+ sha256 = "1bpdrsdqwv80qqc3f4xxzpii13lx9mlx3zay4bnmmscrx8c0p63z";
type = "gem";
};
- version = "1.3.4";
+ version = "1.3.5";
};
domain_name = {
dependencies = ["unf"];
@@ -808,10 +808,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0gggrgkcq839mamx7a8jbnp2h7x2ykfn34ixwskwb0lzx2ak17g9";
+ sha256 = "1cql2cxl9bg8gbmmlzl4kvpq7y0gjldgarsnxq35vpd7ga3h54w2";
type = "gem";
};
- version = "0.12.0";
+ version = "0.13.0";
};
eventmachine = {
groups = ["default"];
@@ -828,41 +828,61 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "16ij8617v3js03yj1zd32mmrf7kpi9l96bid5mpqk30c4mzai55r";
+ sha256 = "0jn8s74nxsh0vmxv2fjrrrc3b2cgp8d267dyn206hbw5ki4pkd85";
type = "gem";
};
- version = "0.78.1";
+ version = "0.80.1";
};
faraday = {
- dependencies = ["faraday-net_http" "multipart-post" "ruby2_keywords"];
+ dependencies = ["faraday-excon" "faraday-net_http" "faraday-net_http_persistent" "multipart-post" "ruby2_keywords"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1hmssd8pj4n7yq4kz834ylkla8ryyvhaap6q9nzymp93m1xq21kz";
+ sha256 = "0q646m07lfahakx5jdq77j004rcgfj6lkg13c0f84993gi78dhvi";
type = "gem";
};
- version = "1.3.0";
+ version = "1.4.1";
+ };
+ faraday-excon = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0h09wkb0k0bhm6dqsd47ac601qiaah8qdzjh8gvxfd376x1chmdh";
+ type = "gem";
+ };
+ version = "1.1.0";
};
faraday-net_http = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1kk5d1c5nxbmwawl5gcznwiscjz24nz3vdhxrlzvj7748c1qqr6d";
+ sha256 = "1fi8sda5hc54v1w3mqfl5yz09nhx35kglyx72w7b8xxvdr0cwi9j";
type = "gem";
};
- version = "1.0.0";
+ version = "1.0.1";
+ };
+ faraday-net_http_persistent = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0l2c835wl7gv34xp49fhd1bl4czkpw2g3ahqsak2251iqv5589ka";
+ type = "gem";
+ };
+ version = "1.1.0";
};
ffi = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "15hgiy09i8ywjihyzyvjvk42ivi3kmy6dm21s5sgg9j7y3h3zkkx";
+ sha256 = "0nq1fb3vbfylccwba64zblxy96qznxbys5900wd7gm9bpplmf432";
type = "gem";
};
- version = "1.14.2";
+ version = "1.15.0";
};
ffi-compiler = {
dependencies = ["ffi" "rake"];
@@ -1143,10 +1163,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1kr0bx9323fv5ys6nlhsy05kmwcbs94h6ac7ka9qqywy0vbdvrrv";
+ sha256 = "0g2fnag935zn2ggm5cn6k4s4xvv53v2givj1j90szmvavlpya96a";
type = "gem";
};
- version = "1.8.7";
+ version = "1.8.10";
};
iconv = {
groups = ["default"];
@@ -1174,10 +1194,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "02llgsg30jz9kpxs8jzv6rvzaylw7948xj2grp4vsfg54z20cwbm";
+ sha256 = "1vz0vp5lbp1bz2samyn8nk49vyh6zhvcqz35faq4i3kgsd4xlnhp";
type = "gem";
};
- version = "2.10.1";
+ version = "2.11.2";
};
jekyll = {
dependencies = ["addressable" "colorator" "em-websocket" "i18n" "jekyll-sass-converter" "jekyll-watch" "kramdown" "kramdown-parser-gfm" "liquid" "mercenary" "pathutil" "rouge" "safe_yaml" "terminal-table"];
@@ -1247,10 +1267,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "14ynyq1q483spj20ffl4xayfqx1a8qr761mqjfxczf8lwlap392n";
+ sha256 = "036i5fc09275ms49mw43mh4i9pwaap778ra2pmx06ipzyyjl6bfs";
type = "gem";
};
- version = "2.2.2";
+ version = "2.2.3";
};
kramdown = {
dependencies = ["rexml"];
@@ -1280,10 +1300,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1p1iviq8q9za2hg0vqyrarrc3mqfskgp7spxp37xj0kl3g89vswq";
+ sha256 = "0h2sc2la6dd808pfnd7vh66fqwc7xg3nd2jqr4pdqymxspk9zcsq";
type = "gem";
};
- version = "1.4.1";
+ version = "1.4.3";
};
libv8 = {
groups = ["default"];
@@ -1321,10 +1341,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "06hkw6mssx39fg3jqyq57czr5acd11nqs5631k0xs50lr2y2pv8p";
+ sha256 = "0h2v34xhi30w0d9gfzds2w6v89grq2gkpgvmdj9m8x1ld1845xnj";
type = "gem";
};
- version = "3.4.0";
+ version = "3.5.1";
};
loofah = {
dependencies = ["crass" "nokogiri"];
@@ -1332,10 +1352,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ndimir6k3kfrh8qrb7ir1j836l4r3qlwyclwjh88b86clblhszh";
+ sha256 = "1w9mbii8515p28xd4k72f3ab2g6xiyq15497ys5r8jn6m355lgi7";
type = "gem";
};
- version = "2.8.0";
+ version = "2.9.1";
};
mab = {
groups = ["default"];
@@ -1370,15 +1390,14 @@
version = "2.7.1";
};
marcel = {
- dependencies = ["mimemagic"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1nxbjmcyg8vlw6zwagf17l9y2mwkagmmkg95xybpn4bmf3rfnksx";
+ sha256 = "0bp001p687nsa4a8sp3q1iv8pfhs24w7s3avychjp64sdkg6jxq3";
type = "gem";
};
- version = "0.3.3";
+ version = "1.0.1";
};
markaby = {
dependencies = ["builder"];
@@ -1427,20 +1446,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ipjyfwn9nlvpcl8knq3jk4g5f12cflwdbaiqxcq1s7vwfwfxcag";
+ sha256 = "1phcq7z0zpipwd7y4fbqmlaqghv07fjjgrx99mwq3z3n0yvy7fmi";
type = "gem";
};
- version = "3.2020.1104";
- };
- mimemagic = {
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1qfqb9w76kmpb48frbzbyvjc0dfxh5qiw1kxdbv2y2kp6fxpa1kf";
- type = "gem";
- };
- version = "0.3.5";
+ version = "3.2021.0225";
};
mini_magick = {
groups = ["default"];
@@ -1457,10 +1466,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1axm0rxyx3ss93wbmfkm78a6x03l8y4qy60rhkkiq0aza0vwq3ha";
+ sha256 = "1np6srnyagghhh2w4nyv09sz47v0i6ri3q6blicj94vgxqp12c94";
type = "gem";
};
- version = "1.0.2";
+ version = "1.0.3";
};
mini_portile2 = {
groups = ["default"];
@@ -1477,10 +1486,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ipjhdw8ds6q9h7bs3iw28bjrwkwp215hr4l3xf6215fsl80ky5j";
+ sha256 = "19z7wkhg59y8abginfrm2wzplz7py3va8fyngiigngqvsws6cwgl";
type = "gem";
};
- version = "5.14.3";
+ version = "5.14.4";
};
molinillo = {
groups = ["default"];
@@ -1497,10 +1506,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1lva6bkvb4mfa0m3bqn4lm4s4gi81c40jvdcsrxr6vng49q9daih";
+ sha256 = "06iajjyhx0rvpn4yr3h1hc4w4w3k59bdmfhxnjzzh76wsrdxxrc6";
type = "gem";
};
- version = "1.3.3";
+ version = "1.4.2";
};
multi_json = {
groups = ["default"];
@@ -1568,10 +1577,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0piclgf6pw7hr10x57x0hn675djyna4sb3xc97yb9vh66wkx1fl0";
+ sha256 = "1ww1mq41q7rda975byjmq5dk8k13v8dawvm33370pbkrymd8syp8";
type = "gem";
};
- version = "1.0.9";
+ version = "1.1.1";
};
ncursesw = {
groups = ["default"];
@@ -1619,10 +1628,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1cbwp1kbv6b2qfxv8sarv0d0ilb257jihlvdqj8f5pdm0ksq1sgk";
+ sha256 = "00fwz0qq7agd2xkdz02i8li236qvwhma3p0jdn5bdvc21b7ydzd5";
type = "gem";
};
- version = "2.5.4";
+ version = "2.5.7";
};
nokogiri = {
dependencies = ["mini_portile2" "racc"];
@@ -1630,10 +1639,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1ajwkqr28hwqbyl1l3czx4a34c88acxywyqp8cjyy0zgsd6sbhj2";
+ sha256 = "19d78mdg2lbz9jb4ph6nk783c9jbsdm8rnllwhga6pd53xffp6x0";
type = "gem";
};
- version = "1.11.1";
+ version = "1.11.3";
};
opus-ruby = {
dependencies = ["ffi"];
@@ -1663,10 +1672,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1zlk3bksiwrdvb7j0r5av7w280kigl7947wa7w4kbwqz3snaxl3m";
+ sha256 = "0m2acfd6l6k9xvqxvwivcnwji9974ac7498znydxh69z1x3rr8nm";
type = "gem";
};
- version = "4.4.0";
+ version = "4.4.1";
};
pango = {
dependencies = ["cairo-gobject" "gobject-introspection"];
@@ -1695,10 +1704,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1jixakyzmy0j5c1rb0fjrrdhgnyryvrr6vgcybs14jfw09akv5ml";
+ sha256 = "04ri489irbbx6sbkclpgri7j7p99v2qib5g2i70xx5fay12ilny8";
type = "gem";
};
- version = "3.0.0.0";
+ version = "3.0.1.0";
};
pathutil = {
dependencies = ["forwardable-extended"];
@@ -1746,10 +1755,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "068sf963n2zk47kqcckj624g5pxmk68mm76h02piphfyh9x4zmi3";
+ sha256 = "1mjjy1grxr64znkffxsvprcckbrrnm40b6gbllnbm7jxslbr3gjl";
type = "gem";
};
- version = "1.4.4";
+ version = "1.4.6";
};
polyglot = {
groups = ["default"];
@@ -1767,10 +1776,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0iyw4q4an2wmk8v5rn2ghfy2jaz9vmw2nk8415nnpx2s866934qk";
+ sha256 = "0m445x8fwcjdyv2bc0glzss2nbm1ll51bq45knixapc7cl3dzdlr";
type = "gem";
};
- version = "0.13.1";
+ version = "0.14.1";
};
pry-byebug = {
dependencies = ["byebug" "pry"];
@@ -1778,10 +1787,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "096y5vmzpyy4x9h4ky4cs4y7d19vdq9vbwwrqafbh5gagzwhifiv";
+ sha256 = "07cv2hddswb334777pjgc9avxn0x9qhrdr191g7windvnjk3scvg";
type = "gem";
};
- version = "3.9.0";
+ version = "3.8.0";
};
pry-doc = {
dependencies = ["pry" "yard"];
@@ -1810,10 +1819,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "13640p5fk19705ygp8j6p07lccag3d80bx8bmjgpd5zsxxsdc50b";
+ sha256 = "0wiprd0v4mjqv5p1vqaidr9ci2xm08lcxdz1k50mb1b6nrw6r74k";
type = "gem";
};
- version = "5.1.1";
+ version = "5.2.2";
};
racc = {
groups = ["default"];
@@ -1863,10 +1872,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "06r2kjl4ylfgw08gjxvlwqdy1lgmgsylwnysk1d0qr6q3nd0nvg6";
+ sha256 = "1yl6wy2gfvjkq0457plwadk7jwx5sbpqxl9aycbphskisis9g238";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
rails-dom-testing = {
dependencies = ["activesupport" "nokogiri"];
@@ -1896,10 +1905,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "179r2qymrh16ih5x563wqv3zpka9fvby5czqf47d24zm7zw1bwla";
+ sha256 = "1m3ckisji9n3li2700jpkyncsrh5b2z20zb0b4jl5x16cwsymr7b";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.3.1";
};
rainbow = {
groups = ["default"];
@@ -1968,10 +1977,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "16q71cc9wx342c697q18pkz19ym4ncjd97hcw4v6f1mgflkdv400";
+ sha256 = "13za43xb5xfg1xb1vwlvwx14jlmnk7jal5dqw8q9a5g13csx41sw";
type = "gem";
};
- version = "1.2.0";
+ version = "1.4.0";
+ };
+ red-colors = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0ar2k7zvhr1215jx5di29hkg5h1798f1gypmq6v0sy9v35w6ijca";
+ type = "gem";
+ };
+ version = "0.1.1";
};
redcarpet = {
groups = ["default"];
@@ -2020,10 +2039,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0zm86k9q8m5jkcnpb1f93wsvc57saldfj8czxkx1aw031i95inip";
+ sha256 = "0vg7imjnfcqjx7kw94ccj5r78j4g190cqzi1i59sh4a0l940b9cr";
type = "gem";
};
- version = "2.0.3";
+ version = "2.1.1";
};
rest-client = {
dependencies = ["http-accept" "http-cookie" "mime-types" "netrc"];
@@ -2041,20 +2060,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1mkvkcw9fhpaizrhca0pdgjcrbns48rlz4g6lavl5gjjq3rk2sq3";
+ sha256 = "08ximcyfjy94pm1rhcx04ny1vx2sk0x4y185gzn86yfsbzwkng53";
type = "gem";
};
- version = "3.2.4";
+ version = "3.2.5";
};
rmagick = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ajn6aisf9hh3x5zrs7n02pg5xy3m8x38gh9cn7b3klzgp3djla5";
+ sha256 = "04ahv5gwfwdmwx6b7c0z91rrsfklvnqichgnqk1f9b9n6md3b8yw";
type = "gem";
};
- version = "4.1.2";
+ version = "4.2.2";
};
rouge = {
groups = ["default"];
@@ -2115,20 +2134,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1x4aks5qq489iikb4ir11ppy1dg83l4dw3s34jlwvc90mj2fjrql";
+ sha256 = "1d13g6kipqqc9lmwz5b244pdwc97z15vcbnbq6n9rlf32bipdz4k";
type = "gem";
};
- version = "3.10.1";
+ version = "3.10.2";
};
rspec-support = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1lw9qdrff4dfdz62ww8cmv33rddmadr92k2lrvc042aajvk6x886";
+ sha256 = "15j52parvb8cgvl6s0pbxi2ywxrv6x0764g222kz5flz0s4mycbl";
type = "gem";
};
- version = "3.10.1";
+ version = "3.10.2";
};
rubocop = {
dependencies = ["parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"];
@@ -2136,10 +2155,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "12kkyzyzh30mi9xs52lc1pjki1al4x9acdaikj40wslhpwp1ng1l";
+ sha256 = "0cgrj670wrdw202pddiawcx2jbkcp7ja8zbc646by7nrg9ax492d";
type = "gem";
};
- version = "1.7.0";
+ version = "1.13.0";
};
rubocop-ast = {
dependencies = ["parser"];
@@ -2147,10 +2166,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1qvfp567aprjgcwj757p55ynj0dx2b3c3hd76za9z3c43sphprcj";
+ sha256 = "0gkf1p8yal38nlvdb39qaiy0gr85fxfr09j5dxh8qvrgpncpnk78";
type = "gem";
};
- version = "1.4.0";
+ version = "1.4.1";
};
rubocop-performance = {
dependencies = ["rubocop" "rubocop-ast"];
@@ -2158,10 +2177,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "01aahh54r9mwhdj7v2s6kmkdm1k1n1z27dlknlbgm281ny1aswrk";
+ sha256 = "07c3kymvsid9aajwmmwr3n6apxgyjcbzbl2n6r5lpzkyz28jqn15";
type = "gem";
};
- version = "1.9.2";
+ version = "1.10.2";
};
ruby-graphviz = {
dependencies = ["rexml"];
@@ -2220,20 +2239,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0lk124dixshf8mmrjpsy9avnaygni3cwki25g8nm5py4d2f5fwwa";
+ sha256 = "1wy58f9qijwvkmw1j40ak2v5nsr3wcwsa1nilfw047liwyi06yad";
type = "gem";
};
- version = "2.0.17";
+ version = "2.1.0";
};
ruby2_keywords = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "17pcc0wgvh3ikrkr7bm3nx0qhyiqwidd13ij0fa50k7gsbnr2p0l";
+ sha256 = "15wfcqxyfgka05v2a7kpg64x57gl1y4xzvnc9lh60bqx5sf1iqrs";
type = "gem";
};
- version = "0.0.2";
+ version = "0.0.4";
};
RubyInline = {
dependencies = ["ZenTest"];
@@ -2303,20 +2322,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1lanqba97ncv88m9r5a3i12n938j5hnpn06q55fxhayfls4fsgdn";
+ sha256 = "13mlccf70slrjpxvpvmnk2cls39nkpgksa7sd90jlnm0s0z7lhdd";
type = "gem";
};
- version = "0.11.1";
+ version = "0.11.4";
};
sequel = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ym43w8alp65fl8j7792i1l44laq9pm91zj97x0r340xkmaii9hp";
+ sha256 = "0i2zbx3zkrppvf7zmk5hpiji9kj18c0yavcr2c3i0gaqskhzvaj9";
type = "gem";
};
- version = "5.40.0";
+ version = "5.43.0";
};
sequel_pg = {
dependencies = ["pg" "sequel"];
@@ -2335,10 +2354,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0vv68r61crcnyr5i2qi3h220xbwndsfzwcfzzdr6cmhcdczyr9n2";
+ sha256 = "1hrv046jll6ad1s964gsmcq4hvkr3zzr6jc7z1mns22mvfpbc3cr";
type = "gem";
};
- version = "0.21.1";
+ version = "0.21.2";
};
simplecov-html = {
groups = ["default"];
@@ -2377,10 +2396,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0nqyam74izmbczwb406bsmgdzjz5r91d4lywlvdbxx5sl4g4256a";
+ sha256 = "0516kmcypysgf2lw8zm8n9yghv6igqgphhfgmgyzgiin388xw4gj";
type = "gem";
};
- version = "2.6.0";
+ version = "2.7.0";
};
slop = {
groups = ["default"];
@@ -2439,10 +2458,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1g7398sn8syybz3nbf3dqwa8q8v3s3s444i24xl5q9pzx4g4nkf1";
+ sha256 = "1nkwmlx0ja35gs4lkh7hmshlwsqk5wm1wqrc2p45icnjmrh0x5cw";
type = "gem";
};
- version = "1.0.1";
+ version = "1.1.0";
};
terminal-table = {
dependencies = ["unicode-display_width"];
@@ -2460,20 +2479,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1xbhkmyhlxwzshaqa7swy2bx6vd64mm0wrr8g3jywvxy7hg0cwkm";
+ sha256 = "18yhlvmfya23cs3pvhr1qy38y41b6mhr5q9vwv5lrgk16wmf3jna";
type = "gem";
};
- version = "1.0.1";
+ version = "1.1.0";
};
thrift = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "08076cmdx0g51yrkd7dlxlr45nflink3jhdiq7006ljc2pc3212q";
+ sha256 = "1sfa4120a7yl3gxjcx990gyawsshfr22gfv5rvgpk72l2p9j2420";
type = "gem";
};
- version = "0.13.0";
+ version = "0.14.1";
};
tilt = {
groups = ["default"];
@@ -2595,10 +2614,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ch19amq0spj5dc240mv6s8hh245w7nis2h070qr3jm15r4jb21m";
+ sha256 = "092y84kak86ds2as9kwn5a9m2yzqwqcz4wx31jk3kin32c3hwcrn";
type = "gem";
};
- version = "5.0.1";
+ version = "5.0.2";
};
xcodeproj = {
dependencies = ["CFPropertyList" "atomos" "claide" "colored2" "nanaimo"];