Project import generated by Copybara.
GitOrigin-RevId: d235056d6d6dcbd2999bd55fd120d831d4df6304
This commit is contained in:
parent
cbe8e22708
commit
a97b1c8da0
341 changed files with 6913 additions and 2856 deletions
4
third_party/nixpkgs/.github/labeler.yml
vendored
4
third_party/nixpkgs/.github/labeler.yml
vendored
|
@ -5,6 +5,10 @@
|
||||||
- pkgs/development/libraries/agda/**/*
|
- pkgs/development/libraries/agda/**/*
|
||||||
- pkgs/top-level/agda-packages.nix
|
- pkgs/top-level/agda-packages.nix
|
||||||
|
|
||||||
|
"6.topic: bsd":
|
||||||
|
- pkgs/os-specific/bsd/**/*
|
||||||
|
- pkgs/stdenv/freebsd/**/*
|
||||||
|
|
||||||
"6.topic: cinnamon":
|
"6.topic: cinnamon":
|
||||||
- pkgs/desktops/cinnamon/**/*
|
- pkgs/desktops/cinnamon/**/*
|
||||||
|
|
||||||
|
|
29
third_party/nixpkgs/.github/workflows/direct-push.yml
vendored
Normal file
29
third_party/nixpkgs/.github/workflows/direct-push.yml
vendored
Normal file
|
@ -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
|
13
third_party/nixpkgs/doc/builders/packages/dlib.section.md
vendored
Normal file
13
third_party/nixpkgs/doc/builders/packages/dlib.section.md
vendored
Normal file
|
@ -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; }; }
|
||||||
|
```
|
|
@ -1,24 +0,0 @@
|
||||||
<section xmlns="http://docbook.org/ns/docbook"
|
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
||||||
xml:id="dlib">
|
|
||||||
<title>DLib</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
<link xlink:href="http://dlib.net/">DLib</link> is a modern, C++-based toolkit which provides several machine learning algorithms.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<section xml:id="compiling-without-avx-support">
|
|
||||||
<title>Compiling without AVX support</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
Especially older CPUs don't support <link xlink:href="https://en.wikipedia.org/wiki/Advanced_Vector_Extensions">AVX</link> (<abbrev>Advanced Vector Extensions</abbrev>) instructions that are used by DLib to optimize their algorithms.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
On the affected hardware errors like <literal>Illegal instruction</literal> will occur. In those cases AVX support needs to be disabled:
|
|
||||||
<programlisting>self: super: {
|
|
||||||
dlib = super.dlib.override { avxSupport = false; };
|
|
||||||
}</programlisting>
|
|
||||||
</para>
|
|
||||||
</section>
|
|
||||||
</section>
|
|
|
@ -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
|
Referenced from: /nix/store/w8bi72bssv0bnxhwfw3xr1mvn7myf37x-sshfs-fuse-2.10/bin/sshfs
|
||||||
Reason: image not found
|
Reason: image not found
|
||||||
[1] 92299 abort /nix/store/w8bi72bssv0bnxhwfw3xr1mvn7myf37x-sshfs-fuse-2.10/bin/sshfs
|
[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.
|
||||||
|
|
|
@ -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.
|
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.
|
||||||
</para>
|
</para>
|
||||||
<xi:include href="citrix.section.xml" />
|
<xi:include href="citrix.section.xml" />
|
||||||
<xi:include href="dlib.xml" />
|
<xi:include href="dlib.section.xml" />
|
||||||
<xi:include href="eclipse.section.xml" />
|
<xi:include href="eclipse.section.xml" />
|
||||||
<xi:include href="elm.section.xml" />
|
<xi:include href="elm.section.xml" />
|
||||||
<xi:include href="emacs.section.xml" />
|
<xi:include href="emacs.section.xml" />
|
||||||
|
|
|
@ -170,60 +170,60 @@
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Reviewing process:
|
Review process:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Ensure that the package versioning is fitting the guidelines.
|
Ensure that the package versioning fits the guidelines.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Ensure that the commit name is fitting the guidelines.
|
Ensure that the commit name fits the guidelines.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Ensure that the meta field contains correct information.
|
Ensure that the meta fields contain correct information.
|
||||||
</para>
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
License must be checked to be fitting upstream license.
|
License must match the upstream license.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Platforms should be set or the package will not get binary substitutes.
|
Platforms should be set (or the package will not get binary substitutes).
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
A maintainer must be set. This can be the package submitter or a community member that accepts to take maintainership of the package.
|
Maintainers must be set. This can be the package submitter or a community member that accepts taking up maintainership of the package.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Ensure that the code contains no typos.
|
Report detected typos.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Ensure the package source.
|
Ensure the package source:
|
||||||
</para>
|
</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Mirrors urls should be used when available.
|
Uses mirror URLs when available.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
The most appropriate function should be used (e.g. packages from GitHub should use <literal>fetchFromGitHub</literal>).
|
Uses the most appropriate functions (e.g. packages from GitHub should use <literal>fetchFromGitHub</literal>).
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
|
@ -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-*`.
|
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}
|
## 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.
|
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.
|
||||||
|
|
|
@ -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.
|
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
|
## Managing plugins with vim-plug
|
||||||
|
|
||||||
To use [vim-plug](https://github.com/junegunn/vim-plug) to manage your Vim
|
To use [vim-plug](https://github.com/junegunn/vim-plug) to manage your Vim
|
||||||
|
|
|
@ -374,6 +374,12 @@
|
||||||
githubId = 786394;
|
githubId = 786394;
|
||||||
name = "Alexander Krupenkin ";
|
name = "Alexander Krupenkin ";
|
||||||
};
|
};
|
||||||
|
akshgpt7 = {
|
||||||
|
email = "akshgpt7@gmail.com";
|
||||||
|
github = "akshgpt7";
|
||||||
|
githubId = 20405311;
|
||||||
|
name = "Aksh Gupta";
|
||||||
|
};
|
||||||
albakham = {
|
albakham = {
|
||||||
email = "dev@geber.ga";
|
email = "dev@geber.ga";
|
||||||
github = "albakham";
|
github = "albakham";
|
||||||
|
@ -2195,6 +2201,16 @@
|
||||||
githubId = 4971975;
|
githubId = 4971975;
|
||||||
name = "Janne Heß";
|
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 = {
|
dasj19 = {
|
||||||
email = "daniel@serbanescu.dk";
|
email = "daniel@serbanescu.dk";
|
||||||
github = "dasj19";
|
github = "dasj19";
|
||||||
|
@ -4403,6 +4419,12 @@
|
||||||
githubId = 2588851;
|
githubId = 2588851;
|
||||||
name = "Jan Solanti";
|
name = "Jan Solanti";
|
||||||
};
|
};
|
||||||
|
jappie = {
|
||||||
|
email = "jappieklooster@hotmail.com";
|
||||||
|
github = "jappeace";
|
||||||
|
githubId = 3874017;
|
||||||
|
name = "Jappie Klooster";
|
||||||
|
};
|
||||||
javaguirre = {
|
javaguirre = {
|
||||||
email = "contacto@javaguirre.net";
|
email = "contacto@javaguirre.net";
|
||||||
github = "javaguirre";
|
github = "javaguirre";
|
||||||
|
@ -5990,6 +6012,12 @@
|
||||||
githubId = 115218;
|
githubId = 115218;
|
||||||
name = "Felix Richter";
|
name = "Felix Richter";
|
||||||
};
|
};
|
||||||
|
malo = {
|
||||||
|
email = "mbourgon@gmail.com";
|
||||||
|
github = "malob";
|
||||||
|
githubId = 2914269;
|
||||||
|
name = "Malo Bourgon";
|
||||||
|
};
|
||||||
malyn = {
|
malyn = {
|
||||||
email = "malyn@strangeGizmo.com";
|
email = "malyn@strangeGizmo.com";
|
||||||
github = "malyn";
|
github = "malyn";
|
||||||
|
@ -7241,6 +7269,16 @@
|
||||||
github = "obsidian-systems-maintenance";
|
github = "obsidian-systems-maintenance";
|
||||||
githubId = 80847921;
|
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 = {
|
odi = {
|
||||||
email = "oliver.dunkl@gmail.com";
|
email = "oliver.dunkl@gmail.com";
|
||||||
github = "odi";
|
github = "odi";
|
||||||
|
@ -8729,6 +8767,12 @@
|
||||||
githubId = 8534888;
|
githubId = 8534888;
|
||||||
name = "Savanni D'Gerinel";
|
name = "Savanni D'Gerinel";
|
||||||
};
|
};
|
||||||
|
sayanarijit = {
|
||||||
|
email = "sayanarijit@gmail.com";
|
||||||
|
github = "sayanarijit";
|
||||||
|
githubId = 11632726;
|
||||||
|
name = "Arijit Basu";
|
||||||
|
};
|
||||||
sb0 = {
|
sb0 = {
|
||||||
email = "sb@m-labs.hk";
|
email = "sb@m-labs.hk";
|
||||||
github = "sbourdeauducq";
|
github = "sbourdeauducq";
|
||||||
|
@ -9197,6 +9241,12 @@
|
||||||
fingerprint = "0EC3 FA89 EFBA B421 F82E 40B0 2567 6BCB FFAD 76B1";
|
fingerprint = "0EC3 FA89 EFBA B421 F82E 40B0 2567 6BCB FFAD 76B1";
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
sophrosyne = {
|
||||||
|
email = "joshuaortiz@tutanota.com";
|
||||||
|
github = "sophrosyne97";
|
||||||
|
githubId = 53029739;
|
||||||
|
name = "Joshua Ortiz";
|
||||||
|
};
|
||||||
sorki = {
|
sorki = {
|
||||||
email = "srk@48.io";
|
email = "srk@48.io";
|
||||||
github = "sorki";
|
github = "sorki";
|
||||||
|
@ -9435,6 +9485,12 @@
|
||||||
githubId = 187109;
|
githubId = 187109;
|
||||||
name = "Bjarki Ágúst Guðmundsson";
|
name = "Bjarki Ágúst Guðmundsson";
|
||||||
};
|
};
|
||||||
|
suryasr007 = {
|
||||||
|
email = "94suryateja@gmail.com";
|
||||||
|
github = "suryasr007";
|
||||||
|
githubId = 10533926;
|
||||||
|
name = "Surya Teja V";
|
||||||
|
};
|
||||||
suvash = {
|
suvash = {
|
||||||
email = "suvash+nixpkgs@gmail.com";
|
email = "suvash+nixpkgs@gmail.com";
|
||||||
github = "suvash";
|
github = "suvash";
|
||||||
|
@ -11266,6 +11322,16 @@
|
||||||
github = "pulsation";
|
github = "pulsation";
|
||||||
githubId = 1838397;
|
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 = {
|
zseri = {
|
||||||
name = "zseri";
|
name = "zseri";
|
||||||
email = "zseri.devel@ytrizja.de";
|
email = "zseri.devel@ytrizja.de";
|
||||||
|
|
|
@ -460,6 +460,10 @@ def parse_args(editor: Editor):
|
||||||
default=30,
|
default=30,
|
||||||
help="Number of concurrent processes to spawn.",
|
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()
|
return parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
|
@ -504,24 +508,30 @@ def update_plugins(editor: Editor):
|
||||||
|
|
||||||
redirects = update()
|
redirects = update()
|
||||||
rewrite_input(args.input_file, editor.deprecated, redirects)
|
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:
|
if redirects:
|
||||||
update()
|
update()
|
||||||
commit(
|
if autocommit:
|
||||||
nixpkgs_repo,
|
commit(
|
||||||
f"{editor.name}Plugins: resolve github repository redirects",
|
nixpkgs_repo,
|
||||||
[args.outfile, args.input_file, editor.deprecated],
|
f"{editor.name}Plugins: resolve github repository redirects",
|
||||||
)
|
[args.outfile, args.input_file, editor.deprecated],
|
||||||
|
)
|
||||||
|
|
||||||
for plugin_line in args.add_plugins:
|
for plugin_line in args.add_plugins:
|
||||||
rewrite_input(args.input_file, editor.deprecated, append=(plugin_line + "\n",))
|
rewrite_input(args.input_file, editor.deprecated, append=(plugin_line + "\n",))
|
||||||
update()
|
update()
|
||||||
plugin = fetch_plugin_from_pluginline(plugin_line)
|
plugin = fetch_plugin_from_pluginline(plugin_line)
|
||||||
commit(
|
if autocommit:
|
||||||
nixpkgs_repo,
|
commit(
|
||||||
"{editor}Plugins.{name}: init at {version}".format(
|
nixpkgs_repo,
|
||||||
editor=editor.name, name=plugin.normalized_name, version=plugin.version
|
"{editor}Plugins.{name}: init at {version}".format(
|
||||||
),
|
editor=editor.name, name=plugin.normalized_name, version=plugin.version
|
||||||
[args.outfile, args.input_file],
|
),
|
||||||
)
|
[args.outfile, args.input_file],
|
||||||
|
)
|
||||||
|
|
|
@ -56,6 +56,15 @@ with lib.maintainers; {
|
||||||
scope = "Group registration for D. E. Shaw employees who collectively maintain packages.";
|
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 = {
|
freedesktop = {
|
||||||
members = [ jtojnar worldofpeace ];
|
members = [ jtojnar worldofpeace ];
|
||||||
scope = "Maintain Freedesktop.org packages for graphical desktop.";
|
scope = "Maintain Freedesktop.org packages for graphical desktop.";
|
||||||
|
|
|
@ -675,6 +675,11 @@ environment.systemPackages = [
|
||||||
Currently, the service doesn't enforce nor checks the correct number of paths to correspond to minio requirements.
|
Currently, the service doesn't enforce nor checks the correct number of paths to correspond to minio requirements.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
All CUDA toolkit versions prior to CUDA 10 have been removed.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
|
@ -18,15 +18,15 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
environment.etc."iproute2/bpf_pinning" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/bpf_pinning"; };
|
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.iproute}/etc/iproute2/ematch_map"; };
|
environment.etc."iproute2/ematch_map" = { mode = "0644"; text = fileContents "${pkgs.iproute2}/etc/iproute2/ematch_map"; };
|
||||||
environment.etc."iproute2/group" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/group"; };
|
environment.etc."iproute2/group" = { mode = "0644"; text = fileContents "${pkgs.iproute2}/etc/iproute2/group"; };
|
||||||
environment.etc."iproute2/nl_protos" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/nl_protos"; };
|
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.iproute}/etc/iproute2/rt_dsfield"; };
|
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.iproute}/etc/iproute2/rt_protos"; };
|
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.iproute}/etc/iproute2/rt_realms"; };
|
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.iproute}/etc/iproute2/rt_scopes"; };
|
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.iproute}/etc/iproute2/rt_tables")
|
environment.etc."iproute2/rt_tables" = { mode = "0644"; text = (fileContents "${pkgs.iproute2}/etc/iproute2/rt_tables")
|
||||||
+ (optionalString (cfg.rttablesExtraConfig != "") "\n\n${cfg.rttablesExtraConfig}"); };
|
+ (optionalString (cfg.rttablesExtraConfig != "") "\n\n${cfg.rttablesExtraConfig}"); };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
16
third_party/nixpkgs/nixos/modules/hardware/keyboard/teck.nix
vendored
Normal file
16
third_party/nixpkgs/nixos/modules/hardware/keyboard/teck.nix
vendored
Normal file
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -29,7 +29,7 @@ in
|
||||||
options.i18n = {
|
options.i18n = {
|
||||||
inputMethod = {
|
inputMethod = {
|
||||||
enabled = mkOption {
|
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;
|
default = null;
|
||||||
example = "fcitx";
|
example = "fcitx";
|
||||||
description = ''
|
description = ''
|
||||||
|
@ -46,6 +46,7 @@ in
|
||||||
<listitem><para>nabi: A Korean input method based on XIM. Nabi doesn't support Qt 5.</para></listitem>
|
<listitem><para>nabi: A Korean input method based on XIM. Nabi doesn't support Qt 5.</para></listitem>
|
||||||
<listitem><para>uim: The universal input method, is a library with a XIM bridge. uim mainly support Chinese, Japanese and Korean.</para></listitem>
|
<listitem><para>uim: The universal input method, is a library with a XIM bridge. uim mainly support Chinese, Japanese and Korean.</para></listitem>
|
||||||
<listitem><para>hime: An extremely easy-to-use input method framework.</para></listitem>
|
<listitem><para>hime: An extremely easy-to-use input method framework.</para></listitem>
|
||||||
|
<listitem><para>kime: Koream IME.</para></listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
|
@ -40,6 +40,11 @@
|
||||||
Hime: An extremely easy-to-use input method framework.
|
Hime: An extremely easy-to-use input method framework.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Kime: Korean IME
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
<section xml:id="module-services-input-methods-ibus">
|
<section xml:id="module-services-input-methods-ibus">
|
||||||
<title>IBus</title>
|
<title>IBus</title>
|
||||||
|
@ -264,6 +269,23 @@ i18n.inputMethod = {
|
||||||
i18n.inputMethod = {
|
i18n.inputMethod = {
|
||||||
<link linkend="opt-i18n.inputMethod.enabled">enabled</link> = "hime";
|
<link linkend="opt-i18n.inputMethod.enabled">enabled</link> = "hime";
|
||||||
};
|
};
|
||||||
|
</programlisting>
|
||||||
|
</section>
|
||||||
|
<section xml:id="module-services-input-methods-kime">
|
||||||
|
<title>Kime</title>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Kime is Korean IME. it's built with Rust language and let you get simple, safe, fast Korean typing
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The following snippet can be used to configure Kime:
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<programlisting>
|
||||||
|
i18n.inputMethod = {
|
||||||
|
<link linkend="opt-i18n.inputMethod.enabled">enabled</link> = "kime";
|
||||||
|
};
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</section>
|
</section>
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|
49
third_party/nixpkgs/nixos/modules/i18n/input-method/kime.nix
vendored
Normal file
49
third_party/nixpkgs/nixos/modules/i18n/input-method/kime.nix
vendored
Normal file
|
@ -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 <link xlink:href="https://github.com/Riey/kime/blob/v${pkgs.kime.version}/docs/CONFIGURATION.md"/> 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);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -163,7 +163,8 @@ in
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# \$ nix search wget
|
# \$ nix search wget
|
||||||
# environment.systemPackages = with pkgs; [
|
# environment.systemPackages = with pkgs; [
|
||||||
# wget vim
|
# nano vim # don't forget to add an editor to edit configuration.nix!
|
||||||
|
# wget
|
||||||
# firefox
|
# firefox
|
||||||
# ];
|
# ];
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
./hardware/i2c.nix
|
./hardware/i2c.nix
|
||||||
./hardware/sensor/hddtemp.nix
|
./hardware/sensor/hddtemp.nix
|
||||||
./hardware/sensor/iio.nix
|
./hardware/sensor/iio.nix
|
||||||
|
./hardware/keyboard/teck.nix
|
||||||
./hardware/keyboard/zsa.nix
|
./hardware/keyboard/zsa.nix
|
||||||
./hardware/ksm.nix
|
./hardware/ksm.nix
|
||||||
./hardware/ledger.nix
|
./hardware/ledger.nix
|
||||||
|
@ -92,6 +93,7 @@
|
||||||
./i18n/input-method/ibus.nix
|
./i18n/input-method/ibus.nix
|
||||||
./i18n/input-method/nabi.nix
|
./i18n/input-method/nabi.nix
|
||||||
./i18n/input-method/uim.nix
|
./i18n/input-method/uim.nix
|
||||||
|
./i18n/input-method/kime.nix
|
||||||
./installer/tools/tools.nix
|
./installer/tools/tools.nix
|
||||||
./misc/assertions.nix
|
./misc/assertions.nix
|
||||||
./misc/crashdump.nix
|
./misc/crashdump.nix
|
||||||
|
@ -729,6 +731,7 @@
|
||||||
./services/networking/nar-serve.nix
|
./services/networking/nar-serve.nix
|
||||||
./services/networking/nat.nix
|
./services/networking/nat.nix
|
||||||
./services/networking/ndppd.nix
|
./services/networking/ndppd.nix
|
||||||
|
./services/networking/nebula.nix
|
||||||
./services/networking/networkmanager.nix
|
./services/networking/networkmanager.nix
|
||||||
./services/networking/nextdns.nix
|
./services/networking/nextdns.nix
|
||||||
./services/networking/nftables.nix
|
./services/networking/nftables.nix
|
||||||
|
|
|
@ -5,6 +5,8 @@ with lib;
|
||||||
let
|
let
|
||||||
cfg = config.services.redis;
|
cfg = config.services.redis;
|
||||||
|
|
||||||
|
ulimitNofile = cfg.maxclients + 32;
|
||||||
|
|
||||||
mkValueString = value:
|
mkValueString = value:
|
||||||
if value == true then "yes"
|
if value == true then "yes"
|
||||||
else if value == false then "no"
|
else if value == false then "no"
|
||||||
|
@ -14,8 +16,8 @@ let
|
||||||
listsAsDuplicateKeys = true;
|
listsAsDuplicateKeys = true;
|
||||||
mkKeyValue = generators.mkKeyValueDefault { inherit mkValueString; } " ";
|
mkKeyValue = generators.mkKeyValueDefault { inherit mkValueString; } " ";
|
||||||
} cfg.settings);
|
} cfg.settings);
|
||||||
in
|
|
||||||
{
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
(mkRemovedOptionModule [ "services" "redis" "user" ] "The redis module now is hardcoded to the redis user.")
|
(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.")
|
(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.";
|
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 {
|
save = mkOption {
|
||||||
type = with types; listOf (listOf int);
|
type = with types; listOf (listOf int);
|
||||||
default = [ [900 1] [300 10] [60 10000] ];
|
default = [ [900 1] [300 10] [60 10000] ];
|
||||||
|
@ -253,6 +261,7 @@ in
|
||||||
logfile = cfg.logfile;
|
logfile = cfg.logfile;
|
||||||
syslog-enabled = cfg.syslog;
|
syslog-enabled = cfg.syslog;
|
||||||
databases = cfg.databases;
|
databases = cfg.databases;
|
||||||
|
maxclients = cfg.maxclients;
|
||||||
save = map (d: "${toString (builtins.elemAt d 0)} ${toString (builtins.elemAt d 1)}") cfg.save;
|
save = map (d: "${toString (builtins.elemAt d 0)} ${toString (builtins.elemAt d 1)}") cfg.save;
|
||||||
dbfilename = "dump.rdb";
|
dbfilename = "dump.rdb";
|
||||||
dir = "/var/lib/redis";
|
dir = "/var/lib/redis";
|
||||||
|
@ -295,6 +304,34 @@ in
|
||||||
StateDirectoryMode = "0700";
|
StateDirectoryMode = "0700";
|
||||||
# Access write directories
|
# Access write directories
|
||||||
UMask = "0077";
|
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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -214,7 +214,8 @@ in {
|
||||||
PrivateMounts = true;
|
PrivateMounts = true;
|
||||||
SystemCallFilter = "~@aio @clock @cpu-emulation @debug @keyring @memlock @module @mount @obsolete @raw-io @setuid @swap";
|
SystemCallFilter = "~@aio @clock @cpu-emulation @debug @keyring @memlock @module @mount @obsolete @raw-io @setuid @swap";
|
||||||
SystemCallArchitectures = "native";
|
SystemCallArchitectures = "native";
|
||||||
RestrictAddressFamilies = "AF_INET AF_INET6";
|
# AF_UNIX is required to connect to a postgres socket.
|
||||||
|
RestrictAddressFamilies = "AF_UNIX AF_INET AF_INET6";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -296,7 +296,7 @@ in {
|
||||||
|
|
||||||
systemd.sockets.ipfs-api = {
|
systemd.sockets.ipfs-api = {
|
||||||
wantedBy = [ "sockets.target" ];
|
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.
|
# in the multiaddr.
|
||||||
socketConfig.ListenStream = let
|
socketConfig.ListenStream = let
|
||||||
fromCfg = multiaddrToListenStream cfg.apiAddress;
|
fromCfg = multiaddrToListenStream cfg.apiAddress;
|
||||||
|
|
|
@ -41,8 +41,8 @@ in {
|
||||||
|
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
type = types.package;
|
type = types.package;
|
||||||
default = pkgs.mxisd;
|
default = pkgs.ma1sd;
|
||||||
defaultText = "pkgs.mxisd";
|
defaultText = "pkgs.ma1sd";
|
||||||
description = "The mxisd/ma1sd package to use";
|
description = "The mxisd/ma1sd package to use";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
219
third_party/nixpkgs/nixos/modules/services/networking/nebula.nix
vendored
Normal file
219
third_party/nixpkgs/nixos/modules/services/networking/nebula.nix
vendored
Normal file
|
@ -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
|
||||||
|
<link xlink:href="https://github.com/slackhq/nebula/blob/master/examples/config.yml"/>
|
||||||
|
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);
|
||||||
|
};
|
||||||
|
}
|
|
@ -90,10 +90,10 @@ in
|
||||||
|
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
type = types.package;
|
type = types.package;
|
||||||
default = pkgs.oauth2_proxy;
|
default = pkgs.oauth2-proxy;
|
||||||
defaultText = "pkgs.oauth2_proxy";
|
defaultText = "pkgs.oauth2-proxy";
|
||||||
description = ''
|
description = ''
|
||||||
The package that provides oauth2_proxy.
|
The package that provides oauth2-proxy.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -249,7 +249,15 @@ let
|
||||||
+ optionalString (ssl && vhost.http2) "http2 "
|
+ optionalString (ssl && vhost.http2) "http2 "
|
||||||
+ optionalString vhost.default "default_server "
|
+ optionalString vhost.default "default_server "
|
||||||
+ optionalString (extraParameters != []) (concatStringsSep " " extraParameters)
|
+ 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;
|
redirectListen = filter (x: !x.ssl) defaultListen;
|
||||||
|
|
||||||
|
|
|
@ -151,6 +151,19 @@ with lib;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
http3 = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Whether to enable HTTP 3.
|
||||||
|
This requires using <literal>pkgs.nginxQuic</literal> package
|
||||||
|
which can be achived by setting <literal>services.nginx.package = pkgs.nginxQuic;</literal>.
|
||||||
|
Note that HTTP 3 support is experimental and
|
||||||
|
*not* yet recommended for production.
|
||||||
|
Read more at https://quic.nginx.org/
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
root = mkOption {
|
root = mkOption {
|
||||||
type = types.nullOr types.path;
|
type = types.nullOr types.path;
|
||||||
default = null;
|
default = null;
|
||||||
|
|
|
@ -19,7 +19,7 @@ in
|
||||||
default = null;
|
default = null;
|
||||||
example = "ondemand";
|
example = "ondemand";
|
||||||
description = ''
|
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
|
available CPUs. By default, the kernel configures the
|
||||||
performance governor, although this may be overwritten in your
|
performance governor, although this may be overwritten in your
|
||||||
hardware-configuration.nix file.
|
hardware-configuration.nix file.
|
||||||
|
|
|
@ -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 {
|
log-driver = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "journald";
|
default = "journald";
|
||||||
|
@ -236,6 +248,7 @@ let
|
||||||
] ++ optional (container.entrypoint != null)
|
] ++ optional (container.entrypoint != null)
|
||||||
"--entrypoint=${escapeShellArg container.entrypoint}"
|
"--entrypoint=${escapeShellArg container.entrypoint}"
|
||||||
++ (mapAttrsToList (k: v: "-e ${escapeShellArg k}=${escapeShellArg v}") container.environment)
|
++ (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
|
++ map (p: "-p ${escapeShellArg p}") container.ports
|
||||||
++ optional (container.user != null) "-u ${escapeShellArg container.user}"
|
++ optional (container.user != null) "-u ${escapeShellArg container.user}"
|
||||||
++ map (v: "-v ${escapeShellArg v}") container.volumes
|
++ map (v: "-v ${escapeShellArg v}") container.volumes
|
||||||
|
|
|
@ -262,6 +262,7 @@ in
|
||||||
nat.standalone = handleTest ./nat.nix { withFirewall = false; };
|
nat.standalone = handleTest ./nat.nix { withFirewall = false; };
|
||||||
ncdns = handleTest ./ncdns.nix {};
|
ncdns = handleTest ./ncdns.nix {};
|
||||||
ndppd = handleTest ./ndppd.nix {};
|
ndppd = handleTest ./ndppd.nix {};
|
||||||
|
nebula = handleTest ./nebula.nix {};
|
||||||
neo4j = handleTest ./neo4j.nix {};
|
neo4j = handleTest ./neo4j.nix {};
|
||||||
netdata = handleTest ./netdata.nix {};
|
netdata = handleTest ./netdata.nix {};
|
||||||
networking.networkd = handleTest ./networking.nix { networkd = true; };
|
networking.networkd = handleTest ./networking.nix { networkd = true; };
|
||||||
|
|
|
@ -37,7 +37,7 @@ let
|
||||||
|
|
||||||
generateHost = { pkgs, cephConfig, networkConfig, ... }: {
|
generateHost = { pkgs, cephConfig, networkConfig, ... }: {
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
memorySize = 512;
|
memorySize = 1024;
|
||||||
emptyDiskImages = [ 20480 ];
|
emptyDiskImages = [ 20480 ];
|
||||||
vlans = [ 1 ];
|
vlans = [ 1 ];
|
||||||
};
|
};
|
||||||
|
@ -120,6 +120,7 @@ let
|
||||||
)
|
)
|
||||||
monA.wait_for_unit("ceph-mon-${cfg.monA.name}")
|
monA.wait_for_unit("ceph-mon-${cfg.monA.name}")
|
||||||
monA.succeed("ceph mon enable-msgr2")
|
monA.succeed("ceph mon enable-msgr2")
|
||||||
|
monA.succeed("ceph config set mon auth_allow_insecure_global_id_reclaim false")
|
||||||
|
|
||||||
# Can't check ceph status until a mon is up
|
# Can't check ceph status until a mon is up
|
||||||
monA.succeed("ceph -s | grep 'mon: 1 daemons'")
|
monA.succeed("ceph -s | grep 'mon: 1 daemons'")
|
||||||
|
|
|
@ -34,7 +34,7 @@ let
|
||||||
|
|
||||||
generateHost = { pkgs, cephConfig, networkConfig, ... }: {
|
generateHost = { pkgs, cephConfig, networkConfig, ... }: {
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
memorySize = 512;
|
memorySize = 1024;
|
||||||
emptyDiskImages = [ 20480 20480 20480 ];
|
emptyDiskImages = [ 20480 20480 20480 ];
|
||||||
vlans = [ 1 ];
|
vlans = [ 1 ];
|
||||||
};
|
};
|
||||||
|
@ -95,6 +95,7 @@ let
|
||||||
)
|
)
|
||||||
monA.wait_for_unit("ceph-mon-${cfg.monA.name}")
|
monA.wait_for_unit("ceph-mon-${cfg.monA.name}")
|
||||||
monA.succeed("ceph mon enable-msgr2")
|
monA.succeed("ceph mon enable-msgr2")
|
||||||
|
monA.succeed("ceph config set mon auth_allow_insecure_global_id_reclaim false")
|
||||||
|
|
||||||
# Can't check ceph status until a mon is up
|
# Can't check ceph status until a mon is up
|
||||||
monA.succeed("ceph -s | grep 'mon: 1 daemons'")
|
monA.succeed("ceph -s | grep 'mon: 1 daemons'")
|
||||||
|
|
|
@ -34,7 +34,7 @@ let
|
||||||
|
|
||||||
generateHost = { pkgs, cephConfig, networkConfig, ... }: {
|
generateHost = { pkgs, cephConfig, networkConfig, ... }: {
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
memorySize = 512;
|
memorySize = 1024;
|
||||||
emptyDiskImages = [ 20480 20480 20480 ];
|
emptyDiskImages = [ 20480 20480 20480 ];
|
||||||
vlans = [ 1 ];
|
vlans = [ 1 ];
|
||||||
};
|
};
|
||||||
|
@ -95,6 +95,7 @@ let
|
||||||
)
|
)
|
||||||
monA.wait_for_unit("ceph-mon-${cfg.monA.name}")
|
monA.wait_for_unit("ceph-mon-${cfg.monA.name}")
|
||||||
monA.succeed("ceph mon enable-msgr2")
|
monA.succeed("ceph mon enable-msgr2")
|
||||||
|
monA.succeed("ceph config set mon auth_allow_insecure_global_id_reclaim false")
|
||||||
|
|
||||||
# Can't check ceph status until a mon is up
|
# Can't check ceph status until a mon is up
|
||||||
monA.succeed("ceph -s | grep 'mon: 1 daemons'")
|
monA.succeed("ceph -s | grep 'mon: 1 daemons'")
|
||||||
|
|
17
third_party/nixpkgs/nixos/tests/mxisd.nix
vendored
17
third_party/nixpkgs/nixos/tests/mxisd.nix
vendored
|
@ -6,25 +6,16 @@ import ./make-test-python.nix ({ pkgs, ... } : {
|
||||||
};
|
};
|
||||||
|
|
||||||
nodes = {
|
nodes = {
|
||||||
server_mxisd = args : {
|
server = args : {
|
||||||
services.mxisd.enable = true;
|
services.mxisd.enable = true;
|
||||||
services.mxisd.matrix.domain = "example.org";
|
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 = ''
|
testScript = ''
|
||||||
start_all()
|
start_all()
|
||||||
server_mxisd.wait_for_unit("mxisd.service")
|
server.wait_for_unit("mxisd.service")
|
||||||
server_mxisd.wait_for_open_port(8090)
|
server.wait_for_open_port(8090)
|
||||||
server_mxisd.succeed("curl -Ssf 'http://127.0.0.1:8090/_matrix/identity/api/v1'")
|
server.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'")
|
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
|
223
third_party/nixpkgs/nixos/tests/nebula.nix
vendored
Normal file
223
third_party/nixpkgs/nixos/tests/nebula.nix
vendored
Normal file
|
@ -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")
|
||||||
|
'';
|
||||||
|
})
|
38
third_party/nixpkgs/pkgs/applications/audio/myxer/default.nix
vendored
Normal file
38
third_party/nixpkgs/pkgs/applications/audio/myxer/default.nix
vendored
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
|
, libpulseaudio
|
||||||
|
, glib
|
||||||
|
, pango
|
||||||
|
, gtk3
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "myxer";
|
||||||
|
version = "1.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Aurailus";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "10m5qkys96n4v6qiffdiy0w660yq7b5sa70ww2zskc8d0gbmxp6x";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "0nsscdjl5fh24sg87vdmijjmlihc0zk0p3vac701v60xlz55qipn";
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -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
|
, chromecastSupport ? false
|
||||||
, serverSupport ? false
|
, serverSupport ? false
|
||||||
, keyringSupport ? true
|
, keyringSupport ? true
|
||||||
|
@ -8,18 +16,29 @@
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "sublime-music";
|
pname = "sublime-music";
|
||||||
version = "0.11.10";
|
version = "0.11.11";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
src = fetchFromGitLab {
|
||||||
owner = "sublime-music";
|
owner = "sublime-music";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
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 = [
|
nativeBuildInputs = [
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
python3Packages.setuptools
|
python3Packages.poetry-core
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -53,8 +72,14 @@ python3Packages.buildPythonApplication rec {
|
||||||
# https://github.com/NixOS/nixpkgs/issues/56943
|
# https://github.com/NixOS/nixpkgs/issues/56943
|
||||||
strictDeps = false;
|
strictDeps = false;
|
||||||
|
|
||||||
# no tests
|
# Use the test suite provided by the upstream project.
|
||||||
doCheck = false;
|
checkInputs = with python3Packages; [
|
||||||
|
pytest
|
||||||
|
pytest-cov
|
||||||
|
];
|
||||||
|
checkPhase = "${xvfb_run}/bin/xvfb-run pytest";
|
||||||
|
|
||||||
|
# Also run the python import check for sanity
|
||||||
pythonImportsCheck = [ "sublime_music" ];
|
pythonImportsCheck = [ "sublime_music" ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
|
|
@ -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 {
|
mkDerivation rec {
|
||||||
pname = "featherpad";
|
pname = "featherpad";
|
||||||
version = "0.10.0";
|
version = "0.18.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tsujan";
|
owner = "tsujan";
|
||||||
repo = "FeatherPad";
|
repo = "FeatherPad";
|
||||||
rev = "V${version}";
|
rev = "V${version}";
|
||||||
sha256 = "1wrbs6kni9s3x39cckm9kzpglryxn5vyarilvh9pafbzpc6rc57p";
|
sha256 = "0av96yx9ir1ap5adn2cvr6n5y7qjrspk73and21m65dmpwlfdiqb";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ qmake pkg-config qttools ];
|
nativeBuildInputs = [ cmake pkg-config qttools ];
|
||||||
buildInputs = [ qtbase qtsvg qtx11extras ];
|
buildInputs = [ hunspell qtbase qtsvg qtx11extras ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Lightweight Qt5 Plain-Text Editor for Linux";
|
description = "Lightweight Qt5 Plain-Text Editor for Linux";
|
||||||
homepage = "https://github.com/tsujan/FeatherPad";
|
homepage = "https://github.com/tsujan/FeatherPad";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.flosse ];
|
maintainers = [ maintainers.flosse ];
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3Plus;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
{ lib, stdenv, callPackage, fetchurl
|
{ lib, stdenv, callPackage, fetchurl
|
||||||
, jdk, cmake, libxml2, zlib, python3, ncurses5
|
, jdk, cmake, libxml2, zlib, python3, ncurses5
|
||||||
, dotnet-sdk_3
|
, dotnet-sdk_3
|
||||||
|
, autoPatchelfHook
|
||||||
|
, glib
|
||||||
|
, libdbusmenu
|
||||||
, vmopts ? null
|
, vmopts ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -25,6 +28,15 @@ let
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}).overrideAttrs (attrs: {
|
}).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) ''
|
postFixup = (attrs.postFixup or "") + optionalString (stdenv.isLinux) ''
|
||||||
(
|
(
|
||||||
cd $out/clion-${version}
|
cd $out/clion-${version}
|
||||||
|
@ -32,45 +44,7 @@ let
|
||||||
rm -rf bin/cmake/linux
|
rm -rf bin/cmake/linux
|
||||||
ln -s ${cmake} bin/cmake/linux
|
ln -s ${cmake} bin/cmake/linux
|
||||||
|
|
||||||
lldbLibPath=$out/clion-${version}/bin/lldb/linux/lib
|
autoPatchelf $PWD/bin
|
||||||
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
|
|
||||||
|
|
||||||
wrapProgram $out/bin/clion \
|
wrapProgram $out/bin/clion \
|
||||||
--set CL_JDK "${jdk}"
|
--set CL_JDK "${jdk}"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ stdenv, symlinkJoin, lib, makeWrapper
|
{ stdenv, symlinkJoin, lib, makeWrapper
|
||||||
, vimUtils
|
|
||||||
, writeText
|
, writeText
|
||||||
, bundlerEnv, ruby
|
, bundlerEnv, ruby
|
||||||
, nodejs
|
, nodejs
|
||||||
|
|
|
@ -19,11 +19,11 @@ let
|
||||||
isCross = stdenv.hostPlatform != stdenv.buildPlatform;
|
isCross = stdenv.hostPlatform != stdenv.buildPlatform;
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
pname = "poke";
|
pname = "poke";
|
||||||
version = "1.1";
|
version = "1.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
|
||||||
hash = "sha256-zWjfY8dBtBYLEsvqAvJ8RxWCeUZuNEOTDSU1pFLAatY=";
|
hash = "sha256-9hz42ltkwBoTWTc3JarRyiV/NcHJJp5NUN0GZBg932I=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
pname = "TeXmacs";
|
pname = "TeXmacs";
|
||||||
version = "1.99.18";
|
version = "1.99.19";
|
||||||
common = callPackage ./common.nix {
|
common = callPackage ./common.nix {
|
||||||
inherit tex extraFonts chineseFonts japaneseFonts koreanFonts;
|
inherit tex extraFonts chineseFonts japaneseFonts koreanFonts;
|
||||||
};
|
};
|
||||||
|
@ -26,7 +26,7 @@ mkDerivation {
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${version}-src.tar.gz";
|
url = "https://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${version}-src.tar.gz";
|
||||||
sha256 = "0il3fwgw20421aj90wg8kyhkwk6lbgb3bb2g5qamh5lk90yj725i";
|
sha256 = "1izwqb0z4gqiglv57mjswk6sjivny73kd2sxrf3nmj7wr12pn5m8";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config ];
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
|
|
|
@ -24,7 +24,7 @@ let
|
||||||
six
|
six
|
||||||
];
|
];
|
||||||
in mkDerivation rec {
|
in mkDerivation rec {
|
||||||
version = "3.16.5";
|
version = "3.16.6";
|
||||||
pname = "qgis";
|
pname = "qgis";
|
||||||
name = "${pname}-unwrapped-${version}";
|
name = "${pname}-unwrapped-${version}";
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ in mkDerivation rec {
|
||||||
owner = "qgis";
|
owner = "qgis";
|
||||||
repo = "QGIS";
|
repo = "QGIS";
|
||||||
rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}";
|
rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}";
|
||||||
sha256 = "1xkvgj1v2jgp107jyh9xmk1dzbbqxwkqy69z56vsaa8lf9gwgn5h";
|
sha256 = "1vnz5kiyjircmhn4vq3fa5j2kvkxpwcsry7jc6nxl0w0dqx1zay1";
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
|
|
@ -11,16 +11,15 @@ let
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "brscan4";
|
pname = "brscan4";
|
||||||
version = "0.4.9-1";
|
version = "0.4.10-1";
|
||||||
src = {
|
src = {
|
||||||
"i686-linux" = fetchurl {
|
"i686-linux" = fetchurl {
|
||||||
url = "http://download.brother.com/welcome/dlf006646/${pname}-${version}.i386.deb";
|
url = "http://download.brother.com/welcome/dlf006646/${pname}-${version}.i386.deb";
|
||||||
sha256 = "0pkg9aqvnkpjnb9cgzf7lxw2g4jqrf2w98irkv22r0gfsfs3nwma";
|
sha256 = "sha256-ymIAg+rfSYP5uzsAM1hUYZacJ0PXmKEoljNtb0pgGMw=";
|
||||||
};
|
};
|
||||||
"x86_64-linux" = fetchurl {
|
"x86_64-linux" = fetchurl {
|
||||||
|
|
||||||
url = "https://download.brother.com/welcome/dlf006645/${pname}-${version}.amd64.deb";
|
url = "https://download.brother.com/welcome/dlf006645/${pname}-${version}.amd64.deb";
|
||||||
sha256 = "0kakkl8rmsi2yr3f8vd1kk8vsl9g2ijhqil1cvvbwrhwgi0b7ai7";
|
sha256 = "sha256-Gpr5456MCNpyam3g2qPo7S3aEZFMaUGR8bu7YmRY8xk=";
|
||||||
};
|
};
|
||||||
}."${stdenv.hostPlatform.system}";
|
}."${stdenv.hostPlatform.system}";
|
||||||
|
|
||||||
|
@ -33,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [ libusb-compat-0_1 ];
|
buildInputs = [ libusb-compat-0_1 ];
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
|
|
||||||
patchPhase = ''
|
postPatch = ''
|
||||||
${myPatchElf "opt/brother/scanner/brscan4/brsaneconfig4"}
|
${myPatchElf "opt/brother/scanner/brscan4/brsaneconfig4"}
|
||||||
|
|
||||||
RPATH=${libusb-compat-0_1.out}/lib
|
RPATH=${libusb-compat-0_1.out}/lib
|
||||||
|
@ -45,6 +44,7 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = with lib; ''
|
installPhase = with lib; ''
|
||||||
|
runHook preInstall
|
||||||
PATH_TO_BRSCAN4="opt/brother/scanner/brscan4"
|
PATH_TO_BRSCAN4="opt/brother/scanner/brscan4"
|
||||||
mkdir -p $out/$PATH_TO_BRSCAN4
|
mkdir -p $out/$PATH_TO_BRSCAN4
|
||||||
cp -rp $PATH_TO_BRSCAN4/* $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
|
mkdir -p $out/etc/udev/rules.d
|
||||||
cp -p ${udevRules}/etc/udev/rules.d/*.rules \
|
cp -p ${udevRules}/etc/udev/rules.d/*.rules \
|
||||||
$out/etc/udev/rules.d
|
$out/etc/udev/rules.d
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
|
|
@ -26,11 +26,11 @@
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "calibre";
|
pname = "calibre";
|
||||||
version = "5.13.0";
|
version = "5.16.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
|
url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "sha256-GDFAZxZmkio7e7kVjhYqhNdhXIlUPJF0iMWVl0uWVCM=";
|
hash = "sha256-lTXCW0MGNOezecaGO9c2JGU4ylwpPmBaMXTY3nLNcrE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -62,8 +62,6 @@ mkDerivation rec {
|
||||||
|
|
||||||
dontUseQmakeConfigure = true;
|
dontUseQmakeConfigure = true;
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config qmake removeReferencesTo ];
|
nativeBuildInputs = [ pkg-config qmake removeReferencesTo ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
|
35
third_party/nixpkgs/pkgs/applications/misc/dwmblocks/default.nix
vendored
Normal file
35
third_party/nixpkgs/pkgs/applications/misc/dwmblocks/default.nix
vendored
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
91
third_party/nixpkgs/pkgs/applications/misc/jiten/default.nix
vendored
Normal file
91
third_party/nixpkgs/pkgs/applications/misc/jiten/default.nix
vendored
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,6 +1,18 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, pkg-config, makeWrapper, ncurses, readline
|
{ lib
|
||||||
, archivemount, atool, fzf, libarchive, rclone, sshfs, unzip, vlock
|
, stdenv
|
||||||
, conf ? null, withIcons ? false, withNerdIcons ? false }:
|
, fetchFromGitHub
|
||||||
|
, installShellFiles
|
||||||
|
, makeWrapper
|
||||||
|
, pkg-config
|
||||||
|
, file
|
||||||
|
, ncurses
|
||||||
|
, readline
|
||||||
|
, which
|
||||||
|
# options
|
||||||
|
, conf ? null
|
||||||
|
, withIcons ? false
|
||||||
|
, withNerdIcons ? false
|
||||||
|
}:
|
||||||
|
|
||||||
# Mutually exclusive options
|
# Mutually exclusive options
|
||||||
assert withIcons -> withNerdIcons == false;
|
assert withIcons -> withNerdIcons == false;
|
||||||
|
@ -20,21 +32,21 @@ stdenv.mkDerivation rec {
|
||||||
configFile = lib.optionalString (conf != null) (builtins.toFile "nnn.h" conf);
|
configFile = lib.optionalString (conf != null) (builtins.toFile "nnn.h" conf);
|
||||||
preBuild = lib.optionalString (conf != null) "cp ${configFile} src/nnn.h";
|
preBuild = lib.optionalString (conf != null) "cp ${configFile} src/nnn.h";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config makeWrapper ];
|
nativeBuildInputs = [ installShellFiles makeWrapper pkg-config ];
|
||||||
buildInputs = [ readline ncurses ];
|
buildInputs = [ readline ncurses ];
|
||||||
|
|
||||||
makeFlags = [ "PREFIX=$(out)" ]
|
makeFlags = [ "PREFIX=${placeholder "out"}" ]
|
||||||
++ lib.optional withIcons [ "O_ICONS=1" ]
|
++ lib.optional withIcons [ "O_ICONS=1" ]
|
||||||
++ lib.optional withNerdIcons [ "O_NERD=1" ];
|
++ lib.optional withNerdIcons [ "O_NERD=1" ];
|
||||||
|
|
||||||
# shell completions
|
binPath = lib.makeBinPath [ file which ];
|
||||||
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
|
|
||||||
|
|
||||||
wrapProgram $out/bin/nnn \
|
postInstall = ''
|
||||||
--prefix PATH : ${lib.makeBinPath [ archivemount atool fzf libarchive rclone sshfs unzip vlock ]}
|
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; {
|
meta = with lib; {
|
||||||
|
|
22
third_party/nixpkgs/pkgs/applications/misc/xplr/default.nix
vendored
Normal file
22
third_party/nixpkgs/pkgs/applications/misc/xplr/default.nix
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ lib, rustPlatform, fetchFromGitHub }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
name = "xplr";
|
||||||
|
version = "0.5.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sayanarijit";
|
||||||
|
repo = name;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0m28jhkvz46psxbv8g34v34m1znvj51gqizaxlmxbgh9fj3vyfdb";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "0q2k8bs32vxqbnjdh674waagpzpb9rxlwi4nggqlbzcmbqsy8n6k";
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -90,11 +90,11 @@ in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "brave";
|
pname = "brave";
|
||||||
version = "1.21.77";
|
version = "1.23.71";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb";
|
url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb";
|
||||||
sha256 = "Q7paeGAvdmc4+FP28ASLlJhN1ui7M5fDpxnrh+gbEm4=";
|
sha256 = "17ajn1vx5xwlp2yvjf1hr8vw3b7hiribv5gaipyb37zrhkff241h";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|
|
@ -170,7 +170,10 @@ let
|
||||||
)
|
)
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = lib.optionalString (chromiumVersionAtLeast "91") ''
|
||||||
|
# Required for patchShebangs (unsupported):
|
||||||
|
chmod -x third_party/webgpu-cts/src/tools/deno
|
||||||
|
'' + ''
|
||||||
# remove unused third-party
|
# remove unused third-party
|
||||||
for lib in ${toString gnSystemLibraries}; do
|
for lib in ${toString gnSystemLibraries}; do
|
||||||
if [ -d "third_party/$lib" ]; then
|
if [ -d "third_party/$lib" ]; then
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"stable": {
|
"stable": {
|
||||||
"version": "90.0.4430.72",
|
"version": "90.0.4430.85",
|
||||||
"sha256": "0hw916j55lm3qnidfp92i8w6zywdd47rhihn9pn23b7ziz58ik55",
|
"sha256": "08j9shrc6p0vpa3x7av7fj8wapnkr7h6m8ag1gh6gaky9d6mki81",
|
||||||
"sha256bin64": "0k1m786b94kh7r2c58qj8b9a39yr4m30kkrxk5d9q7dn1abl3wa3",
|
"sha256bin64": "0li9w6zfsmx5r90jm5v5gfv3l2a76jndg6z5jvb9yx9xvrp9gpir",
|
||||||
"deps": {
|
"deps": {
|
||||||
"gn": {
|
"gn": {
|
||||||
"version": "2021-02-09",
|
"version": "2021-02-09",
|
||||||
|
@ -18,9 +18,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"beta": {
|
"beta": {
|
||||||
"version": "90.0.4430.72",
|
"version": "90.0.4430.85",
|
||||||
"sha256": "0hw916j55lm3qnidfp92i8w6zywdd47rhihn9pn23b7ziz58ik55",
|
"sha256": "08j9shrc6p0vpa3x7av7fj8wapnkr7h6m8ag1gh6gaky9d6mki81",
|
||||||
"sha256bin64": "1ddj2pk4m26dpl1ja0r56fvm67c1z1hq5rq5an8px6ixy78s2760",
|
"sha256bin64": "0aw76phm8r9k2zlqywyggzdqa467c8naqa717m24dk3nvv2rfkg2",
|
||||||
"deps": {
|
"deps": {
|
||||||
"gn": {
|
"gn": {
|
||||||
"version": "2021-02-09",
|
"version": "2021-02-09",
|
||||||
|
|
|
@ -20,13 +20,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "ephemeral";
|
pname = "ephemeral";
|
||||||
version = "7.0.5";
|
version = "7.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cassidyjames";
|
owner = "cassidyjames";
|
||||||
repo = "ephemeral";
|
repo = "ephemeral";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-dets4YoTUgFCDOrvzNuAwJb3/MsnjOSBx9PBZuT0ruk=";
|
sha256 = "sha256-07HO8nC2Pwz2EAea4ZzmqyMfQdgX8FVqDepdA6j/NT8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -7,10 +7,10 @@ in
|
||||||
rec {
|
rec {
|
||||||
firefox = common rec {
|
firefox = common rec {
|
||||||
pname = "firefox";
|
pname = "firefox";
|
||||||
ffversion = "87.0";
|
ffversion = "88.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
||||||
sha512 = "c1c08be2283e7a162c8be2f2647ec2bb85cab592738dc45e4b4ffb72969229cc0019a30782a4cb27f09a13b088c63841071dd202b3543dfba295140a7d6246a4";
|
sha512 = "f58f44f2f0d0f54eae5ab4fa439205feb8b9209b1bf2ea2ae0c9691e9e583bae2cbd4033edb5bdf4e37eda5b95fca688499bed000fe26ced8ff4bbc49347ce31";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -32,10 +32,10 @@ rec {
|
||||||
|
|
||||||
firefox-esr-78 = common rec {
|
firefox-esr-78 = common rec {
|
||||||
pname = "firefox-esr";
|
pname = "firefox-esr";
|
||||||
ffversion = "78.9.0esr";
|
ffversion = "78.10.0esr";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
||||||
sha512 = "28582fc0a03fb50c0a817deb1083817bb7f2f5d38e98439bf655ed4ee18c83568b3002a59ef76edf357bfb11f55832a221d14130f116aac19d850768fba3ac8b";
|
sha512 = "5e2cf137dc781855542c29df6152fa74ba749801640ade3cf01487ce993786b87a4f603d25c0af9323e67c7e15c75655523428c1c1426527b8623c7ded9f5946";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
|
|
@ -263,7 +263,6 @@ let
|
||||||
--suffix PATH ':' "$out${browser.execdir or "/bin"}" \
|
--suffix PATH ':' "$out${browser.execdir or "/bin"}" \
|
||||||
--set MOZ_APP_LAUNCHER "${browserName}${nameSuffix}" \
|
--set MOZ_APP_LAUNCHER "${browserName}${nameSuffix}" \
|
||||||
--set MOZ_SYSTEM_DIR "$out/lib/mozilla" \
|
--set MOZ_SYSTEM_DIR "$out/lib/mozilla" \
|
||||||
--set SNAP_NAME "firefox" \
|
|
||||||
--set MOZ_LEGACY_PROFILES 1 \
|
--set MOZ_LEGACY_PROFILES 1 \
|
||||||
--set MOZ_ALLOW_DOWNGRADE 1 \
|
--set MOZ_ALLOW_DOWNGRADE 1 \
|
||||||
${lib.optionalString forceWayland ''
|
${lib.optionalString forceWayland ''
|
||||||
|
|
|
@ -88,19 +88,19 @@ let
|
||||||
fteLibPath = makeLibraryPath [ stdenv.cc.cc gmp ];
|
fteLibPath = makeLibraryPath [ stdenv.cc.cc gmp ];
|
||||||
|
|
||||||
# Upstream source
|
# Upstream source
|
||||||
version = "10.0.15";
|
version = "10.0.16";
|
||||||
|
|
||||||
lang = "en-US";
|
lang = "en-US";
|
||||||
|
|
||||||
srcs = {
|
srcs = {
|
||||||
x86_64-linux = fetchurl {
|
x86_64-linux = fetchurl {
|
||||||
url = "https://dist.torproject.org/torbrowser/${version}/tor-browser-linux64-${version}_${lang}.tar.xz";
|
url = "https://dist.torproject.org/torbrowser/${version}/tor-browser-linux64-${version}_${lang}.tar.xz";
|
||||||
sha256 = "1ah69jmfgik063f9gkvyv9d4k706pqihmzc4k7cc95zyd17v8wrs";
|
sha256 = "07h2gd6cwwq17lrwjpfah1xvr8ny8700qvi971qacrr7ssicw2pw";
|
||||||
};
|
};
|
||||||
|
|
||||||
i686-linux = fetchurl {
|
i686-linux = fetchurl {
|
||||||
url = "https://dist.torproject.org/torbrowser/${version}/tor-browser-linux32-${version}_${lang}.tar.xz";
|
url = "https://dist.torproject.org/torbrowser/${version}/tor-browser-linux32-${version}_${lang}.tar.xz";
|
||||||
sha256 = "0gyhxfs4qpg6ys038d52cxnmb4khbng1w4hcsavi2rlgv18bz75p";
|
sha256 = "145kniiby5nnd0ll3v2gggzxz52bqbrdp72hvh96i8qnzi0fq25a";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
|
@ -44,7 +44,7 @@ with lib;
|
||||||
# Those pieces of software we entirely ignore upstream's handling of, and just
|
# Those pieces of software we entirely ignore upstream's handling of, and just
|
||||||
# make sure they're in the path if desired.
|
# make sure they're in the path if desired.
|
||||||
let
|
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
|
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
|
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
|
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";
|
url = "https://github.com/k3s-io/k3s";
|
||||||
rev = "v${k3sVersion}";
|
rev = "v${k3sVersion}";
|
||||||
leaveDotGit = true; # ./scripts/version.sh depends on git
|
leaveDotGit = true; # ./scripts/version.sh depends on git
|
||||||
sha256 = "sha256-7RAZkSTh15BEZ3p6u2xE9vd5fpy4KBYrl2TjtpIiStM=";
|
sha256 = "sha256-IIZotJKQ/+WNmfcEJU5wFtZBufWjUp4MeVCRk4tSjyQ=";
|
||||||
};
|
};
|
||||||
# Stage 1 of the k3s build:
|
# Stage 1 of the k3s build:
|
||||||
# Let's talk about how k3s is structured.
|
# Let's talk about how k3s is structured.
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, k3sVersion ? "1.20.5-k3s1" }:
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, k3sVersion ? "1.20.6-k3s1" }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "kube3d";
|
pname = "kube3d";
|
||||||
version = "4.4.1";
|
version = "4.4.2";
|
||||||
|
|
||||||
excludedPackages = "tools";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "rancher";
|
owner = "rancher";
|
||||||
repo = "k3d";
|
repo = "k3d";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-u9P+7qNomamd4BkqWBxA6rDom0hF6t10QfDTjqOMGeE=";
|
sha256 = "sha256-6BDetNPWyAVZOsnCWs90HljVpfUlAytFDPQ/SqPxwgg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = null;
|
vendorSha256 = null;
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
excludedPackages = "\\(tools\\|docgen\\)";
|
||||||
|
|
||||||
preBuild = let t = "github.com/rancher/k3d/v4/version"; in
|
preBuild = let t = "github.com/rancher/k3d/v4/version"; in
|
||||||
''
|
''
|
||||||
buildFlagsArray+=("-ldflags" "-s -w -X ${t}.Version=v${version} -X ${t}.K3sVersion=v${k3sVersion}")
|
buildFlagsArray+=("-ldflags" "-s -w -X ${t}.Version=v${version} -X ${t}.K3sVersion=v${k3sVersion}")
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "waypoint";
|
pname = "waypoint";
|
||||||
version = "0.3.0";
|
version = "0.3.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "hashicorp";
|
owner = "hashicorp";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-lB9ELa/okNvtKFDP/vImEdYFJCKRgtAcpBG1kIoAysE=";
|
sha256 = "sha256-WzKUVfc7oGMh0TamL5b6gsm/BAfSCZ6EB3Hg4Tg/3Hw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
deleteVendor = true;
|
deleteVendor = true;
|
||||||
|
@ -36,7 +36,7 @@ buildGoModule rec {
|
||||||
export HOME="$TMPDIR"
|
export HOME="$TMPDIR"
|
||||||
|
|
||||||
$out/bin/waypoint --help
|
$out/bin/waypoint --help
|
||||||
$out/bin/waypoint version | grep "Waypoint v${version}"
|
$out/bin/waypoint version | grep "CLI: v${version}"
|
||||||
runHook postInstallCheck
|
runHook postInstallCheck
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "bitlbee-facebook";
|
pname = "bitlbee-facebook";
|
||||||
version = "1.2.1";
|
version = "1.2.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
owner = "bitlbee";
|
owner = "bitlbee";
|
||||||
repo = "bitlbee-facebook";
|
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 ];
|
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
|
||||||
|
|
||||||
buildInputs = [ bitlbee json-glib ];
|
buildInputs = [ bitlbee json-glib ];
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
, atk
|
, atk
|
||||||
, cairo
|
, cairo
|
||||||
, dbus
|
, dbus
|
||||||
|
, dpkg
|
||||||
, libGL
|
, libGL
|
||||||
, fontconfig
|
, fontconfig
|
||||||
, freetype
|
, freetype
|
||||||
|
@ -29,11 +30,11 @@
|
||||||
assert pulseaudioSupport -> libpulseaudio != null;
|
assert pulseaudioSupport -> libpulseaudio != null;
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "5.6.13632.0328";
|
version = "5.6.16775.0418";
|
||||||
srcs = {
|
srcs = {
|
||||||
x86_64-linux = fetchurl {
|
x86_64-linux = fetchurl {
|
||||||
url = "https://zoom.us/client/${version}/zoom_x86_64.pkg.tar.xz";
|
url = "https://zoom.us/client/${version}/zoom_amd64.deb";
|
||||||
sha256 = "0nskpg3rbv40jcbih95sfdr0kfv5hjv50z9jdz1cddl8v7hbqg71";
|
sha256 = "1fmzwxq8jv5k1b2kvg1ij9g6cdp1hladd8vm3cxzd8fywdjcndim";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -70,17 +71,21 @@ in stdenv.mkDerivation rec {
|
||||||
inherit version;
|
inherit version;
|
||||||
src = srcs.${stdenv.hostPlatform.system};
|
src = srcs.${stdenv.hostPlatform.system};
|
||||||
|
|
||||||
dontUnpack = true;
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
dpkg
|
||||||
makeWrapper
|
makeWrapper
|
||||||
];
|
];
|
||||||
|
|
||||||
|
unpackCmd = ''
|
||||||
|
mkdir out
|
||||||
|
dpkg -x $curSrc out
|
||||||
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
mkdir $out
|
mkdir $out
|
||||||
tar -C $out -xf ${src}
|
mv usr/* $out/
|
||||||
mv $out/usr/* $out/
|
mv opt $out/
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -2,18 +2,18 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "glowing-bear";
|
pname = "glowing-bear";
|
||||||
version = "0.7.2";
|
version = "0.9.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
rev = version;
|
rev = version;
|
||||||
owner = "glowing-bear";
|
owner = "glowing-bear";
|
||||||
repo = "glowing-bear";
|
repo = "glowing-bear";
|
||||||
sha256 = "14a3fqsmi28g7j3lzk4l4m47p2iml1aaf3514wazn2clw48lnqhw";
|
sha256 = "0lf0j72m6rwlgqssdxf0m9si99lah08lww7q7i08p5i5lpv6zh2s";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir $out
|
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
|
cp -R 3rdparty assets css directives js $out
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -53,11 +53,11 @@ in buildPythonPackage {
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/share $out/bin
|
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 contrib/matrix_upload.py $out/bin/matrix_upload
|
||||||
cp $src/contrib/matrix_decrypt.py $out/bin/matrix_decrypt
|
cp contrib/matrix_decrypt.py $out/bin/matrix_decrypt
|
||||||
cp $src/contrib/matrix_sso_helper.py $out/bin/matrix_sso_helper
|
cp contrib/matrix_sso_helper.py $out/bin/matrix_sso_helper
|
||||||
substituteInPlace $out/bin/matrix_upload \
|
substituteInPlace $out/bin/matrix_upload \
|
||||||
--replace '/usr/bin/env -S python3' '${scriptPython}/bin/python'
|
--replace '/usr/bin/env -S python3' '${scriptPython}/bin/python'
|
||||||
substituteInPlace $out/bin/matrix_sso_helper \
|
substituteInPlace $out/bin/matrix_sso_helper \
|
||||||
|
@ -66,7 +66,7 @@ in buildPythonPackage {
|
||||||
--replace '/usr/bin/env python3' '${scriptPython}/bin/python'
|
--replace '/usr/bin/env python3' '${scriptPython}/bin/python'
|
||||||
|
|
||||||
mkdir -p $out/${python.sitePackages}
|
mkdir -p $out/${python.sitePackages}
|
||||||
cp -r $src/matrix $out/${python.sitePackages}/matrix
|
cp -r matrix $out/${python.sitePackages}/matrix
|
||||||
'';
|
'';
|
||||||
|
|
||||||
dontPatchShebangs = true;
|
dontPatchShebangs = true;
|
||||||
|
|
54
third_party/nixpkgs/pkgs/applications/networking/mailreaders/himalaya/default.nix
vendored
Normal file
54
third_party/nixpkgs/pkgs/applications/networking/mailreaders/himalaya/default.nix
vendored
Normal file
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,665 +1,665 @@
|
||||||
{
|
{
|
||||||
version = "78.9.1";
|
version = "78.10.0";
|
||||||
sources = [
|
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";
|
locale = "af";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "ar";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "ast";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "be";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "bg";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "br";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "ca";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "cak";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "cs";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "cy";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "da";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "de";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "dsb";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "el";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "en-CA";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "en-GB";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "en-US";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "es-AR";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "es-ES";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "et";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "eu";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "fa";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "fi";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "fr";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "fy-NL";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "ga-IE";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "gd";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "gl";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "he";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "hr";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "hsb";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "hu";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "hy-AM";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "id";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "is";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "it";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "ja";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "ka";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "kab";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "kk";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "ko";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "lt";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "ms";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "nb-NO";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "nl";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "nn-NO";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "pa-IN";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "pl";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "pt-BR";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "pt-PT";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "rm";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "ro";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "ru";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "si";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "sk";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "sl";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "sq";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "sr";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "sv-SE";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "th";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "tr";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "uk";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "uz";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "vi";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "zh-CN";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "zh-TW";
|
||||||
arch = "linux-x86_64";
|
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";
|
locale = "af";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "ar";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "ast";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "be";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "bg";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "br";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "ca";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "cak";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "cs";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "cy";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "da";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "de";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "dsb";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "el";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "en-CA";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "en-GB";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "en-US";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "es-AR";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "es-ES";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "et";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "eu";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "fa";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "fi";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "fr";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "fy-NL";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "ga-IE";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "gd";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "gl";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "he";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "hr";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "hsb";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "hu";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "hy-AM";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "id";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "is";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "it";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "ja";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "ka";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "kab";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "kk";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "ko";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "lt";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "ms";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "nb-NO";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "nl";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "nn-NO";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "pa-IN";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "pl";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "pt-BR";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "pt-PT";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "rm";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "ro";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "ru";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "si";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "sk";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "sl";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "sq";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "sr";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "sv-SE";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "th";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "tr";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "uk";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "uz";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "vi";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "zh-CN";
|
||||||
arch = "linux-i686";
|
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";
|
locale = "zh-TW";
|
||||||
arch = "linux-i686";
|
arch = "linux-i686";
|
||||||
sha256 = "6003512f81b9d73363bffa38be003adc684456b75017222c2e324659d94f7735";
|
sha256 = "f3df92551c102dd113ace048eca32e4dfc797cedc53fd0ea93ddea6954915316";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,13 +73,13 @@ assert waylandSupport -> gtk3Support == true;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "thunderbird";
|
pname = "thunderbird";
|
||||||
version = "78.9.1";
|
version = "78.10.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url =
|
url =
|
||||||
"mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz";
|
"mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz";
|
||||||
sha512 =
|
sha512 =
|
||||||
"3370ngycp6syvxfnindzz06xg39vb2knfi2zshsm87aqrapk52vmfbdagv5a85vwlmd2h5gd47zcmz2mj5360mcfxlc380hrqks69zs";
|
"0nywhw1y9g78fpfgmcp6vphdidpnhfxif18qx23j7p20ayymvi2gd3smm4qfr6rlb0dkzyk1vxc2dj47zd8169wlkvr6l1kfsgvrj49";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
|
@ -20,13 +20,13 @@
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "nextcloud-client";
|
pname = "nextcloud-client";
|
||||||
version = "3.1.3";
|
version = "3.2.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nextcloud";
|
owner = "nextcloud";
|
||||||
repo = "desktop";
|
repo = "desktop";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-8Ql6tOvWOjAvMJA87WlT9TbpnbciBsjDxRuYlMVi/m8=";
|
sha256 = "1nklsa2lx9ayjp8rk1mycjysqqmnq47djig0wygzna5mycl3ji06";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ lib, fetchFromGitHub, buildPythonApplication, fuse
|
{ lib, fetchFromGitHub, buildPythonApplication, fuse
|
||||||
, appdirs, colorama, dateutil, requests, requests_toolbelt
|
, appdirs, colorama, dateutil, requests, requests_toolbelt
|
||||||
, fusepy, sqlalchemy }:
|
, fusepy, sqlalchemy, setuptools }:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "acd_cli";
|
pname = "acd_cli";
|
||||||
|
@ -16,7 +16,7 @@ buildPythonApplication rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ appdirs colorama dateutil fusepy requests
|
propagatedBuildInputs = [ appdirs colorama dateutil fusepy requests
|
||||||
requests_toolbelt sqlalchemy ];
|
requests_toolbelt setuptools sqlalchemy ];
|
||||||
|
|
||||||
makeWrapperArgs = [ "--prefix LIBFUSE_PATH : ${fuse}/lib/libfuse.so" ];
|
makeWrapperArgs = [ "--prefix LIBFUSE_PATH : ${fuse}/lib/libfuse.so" ];
|
||||||
|
|
||||||
|
@ -34,7 +34,6 @@ buildPythonApplication rec {
|
||||||
description = "A command line interface and FUSE filesystem for Amazon Cloud Drive";
|
description = "A command line interface and FUSE filesystem for Amazon Cloud Drive";
|
||||||
homepage = "https://github.com/yadayada/acd_cli";
|
homepage = "https://github.com/yadayada/acd_cli";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
|
||||||
maintainers = with maintainers; [ edwtjo ];
|
maintainers = with maintainers; [ edwtjo ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,22 +12,24 @@
|
||||||
, libgee
|
, libgee
|
||||||
, json-glib
|
, json-glib
|
||||||
, glib
|
, glib
|
||||||
|
, glib-networking
|
||||||
, sqlite
|
, sqlite
|
||||||
, libsoup
|
, libsoup
|
||||||
, gtk3
|
, gtk3
|
||||||
, pantheon /* granite, icons, maintainers */
|
, pantheon /* granite, icons, maintainers */
|
||||||
, webkitgtk
|
, webkitgtk
|
||||||
|
, libpeas
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "elementary-planner";
|
pname = "elementary-planner";
|
||||||
version = "2.5.7";
|
version = "2.6.9";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "alainm23";
|
owner = "alainm23";
|
||||||
repo = "planner";
|
repo = "planner";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0s2f9q7i31c2splflfnaiqviwnxbsp2zvibr70xafhbhnkmzlrsk";
|
sha256 = "17ij017x2cplqhway8376k8mmrll4w1jfwhf7ixldq9g0q2inzd8";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -43,10 +45,12 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
evolution-data-server
|
evolution-data-server
|
||||||
glib
|
glib
|
||||||
|
glib-networking
|
||||||
gtk3
|
gtk3
|
||||||
json-glib
|
json-glib
|
||||||
libgee
|
libgee
|
||||||
libical
|
libical
|
||||||
|
libpeas
|
||||||
libsoup
|
libsoup
|
||||||
pantheon.elementary-icon-theme
|
pantheon.elementary-icon-theme
|
||||||
pantheon.granite
|
pantheon.granite
|
||||||
|
@ -66,6 +70,10 @@ stdenv.mkDerivation rec {
|
||||||
)
|
)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
ln -s $out/bin/com.github.alainm23.planner $out/bin/planner
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Task manager with Todoist support designed for GNU/Linux 🚀️";
|
description = "Task manager with Todoist support designed for GNU/Linux 🚀️";
|
||||||
homepage = "https://planner-todo.web.app";
|
homepage = "https://planner-todo.web.app";
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (python3.pkgs) buildPythonApplication fetchPypi;
|
inherit (python3.pkgs) buildPythonApplication fetchPypi setuptools-scm;
|
||||||
in
|
in
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "todoman";
|
pname = "todoman";
|
||||||
|
@ -17,8 +17,11 @@ buildPythonApplication rec {
|
||||||
sha256 = "e7e5cab13ecce0562b1f13f46ab8cbc079caed4b462f2371929f8a4abff2bcbe";
|
sha256 = "e7e5cab13ecce0562b1f13f46ab8cbc079caed4b462f2371929f8a4abff2bcbe";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
installShellFiles
|
installShellFiles
|
||||||
|
setuptools-scm
|
||||||
];
|
];
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
atomicwrites
|
atomicwrites
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "octopus";
|
pname = "octopus";
|
||||||
version = "0.7.1";
|
version = "0.7.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "luntergroup";
|
owner = "luntergroup";
|
||||||
repo = "octopus";
|
repo = "octopus";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-TZ57uKTZ87FWpLNGPY8kbML1EDM8fnEFbXR+Z3dmiao=";
|
sha256 = "sha256-sPOBZ0YrEdjMNVye/xwqwA5IpsLy2jWN3sm/ce1fLg4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
|
|
@ -216,6 +216,8 @@ stdenv.mkDerivation rec {
|
||||||
in
|
in
|
||||||
(concatStringsSep "\n"
|
(concatStringsSep "\n"
|
||||||
(flatten [
|
(flatten [
|
||||||
|
"runHook preInstall"
|
||||||
|
|
||||||
(optionalString (withScripting) "buildPythonPath \"${base} $pythonPath\" \n")
|
(optionalString (withScripting) "buildPythonPath \"${base} $pythonPath\" \n")
|
||||||
|
|
||||||
# wrap each of the directly usable tools
|
# wrap each of the directly usable tools
|
||||||
|
@ -227,10 +229,19 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
# link in the CLI utils
|
# link in the CLI utils
|
||||||
(map (util: "ln -s ${base}/bin/${util} $out/bin/${util}") 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
|
# can't run this for each pname
|
||||||
# stable and unstable are in the same versions.nix
|
# stable and unstable are in the same versions.nix
|
||||||
# and kicad-small reuses stable
|
# and kicad-small reuses stable
|
||||||
|
@ -248,7 +259,7 @@ stdenv.mkDerivation rec {
|
||||||
KiCad is an open source software suite for Electronic Design Automation.
|
KiCad is an open source software suite for Electronic Design Automation.
|
||||||
The Programs handle Schematic Capture, and PCB Layout with Gerber output.
|
The Programs handle Schematic Capture, and PCB Layout with Gerber output.
|
||||||
'';
|
'';
|
||||||
license = lib.licenses.agpl3;
|
license = lib.licenses.gpl3Plus;
|
||||||
# berce seems inactive...
|
# berce seems inactive...
|
||||||
maintainers = with lib.maintainers; [ evils kiwi berce ];
|
maintainers = with lib.maintainers; [ evils kiwi berce ];
|
||||||
# kicad is cross platform
|
# kicad is cross platform
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
{ lib, fetchFromGitHub, ocamlPackages, rsync }:
|
{ lib, fetchFromGitHub, ocamlPackages, rsync }:
|
||||||
|
|
||||||
ocamlPackages.buildDunePackage {
|
ocamlPackages.buildDunePackage rec {
|
||||||
pname = "beluga";
|
pname = "beluga";
|
||||||
version = "unstable-2020-03-11";
|
version = "1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Beluga-lang";
|
owner = "Beluga-lang";
|
||||||
repo = "Beluga";
|
repo = "Beluga";
|
||||||
rev = "6133b2f572219333f304bb4f77c177592324c55b";
|
rev = "v${version}";
|
||||||
sha256 = "0sy6mi50z3mvs5z7dx38piydapk89all81rh038x3559b5fsk68q";
|
sha256 = "1ziqjfv8jwidl8lj2mid2shhgqhv31dfh5wad2zxjpvf6038ahsw";
|
||||||
};
|
};
|
||||||
|
|
||||||
useDune2 = true;
|
useDune2 = true;
|
||||||
|
|
|
@ -5,11 +5,11 @@ assert (!blas.isILP64) && (!lapack.isILP64);
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gmsh";
|
pname = "gmsh";
|
||||||
version = "4.8.0";
|
version = "4.8.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://gmsh.info/src/gmsh-${version}-source.tgz";
|
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
|
buildInputs = [ blas lapack gmm fltk libjpeg zlib libGLU libGL
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "gh";
|
pname = "gh";
|
||||||
version = "1.9.1";
|
version = "1.9.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cli";
|
owner = "cli";
|
||||||
repo = "cli";
|
repo = "cli";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1nrbz049nizrrfxdpws05gj0bqk47l4mrl4wcvfb6nwispc74ib0";
|
sha256 = "0lx6sx3zkjq9855va1vxbd5g47viqkrchk5d2rb6xj7zywwm4mgb";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "0j2jy7n7hca5ybwwgh7cvm77j96ngaq1a1l5bl70vjpd8hz2qapc";
|
vendorSha256 = "1zmyd566xcksgqm0f7mq0rkfnxk0fmf39k13fcp9jy30c1y9681v";
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
|
|
@ -2,21 +2,28 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "git-interactive-rebase-tool";
|
pname = "git-interactive-rebase-tool";
|
||||||
version = "2.0.0";
|
version = "2.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "MitMaro";
|
owner = "MitMaro";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "117zwxyq2vc33nbnfpjbdr5vc2l5ymf6ln1dm5551ha3y3gdq3bf";
|
sha256 = "sha256-DYl/GUbeNtKmXoR3gq8mK8EfsZNVNlrdngAwfzG+epw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "051llwk9swq03xdqwyj0hlyv2ywq2f1cnks95nygyy393q7v930x";
|
cargoSha256 = "sha256-1joMWPfn0s+pLsO6NHMT6AoXZ33R8MY2AWSrROY2mw8=";
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
||||||
|
|
||||||
# external_editor::tests::* tests fail
|
checkFlags = [
|
||||||
doCheck = false;
|
"--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; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/MitMaro/git-interactive-rebase-tool";
|
homepage = "https://github.com/MitMaro/git-interactive-rebase-tool";
|
||||||
|
|
|
@ -17,7 +17,7 @@ assert javahlBindings -> jdk != null && perl != null;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
common = { version, sha256, extraBuildInputs ? [ ] }: stdenv.mkDerivation (rec {
|
common = { version, sha256 }: stdenv.mkDerivation (rec {
|
||||||
inherit version;
|
inherit version;
|
||||||
pname = "subversion";
|
pname = "subversion";
|
||||||
|
|
||||||
|
@ -29,8 +29,7 @@ let
|
||||||
# Can't do separate $lib and $bin, as libs reference bins
|
# Can't do separate $lib and $bin, as libs reference bins
|
||||||
outputs = [ "out" "dev" "man" ];
|
outputs = [ "out" "dev" "man" ];
|
||||||
|
|
||||||
buildInputs = [ zlib apr aprutil sqlite openssl ]
|
buildInputs = [ zlib apr aprutil sqlite openssl lz4 utf8proc ]
|
||||||
++ extraBuildInputs
|
|
||||||
++ lib.optional httpSupport serf
|
++ lib.optional httpSupport serf
|
||||||
++ lib.optional pythonBindings python
|
++ lib.optional pythonBindings python
|
||||||
++ lib.optional perlBindings perl
|
++ lib.optional perlBindings perl
|
||||||
|
@ -114,12 +113,10 @@ in {
|
||||||
subversion_1_10 = common {
|
subversion_1_10 = common {
|
||||||
version = "1.10.7";
|
version = "1.10.7";
|
||||||
sha256 = "1nhrd8z6c94sc0ryrzpyd98qdn5a5g3x0xv1kdb9da4drrk8y2ww";
|
sha256 = "1nhrd8z6c94sc0ryrzpyd98qdn5a5g3x0xv1kdb9da4drrk8y2ww";
|
||||||
extraBuildInputs = [ lz4 utf8proc ];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
subversion = common {
|
subversion = common {
|
||||||
version = "1.12.2";
|
version = "1.12.2";
|
||||||
sha256 = "0wgpw3kzsiawzqk4y0xgh1z93kllxydgv4lsviim45y5wk4bbl1v";
|
sha256 = "0wgpw3kzsiawzqk4y0xgh1z93kllxydgv4lsviim45y5wk4bbl1v";
|
||||||
extraBuildInputs = [ lz4 utf8proc ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
43
third_party/nixpkgs/pkgs/applications/video/giph/default.nix
vendored
Normal file
43
third_party/nixpkgs/pkgs/applications/video/giph/default.nix
vendored
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -26,23 +26,25 @@
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "jellyfin-media-player";
|
pname = "jellyfin-media-player";
|
||||||
version = "1.3.1";
|
version = "1.4.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "iwalton3";
|
owner = "jellyfin";
|
||||||
repo = "jellyfin-media-player";
|
repo = "jellyfin-media-player";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-rXW6vC0Ow8xFblXjGYaDExAZM8RgqLkDHiX7R8vAWjI=";
|
sha256 = "sha256-500Qlxpqkf+9D/jrzkrYkkFwxs0soLG/I5mgFV1UOc8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
jmpDist = fetchzip {
|
jmpDist = fetchzip {
|
||||||
url = "https://github.com/iwalton3/jellyfin-web-jmp/releases/download/jwc-10.7.2/dist.zip";
|
url = "https://github.com/iwalton3/jellyfin-web-jmp/releases/download/jwc-10.7.2-2/dist.zip";
|
||||||
sha256 = "sha256-EpNAN4nzINiwMrmg0e4x3uJRTy5ovx4ZkmP83Kbn4S0=";
|
sha256 = "sha256-9oxOcSCV1Gm8WLpwVLanyUlhPx5PWUrkkWvKmwND94g=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# the webclient-files are not copied in the regular build script. Copy them just like the linux build
|
# the webclient-files are not copied in the regular build script. Copy them just like the linux build
|
||||||
./fix-osx-resources.patch
|
./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 = [
|
buildInputs = [
|
||||||
|
@ -99,9 +101,9 @@ mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
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";
|
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" ];
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
||||||
maintainers = with maintainers; [ jojosch ];
|
maintainers = with maintainers; [ jojosch ];
|
||||||
};
|
};
|
||||||
|
|
|
@ -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",
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, mpv-unwrapped, lib }:
|
{ stdenvNoCC, mpv-unwrapped, lib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenvNoCC.mkDerivation rec {
|
||||||
pname = "mpv-autoload";
|
pname = "mpv-autoload";
|
||||||
version = mpv-unwrapped.version;
|
version = mpv-unwrapped.version;
|
||||||
src = "${mpv-unwrapped.src.outPath}/TOOLS/lua/autoload.lua";
|
src = "${mpv-unwrapped.src.outPath}/TOOLS/lua/autoload.lua";
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, fetchgit, lib
|
{ stdenvNoCC, fetchgit, lib
|
||||||
, yad, mkvtoolnix-cli, libnotify }:
|
, yad, mkvtoolnix-cli, libnotify }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenvNoCC.mkDerivation {
|
||||||
pname = "mpv-convert-script";
|
pname = "mpv-convert-script";
|
||||||
version = "2016-03-18";
|
version = "2016-03-18";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
|
@ -30,14 +30,17 @@ stdenv.mkDerivation {
|
||||||
'';
|
'';
|
||||||
passthru.scriptName = "convert_script.lua";
|
passthru.scriptName = "convert_script.lua";
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "Convert parts of a video while you are watching it in mpv";
|
description = "Convert parts of a video while you are watching it in mpv";
|
||||||
homepage = "https://gist.github.com/Zehkul/25ea7ae77b30af959be0";
|
homepage = "https://gist.github.com/Zehkul/25ea7ae77b30af959be0";
|
||||||
maintainers = [ lib.maintainers.Profpatsch ];
|
maintainers = [ maintainers.Profpatsch ];
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
When this script is loaded into mpv, you can hit Alt+W to mark the beginning
|
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.
|
and Alt+W again to mark the end of the clip. Then a settings window opens.
|
||||||
'';
|
'';
|
||||||
|
license = licenses.unfree;
|
||||||
|
# script crashes mpv. See https://github.com/NixOS/nixpkgs/issues/113202
|
||||||
|
broken = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
37
third_party/nixpkgs/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix
vendored
Normal file
37
third_party/nixpkgs/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix
vendored
Normal file
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, curl, xclip }:
|
{ lib, stdenvNoCC, fetchFromGitHub, curl, xclip }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenvNoCC.mkDerivation rec {
|
||||||
pname = "mpvacious";
|
pname = "mpvacious";
|
||||||
version = "0.14";
|
version = "0.14";
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ lib, stdenv
|
{ lib, stdenvNoCC
|
||||||
, fetchFromGitHub }:
|
, fetchFromGitHub }:
|
||||||
stdenv.mkDerivation rec {
|
stdenvNoCC.mkDerivation rec {
|
||||||
pname = "simple-mpv-ui";
|
pname = "simple-mpv-ui";
|
||||||
version = "1.0.0";
|
version = "1.0.0";
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, python3 }:
|
{ lib, stdenvNoCC, fetchFromGitHub, fetchpatch, python3 }:
|
||||||
|
|
||||||
# Usage: `pkgs.mpv.override { scripts = [ pkgs.mpvScripts.sponsorblock ]; }`
|
# Usage: `pkgs.mpv.override { scripts = [ pkgs.mpvScripts.sponsorblock ]; }`
|
||||||
stdenv.mkDerivation {
|
stdenvNoCC.mkDerivation {
|
||||||
pname = "mpv_sponsorblock";
|
pname = "mpv_sponsorblock";
|
||||||
version = "unstable-2020-07-05";
|
version = "unstable-2020-07-05";
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ fetchFromGitHub, lib, python3, stdenv }:
|
{ fetchFromGitHub, lib, python3, stdenvNoCC }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenvNoCC.mkDerivation rec {
|
||||||
pname = "mpv_thumbnail_script";
|
pname = "mpv_thumbnail_script";
|
||||||
version = "unstable-2020-01-16";
|
version = "unstable-2020-01-16";
|
||||||
|
|
||||||
|
|
|
@ -25,13 +25,13 @@ assert lib.versionAtLeast mlt.version "6.24.0";
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "shotcut";
|
pname = "shotcut";
|
||||||
version = "21.02.27";
|
version = "21.03.21";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mltframework";
|
owner = "mltframework";
|
||||||
repo = "shotcut";
|
repo = "shotcut";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "bcuJz27jDAB3OPEKq3xNgfv6C31UoMKosS4YIRZNMjM=";
|
sha256 = "UdeHbNkJ0U9FeTmpbcU4JxiyIHkrlC8ErhtY6zdCZEk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
37
third_party/nixpkgs/pkgs/applications/video/srt-live-server/default.nix
vendored
Normal file
37
third_party/nixpkgs/pkgs/applications/video/srt-live-server/default.nix
vendored
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
61
third_party/nixpkgs/pkgs/applications/video/srt-live-server/fix-insecure-printfs.patch
vendored
Normal file
61
third_party/nixpkgs/pkgs/applications/video/srt-live-server/fix-insecure-printfs.patch
vendored
Normal file
|
@ -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<int, std::string>::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();
|
|
@ -38,13 +38,13 @@ let
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "crun";
|
pname = "crun";
|
||||||
version = "0.19";
|
version = "0.19.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "containers";
|
owner = "containers";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-G9asWedX03cP5Qg5HIzlSIwwqNL16kiyWairk+6Kabw=";
|
sha256 = "sha256-v5uESTEspIc8rhZXrQqLEVMDvvPcfHuFoj6lI4M5z70=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,45 @@
|
||||||
|
From 95a7293b30ff7b89d615daea00269ed32f4b70a2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Geoffrey McRae <geoff@hostfission.com>
|
||||||
|
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
|
||||||
|
|
|
@ -1,17 +1,18 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, SDL2, SDL2_ttf, spice-protocol
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, SDL2, SDL2_ttf, spice-protocol
|
||||||
, fontconfig, libX11, freefont_ttf, nettle, libpthreadstubs, libXau, libXdmcp
|
, 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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "looking-glass-client";
|
pname = "looking-glass-client";
|
||||||
version = "B2";
|
version = "B3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "gnif";
|
owner = "gnif";
|
||||||
repo = "LookingGlass";
|
repo = "LookingGlass";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "100b5kzh8gr81kzw5fdqz2jsms25hv3815d31vy3qd6lrlm5gs3d";
|
sha256 = "1vmabjzn85p0brdian9lbpjq39agzn8k0limn8zjm713lh3n3c0f";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -19,10 +20,18 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
SDL2 SDL2_ttf spice-protocol fontconfig libX11 freefont_ttf nettle
|
SDL2 SDL2_ttf spice-protocol fontconfig libX11 freefont_ttf nettle
|
||||||
libpthreadstubs libXau libXdmcp libXi libXext wayland libffi libGLU expat
|
libpthreadstubs libXau libXdmcp libXi libXext wayland wayland-protocols
|
||||||
libbfd
|
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";
|
sourceRoot = "source/client";
|
||||||
NIX_CFLAGS_COMPILE = "-mavx"; # Fix some sort of AVX compiler problem.
|
NIX_CFLAGS_COMPILE = "-mavx"; # Fix some sort of AVX compiler problem.
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib, stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, installShellFiles
|
, installShellFiles
|
||||||
|
@ -16,13 +17,13 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "podman";
|
pname = "podman";
|
||||||
version = "3.1.1";
|
version = "3.1.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "containers";
|
owner = "containers";
|
||||||
repo = "podman";
|
repo = "podman";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1ihpz50c50frw9nrjp0vna2lg50kwlar6y6vr4s5sjiwza1qv2d2";
|
sha256 = "sha256-PS41e7myv5xCSJIeT+SRj4rLVCXpthq7KeHisYoSiOE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
|
|
@ -2,15 +2,12 @@
|
||||||
libpciaccess, libxcb, libXrandr, libXinerama, libXfixes, dbus, libdrm,
|
libpciaccess, libxcb, libXrandr, libXinerama, libXfixes, dbus, libdrm,
|
||||||
systemd}:
|
systemd}:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "spice-vdagent-0.20.0";
|
pname = "spice-vdagent";
|
||||||
|
version = "0.21.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.spice-space.org/download/releases/${name}.tar.bz2";
|
url = "https://www.spice-space.org/download/releases/${pname}-${version}.tar.bz2";
|
||||||
sha256 = "0n9k2kna2gd1zi6jv45zsp2jlv439nz5l5jjijirxqaycwi74srf";
|
sha256 = "0n8jlc1pv6mkry161y656b1nk9hhhminjq6nymzmmyjl7k95ymzx";
|
||||||
};
|
};
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=address-of-packed-member" ];
|
|
||||||
patchFlags = [ "-uNp1" ];
|
|
||||||
# included in the next release.
|
|
||||||
patches = [ ./timeout.diff ];
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace data/spice-vdagent.desktop --replace /usr $out
|
substituteInPlace data/spice-vdagent.desktop --replace /usr $out
|
||||||
'';
|
'';
|
||||||
|
@ -29,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||||
* Multiple displays
|
* Multiple displays
|
||||||
'';
|
'';
|
||||||
homepage = "https://www.spice-space.org/";
|
homepage = "https://www.spice-space.org/";
|
||||||
license = lib.licenses.gpl3;
|
license = lib.licenses.gpl3Plus;
|
||||||
maintainers = [ lib.maintainers.aboseley ];
|
maintainers = [ lib.maintainers.aboseley ];
|
||||||
platforms = lib.platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
|
@ -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);
|
|
||||||
|
|
|
@ -1,18 +1,27 @@
|
||||||
{ lib, stdenv, fetchFromGitHub,
|
{ lib
|
||||||
meson, ninja, pkg-config, scdoc,
|
, stdenv
|
||||||
wayland, wayland-protocols, libxkbcommon,
|
, fetchFromGitHub
|
||||||
cairo, gdk-pixbuf, pam
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, scdoc
|
||||||
|
, wayland
|
||||||
|
, wayland-protocols
|
||||||
|
, libxkbcommon
|
||||||
|
, cairo
|
||||||
|
, gdk-pixbuf
|
||||||
|
, pam
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "swaylock-effects";
|
pname = "swaylock-effects";
|
||||||
version = "v1.6-2";
|
version = "1.6-3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mortie";
|
owner = "mortie";
|
||||||
repo = "swaylock-effects";
|
repo = "swaylock-effects";
|
||||||
rev = version;
|
rev = "v${version}";
|
||||||
sha256 = "0fs3c4liajgkax0a2pdc7117v1g9k73nv87g3kyv9wsnkfbbz534";
|
sha256 = "sha256-71IX0fC4xCPP6pK63KtvDMb3KoP1rw/Iz3S7BgiLSpg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -23,7 +32,9 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [ wayland wayland-protocols libxkbcommon cairo gdk-pixbuf pam ];
|
buildInputs = [ wayland wayland-protocols libxkbcommon cairo gdk-pixbuf pam ];
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-Dpam=enabled" "-Dgdk-pixbuf=enabled" "-Dman-pages=enabled"
|
"-Dpam=enabled"
|
||||||
|
"-Dgdk-pixbuf=enabled"
|
||||||
|
"-Dman-pages=enabled"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -81,6 +81,9 @@ let
|
||||||
# compatibility with NixOS
|
# compatibility with NixOS
|
||||||
ln -s /host/etc/static static
|
ln -s /host/etc/static static
|
||||||
|
|
||||||
|
# symlink nix config
|
||||||
|
ln -s /host/etc/nix nix
|
||||||
|
|
||||||
# symlink some NSS stuff
|
# symlink some NSS stuff
|
||||||
ln -s /host/etc/passwd passwd
|
ln -s /host/etc/passwd passwd
|
||||||
ln -s /host/etc/group group
|
ln -s /host/etc/group group
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue