Project import generated by Copybara.
GitOrigin-RevId: fbfb79400a08bf754e32b4d4fc3f7d8f8055cf94
This commit is contained in:
parent
b91ba12f0f
commit
14e964f59b
303 changed files with 6777 additions and 1769 deletions
10
third_party/nixpkgs/.github/CONTRIBUTING.md
vendored
10
third_party/nixpkgs/.github/CONTRIBUTING.md
vendored
|
@ -59,6 +59,16 @@ Follow these steps to backport a change into a release branch in compliance with
|
||||||
5. Push to GitHub and open a backport pull request. Make sure to select the release branch (e.g. `release-20.09`) as the target branch of the pull request, and link to the pull request in which the original change was comitted to `master`. The pull request title should be the commit title with the release version as prefix, e.g. `[20.09]`.
|
5. Push to GitHub and open a backport pull request. Make sure to select the release branch (e.g. `release-20.09`) as the target branch of the pull request, and link to the pull request in which the original change was comitted to `master`. The pull request title should be the commit title with the release version as prefix, e.g. `[20.09]`.
|
||||||
6. When the backport pull request is merged and you have the necessary privileges you can also replace the label `9.needs: port to stable` with `8.has: port to stable` on the original pull request. This way maintainers can keep track of missing backports easier.
|
6. When the backport pull request is merged and you have the necessary privileges you can also replace the label `9.needs: port to stable` with `8.has: port to stable` on the original pull request. This way maintainers can keep track of missing backports easier.
|
||||||
|
|
||||||
|
## Generating 21.11 Release Notes
|
||||||
|
|
||||||
|
Documentation in nixpkgs is transitioning to a markdown-centric workflow. Release notes now require a translation step to convert from markdown to a compatible docbook document.
|
||||||
|
|
||||||
|
Steps for updating 21.11 Release notes:
|
||||||
|
|
||||||
|
1. Edit `nixos/doc/manual/release-notes/rl-2111.section.md` with the desired changes
|
||||||
|
2. Run `./nixos/doc/manual/md-to-db.sh` to render `nixos/doc/manual/from_md/release-notes/rl-2111.section.xml`
|
||||||
|
3. Include changes to `rl-2111.section.md` and `rl-2111.section.xml` in the same commit.
|
||||||
|
|
||||||
## Reviewing contributions
|
## Reviewing contributions
|
||||||
|
|
||||||
See the nixpkgs manual for more details on how to [Review contributions](https://nixos.org/nixpkgs/manual/#chap-reviewing-contributions).
|
See the nixpkgs manual for more details on how to [Review contributions](https://nixos.org/nixpkgs/manual/#chap-reviewing-contributions).
|
||||||
|
|
|
@ -23,5 +23,8 @@ Reviewing guidelines: https://nixos.org/manual/nixpkgs/unstable/#chap-reviewing-
|
||||||
- [ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside [nixos/tests](https://github.com/NixOS/nixpkgs/blob/master/nixos/tests))
|
- [ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside [nixos/tests](https://github.com/NixOS/nixpkgs/blob/master/nixos/tests))
|
||||||
- [ ] Tested compilation of all pkgs that depend on this change using `nix-shell -p nixpkgs-review --run "nixpkgs-review wip"`
|
- [ ] Tested compilation of all pkgs that depend on this change using `nix-shell -p nixpkgs-review --run "nixpkgs-review wip"`
|
||||||
- [ ] Tested execution of all binary files (usually in `./result/bin/`)
|
- [ ] Tested execution of all binary files (usually in `./result/bin/`)
|
||||||
- [ ] Added a release notes entry if the change is major or breaking
|
- [21.11 Release Notes](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md#generating-2111-release-notes)
|
||||||
|
- [ ] (Package updates) Added a release notes entry if the change is major or breaking
|
||||||
|
- [ ] (Module updates) Added a release notes entry if the change is significant
|
||||||
|
- [ ] (Module addition) Added a release notes entry if adding a new NixOS module
|
||||||
- [ ] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md).
|
- [ ] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md).
|
||||||
|
|
|
@ -183,9 +183,6 @@
|
||||||
|
|
||||||
- Arguments should be listed in the order they are used, with the exception of `lib`, which always goes first.
|
- Arguments should be listed in the order they are used, with the exception of `lib`, which always goes first.
|
||||||
|
|
||||||
- The top-level `lib` must be used in the master and 21.05 branch over its alias `stdenv.lib` as it now causes evaluation errors when aliases are disabled which is the case for ofborg.
|
|
||||||
`lib` is unrelated to `stdenv`, and so `stdenv.lib` should only be used as a convenience alias when developing locally to avoid having to modify the function inputs just to test something out.
|
|
||||||
|
|
||||||
## Package naming {#sec-package-naming}
|
## Package naming {#sec-package-naming}
|
||||||
|
|
||||||
The key words _must_, _must not_, _required_, _shall_, _shall not_, _should_, _should not_, _recommended_, _may_, and _optional_ in this section are to be interpreted as described in [RFC 2119](https://tools.ietf.org/html/rfc2119). Only _emphasized_ words are to be interpreted in this way.
|
The key words _must_, _must not_, _required_, _shall_, _shall not_, _should_, _should not_, _recommended_, _may_, and _optional_ in this section are to be interpreted as described in [RFC 2119](https://tools.ietf.org/html/rfc2119). Only _emphasized_ words are to be interpreted in this way.
|
||||||
|
|
|
@ -7,7 +7,7 @@ You can quickly check your edits with `make`:
|
||||||
```ShellSession
|
```ShellSession
|
||||||
$ cd /path/to/nixpkgs/doc
|
$ cd /path/to/nixpkgs/doc
|
||||||
$ nix-shell
|
$ nix-shell
|
||||||
[nix-shell]$ make $makeFlags
|
[nix-shell]$ make
|
||||||
```
|
```
|
||||||
|
|
||||||
If you experience problems, run `make debug` to help understand the docbook errors.
|
If you experience problems, run `make debug` to help understand the docbook errors.
|
||||||
|
|
7
third_party/nixpkgs/doc/default.nix
vendored
7
third_party/nixpkgs/doc/default.nix
vendored
|
@ -17,10 +17,6 @@ in pkgs.stdenv.mkDerivation {
|
||||||
|
|
||||||
src = lib.cleanSource ./.;
|
src = lib.cleanSource ./.;
|
||||||
|
|
||||||
makeFlags = [
|
|
||||||
"PANDOC_LUA_FILTERS_DIR=${pkgs.pandoc-lua-filters}/share/pandoc/filters"
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
ln -s ${doc-support} ./doc-support/result
|
ln -s ${doc-support} ./doc-support/result
|
||||||
'';
|
'';
|
||||||
|
@ -37,4 +33,7 @@ in pkgs.stdenv.mkDerivation {
|
||||||
echo "doc manual $dest manual.html" >> $out/nix-support/hydra-build-products
|
echo "doc manual $dest manual.html" >> $out/nix-support/hydra-build-products
|
||||||
echo "doc manual $dest nixpkgs-manual.epub" >> $out/nix-support/hydra-build-products
|
echo "doc manual $dest nixpkgs-manual.epub" >> $out/nix-support/hydra-build-products
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# Environment variables
|
||||||
|
PANDOC_LUA_FILTERS_DIR = "${pkgs.pandoc-lua-filters}/share/pandoc/filters";
|
||||||
}
|
}
|
||||||
|
|
|
@ -114,21 +114,24 @@ Both `buildGoModule` and `buildGoPackage` can be tweaked to behave slightly diff
|
||||||
|
|
||||||
### `buildFlagsArray` and `buildFlags`: {#ex-goBuildFlags-noarray}
|
### `buildFlagsArray` and `buildFlags`: {#ex-goBuildFlags-noarray}
|
||||||
|
|
||||||
These attributes set build flags supported by `go build`. We recommend using `buildFlagsArray`. The most common use case of these attributes is to make the resulting executable aware of its own version. For example:
|
These attributes set build flags supported by `go build`. We recommend using `buildFlagsArray`.
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
buildFlagsArray = [
|
buildFlagsArray = [
|
||||||
# Note: single quotes are not needed.
|
"-tags=release"
|
||||||
"-ldflags=-X main.Version=${version} -X main.Commit=${version}"
|
|
||||||
];
|
];
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### `ldflags` {#var-go-ldflags}
|
||||||
|
|
||||||
|
Arguments to pass to the Go linker tool via the `-ldflags` argument of `go build`. The most common use case for this argument is to make the resulting executable aware of its own version. For example:
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
buildFlagsArray = ''
|
ldflags = [
|
||||||
-ldflags=
|
"-s" "-w"
|
||||||
-X main.Version=${version}
|
"-X main.Version=${version}"
|
||||||
-X main.Commit=${version}
|
"-X main.Commit=${version}"
|
||||||
'';
|
];
|
||||||
```
|
```
|
||||||
|
|
||||||
### `deleteVendor` {#var-go-deleteVendor}
|
### `deleteVendor` {#var-go-deleteVendor}
|
||||||
|
|
6
third_party/nixpkgs/lib/licenses.nix
vendored
6
third_party/nixpkgs/lib/licenses.nix
vendored
|
@ -734,6 +734,12 @@ lib.mapAttrs (n: v: v // { shortName = n; }) ({
|
||||||
free = false;
|
free = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
stk = {
|
||||||
|
shortName = "stk";
|
||||||
|
fullName = "Synthesis Tool Kit 4.3";
|
||||||
|
url = https://github.com/thestk/stk/blob/master/LICENSE;
|
||||||
|
};
|
||||||
|
|
||||||
tcltk = spdx {
|
tcltk = spdx {
|
||||||
spdxId = "TCL";
|
spdxId = "TCL";
|
||||||
fullName = "TCL/TK License";
|
fullName = "TCL/TK License";
|
||||||
|
|
|
@ -300,6 +300,12 @@
|
||||||
githubId = 335271;
|
githubId = 335271;
|
||||||
name = "James Alexander Feldman-Crough";
|
name = "James Alexander Feldman-Crough";
|
||||||
};
|
};
|
||||||
|
afontain = {
|
||||||
|
email = "antoine.fontaine@epfl.ch";
|
||||||
|
github = "necessarily-equal";
|
||||||
|
githubId = 59283660;
|
||||||
|
name = "Antoine Fontaine";
|
||||||
|
};
|
||||||
aforemny = {
|
aforemny = {
|
||||||
email = "aforemny@posteo.de";
|
email = "aforemny@posteo.de";
|
||||||
github = "aforemny";
|
github = "aforemny";
|
||||||
|
@ -3555,6 +3561,12 @@
|
||||||
githubId = 1943632;
|
githubId = 1943632;
|
||||||
name = "fro_ozen";
|
name = "fro_ozen";
|
||||||
};
|
};
|
||||||
|
frogamic = {
|
||||||
|
email = "frogamic@protonmail.com";
|
||||||
|
github = "frogamic";
|
||||||
|
githubId = 10263813;
|
||||||
|
name = "Dominic Shelton";
|
||||||
|
};
|
||||||
Frostman = {
|
Frostman = {
|
||||||
email = "me@slukjanov.name";
|
email = "me@slukjanov.name";
|
||||||
github = "Frostman";
|
github = "Frostman";
|
||||||
|
@ -7099,6 +7111,12 @@
|
||||||
githubId = 5047140;
|
githubId = 5047140;
|
||||||
name = "Victor Collod";
|
name = "Victor Collod";
|
||||||
};
|
};
|
||||||
|
musfay = {
|
||||||
|
email = "musfay@protonmail.com";
|
||||||
|
github = "musfay";
|
||||||
|
githubId = 33374965;
|
||||||
|
name = "Mustafa Çalışkan";
|
||||||
|
};
|
||||||
mupdt = {
|
mupdt = {
|
||||||
email = "nix@pdtpartners.com";
|
email = "nix@pdtpartners.com";
|
||||||
github = "mupdt";
|
github = "mupdt";
|
||||||
|
@ -7243,6 +7261,16 @@
|
||||||
githubId = 10180857;
|
githubId = 10180857;
|
||||||
name = "Anmol Sethi";
|
name = "Anmol Sethi";
|
||||||
};
|
};
|
||||||
|
nicbk = {
|
||||||
|
email = "nicolas@nicbk.com";
|
||||||
|
github = "nicbk";
|
||||||
|
githubId = 77309427;
|
||||||
|
name = "Nicolás Kennedy";
|
||||||
|
keys = [{
|
||||||
|
longkeyid = "rsa4096/0xC061089EFEBF7A35";
|
||||||
|
fingerprint = "7BC1 77D9 C222 B1DC FB2F 0484 C061 089E FEBF 7A35";
|
||||||
|
}];
|
||||||
|
};
|
||||||
nichtsfrei = {
|
nichtsfrei = {
|
||||||
email = "philipp.eder@posteo.net";
|
email = "philipp.eder@posteo.net";
|
||||||
github = "nichtsfrei";
|
github = "nichtsfrei";
|
||||||
|
@ -8413,6 +8441,12 @@
|
||||||
githubId = 1891350;
|
githubId = 1891350;
|
||||||
name = "Michael Raskin";
|
name = "Michael Raskin";
|
||||||
};
|
};
|
||||||
|
ratsclub = {
|
||||||
|
email = "victor@freire.dev.br";
|
||||||
|
github = "ratsclub";
|
||||||
|
githubId = 25647735;
|
||||||
|
name = "Victor Freire";
|
||||||
|
};
|
||||||
ravloony = {
|
ravloony = {
|
||||||
email = "ravloony@gmail.com";
|
email = "ravloony@gmail.com";
|
||||||
name = "Tom Macdonald";
|
name = "Tom Macdonald";
|
||||||
|
@ -8625,6 +8659,12 @@
|
||||||
githubId = 449990;
|
githubId = 449990;
|
||||||
name = "Cedric Cellier";
|
name = "Cedric Cellier";
|
||||||
};
|
};
|
||||||
|
rkitover = {
|
||||||
|
email = "rkitover@gmail.com";
|
||||||
|
github = "rkitover";
|
||||||
|
githubId = 77611;
|
||||||
|
name = "Rafael Kitover";
|
||||||
|
};
|
||||||
rkoe = {
|
rkoe = {
|
||||||
email = "rk@simple-is-better.org";
|
email = "rk@simple-is-better.org";
|
||||||
github = "rkoe";
|
github = "rkoe";
|
||||||
|
@ -8766,10 +8806,14 @@
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
roosemberth = {
|
roosemberth = {
|
||||||
email = "roosembert.palacios+nixpkgs@gmail.com";
|
email = "roosembert.palacios+nixpkgs@posteo.ch";
|
||||||
github = "roosemberth";
|
github = "roosemberth";
|
||||||
githubId = 3621083;
|
githubId = 3621083;
|
||||||
name = "Roosembert (Roosemberth) Palacios";
|
name = "Roosembert (Roosemberth) Palacios";
|
||||||
|
keys = [{
|
||||||
|
longkeyid = "rsa2048/0xCAAAECE5C2242BB7";
|
||||||
|
fingerprint = "78D9 1871 D059 663B 6117 7532 CAAA ECE5 C224 2BB7";
|
||||||
|
}];
|
||||||
};
|
};
|
||||||
rople380 = {
|
rople380 = {
|
||||||
name = "rople380";
|
name = "rople380";
|
||||||
|
|
|
@ -14,8 +14,13 @@
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
<section xml:id="highlights">
|
<section xml:id="highlights">
|
||||||
<title>Highlights</title>
|
<title>Highlights</title>
|
||||||
<para>
|
<itemizedlist spacing="compact">
|
||||||
</para>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
PHP now defaults to PHP 8.0, updated from 7.4.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
<section xml:id="new-services">
|
<section xml:id="new-services">
|
||||||
<title>New Services</title>
|
<title>New Services</title>
|
||||||
|
@ -45,6 +50,12 @@
|
||||||
<link xlink:href="options.html#opt-services.geoipupdate.enable">services.geoipupdate</link>.
|
<link xlink:href="options.html#opt-services.geoipupdate.enable">services.geoipupdate</link>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
PHP 7.3 is no longer supported due to upstream not supporting
|
||||||
|
this version for the entire lifecycle of the 21.11 release.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
<section xml:id="other-notable-changes">
|
<section xml:id="other-notable-changes">
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Gnome: 3.36 -> 3.40, see its <link xlink:href="https://help.gnome.org/misc/release-notes/3.40/">release notes</link>
|
GNOME: 3.36 -> 40, see its <link xlink:href="https://help.gnome.org/misc/release-notes/40.0/">release notes</link>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
|
|
|
@ -6,6 +6,8 @@ In addition to numerous new and upgraded packages, this release has the followin
|
||||||
|
|
||||||
## Highlights
|
## Highlights
|
||||||
|
|
||||||
|
* PHP now defaults to PHP 8.0, updated from 7.4.
|
||||||
|
|
||||||
## New Services
|
## New Services
|
||||||
|
|
||||||
* [geoipupdate](https://github.com/maxmind/geoipupdate), a GeoIP
|
* [geoipupdate](https://github.com/maxmind/geoipupdate), a GeoIP
|
||||||
|
@ -19,4 +21,7 @@ In addition to numerous new and upgraded packages, this release has the followin
|
||||||
* `services.geoip-updater` was broken and has been replaced by
|
* `services.geoip-updater` was broken and has been replaced by
|
||||||
[services.geoipupdate](options.html#opt-services.geoipupdate.enable).
|
[services.geoipupdate](options.html#opt-services.geoipupdate.enable).
|
||||||
|
|
||||||
|
* PHP 7.3 is no longer supported due to upstream not supporting this
|
||||||
|
version for the entire lifecycle of the 21.11 release.
|
||||||
|
|
||||||
## Other Notable Changes
|
## Other Notable Changes
|
||||||
|
|
|
@ -6,28 +6,33 @@ let
|
||||||
im = config.i18n.inputMethod;
|
im = config.i18n.inputMethod;
|
||||||
cfg = im.fcitx5;
|
cfg = im.fcitx5;
|
||||||
fcitx5Package = pkgs.fcitx5-with-addons.override { inherit (cfg) addons; };
|
fcitx5Package = pkgs.fcitx5-with-addons.override { inherit (cfg) addons; };
|
||||||
in
|
in {
|
||||||
{
|
options = {
|
||||||
options = {
|
i18n.inputMethod.fcitx5 = {
|
||||||
i18n.inputMethod.fcitx5 = {
|
addons = mkOption {
|
||||||
addons = mkOption {
|
type = with types; listOf package;
|
||||||
type = with types; listOf package;
|
default = [];
|
||||||
default = [];
|
example = with pkgs; [ fcitx5-rime ];
|
||||||
example = with pkgs; [ fcitx5-rime ];
|
description = ''
|
||||||
description = ''
|
Enabled Fcitx5 addons.
|
||||||
Enabled Fcitx5 addons.
|
'';
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
config = mkIf (im.enabled == "fcitx5") {
|
config = mkIf (im.enabled == "fcitx5") {
|
||||||
i18n.inputMethod.package = fcitx5Package;
|
i18n.inputMethod.package = fcitx5Package;
|
||||||
|
|
||||||
environment.variables = {
|
environment.variables = {
|
||||||
GTK_IM_MODULE = "fcitx";
|
GTK_IM_MODULE = "fcitx";
|
||||||
QT_IM_MODULE = "fcitx";
|
QT_IM_MODULE = "fcitx";
|
||||||
XMODIFIERS = "@im=fcitx";
|
XMODIFIERS = "@im=fcitx";
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
|
||||||
|
systemd.user.services.fcitx5-daemon = {
|
||||||
|
enable = true;
|
||||||
|
script = "${fcitx5Package}/bin/fcitx5";
|
||||||
|
wantedBy = [ "graphical-session.target" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -139,6 +139,7 @@
|
||||||
./programs/flexoptix-app.nix
|
./programs/flexoptix-app.nix
|
||||||
./programs/freetds.nix
|
./programs/freetds.nix
|
||||||
./programs/fuse.nix
|
./programs/fuse.nix
|
||||||
|
./programs/gamemode.nix
|
||||||
./programs/geary.nix
|
./programs/geary.nix
|
||||||
./programs/gnome-disks.nix
|
./programs/gnome-disks.nix
|
||||||
./programs/gnome-documents.nix
|
./programs/gnome-documents.nix
|
||||||
|
@ -553,6 +554,7 @@
|
||||||
./services/misc/siproxd.nix
|
./services/misc/siproxd.nix
|
||||||
./services/misc/snapper.nix
|
./services/misc/snapper.nix
|
||||||
./services/misc/sonarr.nix
|
./services/misc/sonarr.nix
|
||||||
|
./services/misc/sourcehut
|
||||||
./services/misc/spice-vdagentd.nix
|
./services/misc/spice-vdagentd.nix
|
||||||
./services/misc/ssm-agent.nix
|
./services/misc/ssm-agent.nix
|
||||||
./services/misc/sssd.nix
|
./services/misc/sssd.nix
|
||||||
|
|
96
third_party/nixpkgs/nixos/modules/programs/gamemode.nix
vendored
Normal file
96
third_party/nixpkgs/nixos/modules/programs/gamemode.nix
vendored
Normal file
|
@ -0,0 +1,96 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.programs.gamemode;
|
||||||
|
settingsFormat = pkgs.formats.ini { };
|
||||||
|
configFile = settingsFormat.generate "gamemode.ini" cfg.settings;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
programs.gamemode = {
|
||||||
|
enable = mkEnableOption "GameMode to optimise system performance on demand";
|
||||||
|
|
||||||
|
enableRenice = mkEnableOption "CAP_SYS_NICE on gamemoded to support lowering process niceness" // {
|
||||||
|
default = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
settings = mkOption {
|
||||||
|
type = settingsFormat.type;
|
||||||
|
default = {};
|
||||||
|
description = ''
|
||||||
|
System-wide configuration for GameMode (/etc/gamemode.ini).
|
||||||
|
See gamemoded(8) man page for available settings.
|
||||||
|
'';
|
||||||
|
example = literalExample ''
|
||||||
|
{
|
||||||
|
general = {
|
||||||
|
renice = 10;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Warning: GPU optimisations have the potential to damage hardware
|
||||||
|
gpu = {
|
||||||
|
apply_gpu_optimisations = "accept-responsibility";
|
||||||
|
gpu_device = 0;
|
||||||
|
amd_performance_level = "high";
|
||||||
|
};
|
||||||
|
|
||||||
|
custom = {
|
||||||
|
start = "''${pkgs.libnotify}/bin/notify-send 'GameMode started'";
|
||||||
|
end = "''${pkgs.libnotify}/bin/notify-send 'GameMode ended'";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
environment = {
|
||||||
|
systemPackages = [ pkgs.gamemode ];
|
||||||
|
etc."gamemode.ini".source = configFile;
|
||||||
|
};
|
||||||
|
|
||||||
|
security = {
|
||||||
|
polkit.enable = true;
|
||||||
|
wrappers = mkIf cfg.enableRenice {
|
||||||
|
gamemoded = {
|
||||||
|
source = "${pkgs.gamemode}/bin/gamemoded";
|
||||||
|
capabilities = "cap_sys_nice+ep";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
packages = [ pkgs.gamemode ];
|
||||||
|
user.services.gamemoded = {
|
||||||
|
# The upstream service already defines this, but doesn't get applied.
|
||||||
|
# See https://github.com/NixOS/nixpkgs/issues/81138
|
||||||
|
wantedBy = [ "default.target" ];
|
||||||
|
|
||||||
|
# Use pkexec from the security wrappers to allow users to
|
||||||
|
# run libexec/cpugovctl & libexec/gpuclockctl as root with
|
||||||
|
# the the actions defined in share/polkit-1/actions.
|
||||||
|
#
|
||||||
|
# This uses a link farm to make sure other wrapped executables
|
||||||
|
# aren't included in PATH.
|
||||||
|
environment.PATH = mkForce (pkgs.linkFarm "pkexec" [
|
||||||
|
{
|
||||||
|
name = "pkexec";
|
||||||
|
path = "${config.security.wrapperDir}/pkexec";
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = mkIf cfg.enableRenice [
|
||||||
|
"" # Tell systemd to clear the existing ExecStart list, to prevent appending to it.
|
||||||
|
"${config.security.wrapperDir}/gamemoded"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
maintainers = with maintainers; [ kira-bruneau ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4,7 +4,7 @@ with lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
inherit (pkgs) mysql gzip;
|
inherit (pkgs) mariadb gzip;
|
||||||
|
|
||||||
cfg = config.services.mysqlBackup;
|
cfg = config.services.mysqlBackup;
|
||||||
defaultUser = "mysqlbackup";
|
defaultUser = "mysqlbackup";
|
||||||
|
@ -20,7 +20,7 @@ let
|
||||||
'';
|
'';
|
||||||
backupDatabaseScript = db: ''
|
backupDatabaseScript = db: ''
|
||||||
dest="${cfg.location}/${db}.gz"
|
dest="${cfg.location}/${db}.gz"
|
||||||
if ${mysql}/bin/mysqldump ${if cfg.singleTransaction then "--single-transaction" else ""} ${db} | ${gzip}/bin/gzip -c > $dest.tmp; then
|
if ${mariadb}/bin/mysqldump ${if cfg.singleTransaction then "--single-transaction" else ""} ${db} | ${gzip}/bin/gzip -c > $dest.tmp; then
|
||||||
mv $dest.tmp $dest
|
mv $dest.tmp $dest
|
||||||
echo "Backed up to $dest"
|
echo "Backed up to $dest"
|
||||||
else
|
else
|
||||||
|
|
|
@ -81,11 +81,14 @@ in
|
||||||
# supporting it, or their bundled containerd
|
# supporting it, or their bundled containerd
|
||||||
systemd.enableUnifiedCgroupHierarchy = false;
|
systemd.enableUnifiedCgroupHierarchy = false;
|
||||||
|
|
||||||
|
environment.systemPackages = [ config.services.k3s.package ];
|
||||||
|
|
||||||
systemd.services.k3s = {
|
systemd.services.k3s = {
|
||||||
description = "k3s service";
|
description = "k3s service";
|
||||||
after = [ "network.service" "firewall.service" ] ++ (optional cfg.docker "docker.service");
|
after = [ "network.service" "firewall.service" ] ++ (optional cfg.docker "docker.service");
|
||||||
wants = [ "network.service" "firewall.service" ];
|
wants = [ "network.service" "firewall.service" ];
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
path = optional config.boot.zfs.enabled config.boot.zfs.package;
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
# See: https://github.com/rancher/k3s/blob/dddbd16305284ae4bd14c0aade892412310d7edc/install.sh#L197
|
# See: https://github.com/rancher/k3s/blob/dddbd16305284ae4bd14c0aade892412310d7edc/install.sh#L197
|
||||||
Type = if cfg.role == "agent" then "exec" else "notify";
|
Type = if cfg.role == "agent" then "exec" else "notify";
|
||||||
|
|
|
@ -34,7 +34,7 @@ in
|
||||||
|
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
type = types.package;
|
type = types.package;
|
||||||
example = literalExample "pkgs.mysql";
|
example = literalExample "pkgs.mariadb";
|
||||||
description = "
|
description = "
|
||||||
Which MySQL derivation to use. MariaDB packages are supported too.
|
Which MySQL derivation to use. MariaDB packages are supported too.
|
||||||
";
|
";
|
||||||
|
|
|
@ -7,7 +7,7 @@ let
|
||||||
fpm = config.services.phpfpm.pools.roundcube;
|
fpm = config.services.phpfpm.pools.roundcube;
|
||||||
localDB = cfg.database.host == "localhost";
|
localDB = cfg.database.host == "localhost";
|
||||||
user = cfg.database.username;
|
user = cfg.database.username;
|
||||||
phpWithPspell = pkgs.php.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled);
|
phpWithPspell = pkgs.php74.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled);
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.services.roundcube = {
|
options.services.roundcube = {
|
||||||
|
|
220
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/builds.nix
vendored
Normal file
220
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/builds.nix
vendored
Normal file
|
@ -0,0 +1,220 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
scfg = cfg.builds;
|
||||||
|
rcfg = config.services.redis;
|
||||||
|
iniKey = "builds.sr.ht";
|
||||||
|
|
||||||
|
drv = pkgs.sourcehut.buildsrht;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.sourcehut.builds = {
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "buildsrht";
|
||||||
|
description = ''
|
||||||
|
User for builds.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 5002;
|
||||||
|
description = ''
|
||||||
|
Port on which the "builds" module should listen.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
database = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "builds.sr.ht";
|
||||||
|
description = ''
|
||||||
|
PostgreSQL database name for builds.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
statePath = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "${cfg.statePath}/buildsrht";
|
||||||
|
description = ''
|
||||||
|
State path for builds.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
enableWorker = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Run workers for builds.sr.ht.
|
||||||
|
Perform manually on machine: `cd ${scfg.statePath}/images; docker build -t qemu -f qemu/Dockerfile .`
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
images = mkOption {
|
||||||
|
type = types.attrsOf (types.attrsOf (types.attrsOf types.package));
|
||||||
|
default = { };
|
||||||
|
example = lib.literalExample ''(let
|
||||||
|
# Pinning unstable to allow usage with flakes and limit rebuilds.
|
||||||
|
pkgs_unstable = builtins.fetchGit {
|
||||||
|
url = "https://github.com/NixOS/nixpkgs";
|
||||||
|
rev = "ff96a0fa5635770390b184ae74debea75c3fd534";
|
||||||
|
ref = "nixos-unstable";
|
||||||
|
};
|
||||||
|
image_from_nixpkgs = pkgs_unstable: (import ("${pkgs.sourcehut.buildsrht}/lib/images/nixos/image.nix") {
|
||||||
|
pkgs = (import pkgs_unstable {});
|
||||||
|
});
|
||||||
|
in
|
||||||
|
{
|
||||||
|
nixos.unstable.x86_64 = image_from_nixpkgs pkgs_unstable;
|
||||||
|
}
|
||||||
|
)'';
|
||||||
|
description = ''
|
||||||
|
Images for builds.sr.ht. Each package should be distro.release.arch and point to a /nix/store/package/root.img.qcow2.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
config = with scfg; let
|
||||||
|
image_dirs = lib.lists.flatten (
|
||||||
|
lib.attrsets.mapAttrsToList
|
||||||
|
(distro: revs:
|
||||||
|
lib.attrsets.mapAttrsToList
|
||||||
|
(rev: archs:
|
||||||
|
lib.attrsets.mapAttrsToList
|
||||||
|
(arch: image:
|
||||||
|
pkgs.runCommandNoCC "buildsrht-images" { } ''
|
||||||
|
mkdir -p $out/${distro}/${rev}/${arch}
|
||||||
|
ln -s ${image}/*.qcow2 $out/${distro}/${rev}/${arch}/root.img.qcow2
|
||||||
|
'')
|
||||||
|
archs)
|
||||||
|
revs)
|
||||||
|
scfg.images);
|
||||||
|
image_dir_pre = pkgs.symlinkJoin {
|
||||||
|
name = "builds.sr.ht-worker-images-pre";
|
||||||
|
paths = image_dirs ++ [
|
||||||
|
"${pkgs.sourcehut.buildsrht}/lib/images"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
image_dir = pkgs.runCommandNoCC "builds.sr.ht-worker-images" { } ''
|
||||||
|
mkdir -p $out/images
|
||||||
|
cp -Lr ${image_dir_pre}/* $out/images
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
lib.mkIf (cfg.enable && elem "builds" cfg.services) {
|
||||||
|
users = {
|
||||||
|
users = {
|
||||||
|
"${user}" = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = user;
|
||||||
|
extraGroups = lib.optionals cfg.builds.enableWorker [ "docker" ];
|
||||||
|
description = "builds.sr.ht user";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
groups = {
|
||||||
|
"${user}" = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.postgresql = {
|
||||||
|
authentication = ''
|
||||||
|
local ${database} ${user} trust
|
||||||
|
'';
|
||||||
|
ensureDatabases = [ database ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = user;
|
||||||
|
ensurePermissions = { "DATABASE \"${database}\"" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
tmpfiles.rules = [
|
||||||
|
"d ${statePath} 0755 ${user} ${user} -"
|
||||||
|
] ++ (lib.optionals cfg.builds.enableWorker
|
||||||
|
[ "d ${statePath}/logs 0775 ${user} ${user} - -" ]
|
||||||
|
);
|
||||||
|
|
||||||
|
services = {
|
||||||
|
buildsrht = import ./service.nix { inherit config pkgs lib; } scfg drv iniKey
|
||||||
|
{
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "builds.sr.ht website service";
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${cfg.python}/bin/gunicorn ${drv.pname}.app:app -b ${cfg.address}:${toString port}";
|
||||||
|
|
||||||
|
# Hack to bypass this hack: https://git.sr.ht/~sircmpwn/core.sr.ht/tree/master/item/srht-update-profiles#L6
|
||||||
|
} // { preStart = " "; };
|
||||||
|
|
||||||
|
buildsrht-worker = {
|
||||||
|
enable = scfg.enableWorker;
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
partOf = [ "buildsrht.service" ];
|
||||||
|
description = "builds.sr.ht worker service";
|
||||||
|
path = [ pkgs.openssh pkgs.docker ];
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
User = user;
|
||||||
|
Group = "nginx";
|
||||||
|
Restart = "always";
|
||||||
|
};
|
||||||
|
serviceConfig.ExecStart = "${pkgs.sourcehut.buildsrht}/bin/builds.sr.ht-worker";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.sourcehut.settings = {
|
||||||
|
# URL builds.sr.ht is being served at (protocol://domain)
|
||||||
|
"builds.sr.ht".origin = mkDefault "http://builds.${cfg.originBase}";
|
||||||
|
# Address and port to bind the debug server to
|
||||||
|
"builds.sr.ht".debug-host = mkDefault "0.0.0.0";
|
||||||
|
"builds.sr.ht".debug-port = mkDefault port;
|
||||||
|
# Configures the SQLAlchemy connection string for the database.
|
||||||
|
"builds.sr.ht".connection-string = mkDefault "postgresql:///${database}?user=${user}&host=/var/run/postgresql";
|
||||||
|
# Set to "yes" to automatically run migrations on package upgrade.
|
||||||
|
"builds.sr.ht".migrate-on-upgrade = mkDefault "yes";
|
||||||
|
# builds.sr.ht's OAuth client ID and secret for meta.sr.ht
|
||||||
|
# Register your client at meta.example.org/oauth
|
||||||
|
"builds.sr.ht".oauth-client-id = mkDefault null;
|
||||||
|
"builds.sr.ht".oauth-client-secret = mkDefault null;
|
||||||
|
# The redis connection used for the celery worker
|
||||||
|
"builds.sr.ht".redis = mkDefault "redis://${rcfg.bind}:${toString rcfg.port}/3";
|
||||||
|
# The shell used for ssh
|
||||||
|
"builds.sr.ht".shell = mkDefault "runner-shell";
|
||||||
|
# Register the builds.sr.ht dispatcher
|
||||||
|
"git.sr.ht::dispatch".${builtins.unsafeDiscardStringContext "${pkgs.sourcehut.buildsrht}/bin/buildsrht-keys"} = mkDefault "${user}:${user}";
|
||||||
|
|
||||||
|
# Location for build logs, images, and control command
|
||||||
|
} // lib.attrsets.optionalAttrs scfg.enableWorker {
|
||||||
|
# Default worker stores logs that are accessible via this address:port
|
||||||
|
"builds.sr.ht::worker".name = mkDefault "127.0.0.1:5020";
|
||||||
|
"builds.sr.ht::worker".buildlogs = mkDefault "${scfg.statePath}/logs";
|
||||||
|
"builds.sr.ht::worker".images = mkDefault "${image_dir}/images";
|
||||||
|
"builds.sr.ht::worker".controlcmd = mkDefault "${image_dir}/images/control";
|
||||||
|
"builds.sr.ht::worker".timeout = mkDefault "3m";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."logs.${cfg.originBase}" =
|
||||||
|
if scfg.enableWorker then {
|
||||||
|
listen = with builtins; let address = split ":" cfg.settings."builds.sr.ht::worker".name;
|
||||||
|
in [{ addr = elemAt address 0; port = lib.toInt (elemAt address 2); }];
|
||||||
|
locations."/logs".root = "${scfg.statePath}";
|
||||||
|
} else { };
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."builds.${cfg.originBase}" = {
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/".proxyPass = "http://${cfg.address}:${toString port}";
|
||||||
|
locations."/query".proxyPass = "http://${cfg.address}:${toString (port + 100)}";
|
||||||
|
locations."/static".root = "${pkgs.sourcehut.buildsrht}/${pkgs.sourcehut.python.sitePackages}/buildsrht";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
198
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/default.nix
vendored
Normal file
198
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/default.nix
vendored
Normal file
|
@ -0,0 +1,198 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
cfgIni = cfg.settings;
|
||||||
|
settingsFormat = pkgs.formats.ini { };
|
||||||
|
|
||||||
|
# Specialized python containing all the modules
|
||||||
|
python = pkgs.sourcehut.python.withPackages (ps: with ps; [
|
||||||
|
gunicorn
|
||||||
|
# Sourcehut services
|
||||||
|
srht
|
||||||
|
buildsrht
|
||||||
|
dispatchsrht
|
||||||
|
gitsrht
|
||||||
|
hgsrht
|
||||||
|
hubsrht
|
||||||
|
listssrht
|
||||||
|
mansrht
|
||||||
|
metasrht
|
||||||
|
pastesrht
|
||||||
|
todosrht
|
||||||
|
]);
|
||||||
|
in
|
||||||
|
{
|
||||||
|
imports =
|
||||||
|
[
|
||||||
|
./git.nix
|
||||||
|
./hg.nix
|
||||||
|
./hub.nix
|
||||||
|
./todo.nix
|
||||||
|
./man.nix
|
||||||
|
./meta.nix
|
||||||
|
./paste.nix
|
||||||
|
./builds.nix
|
||||||
|
./lists.nix
|
||||||
|
./dispatch.nix
|
||||||
|
(mkRemovedOptionModule [ "services" "sourcehut" "nginx" "enable" ] ''
|
||||||
|
The sourcehut module supports `nginx` as a local reverse-proxy by default and doesn't
|
||||||
|
support other reverse-proxies officially.
|
||||||
|
|
||||||
|
However it's possible to use an alternative reverse-proxy by
|
||||||
|
|
||||||
|
* disabling nginx
|
||||||
|
* adjusting the relevant settings for server addresses and ports directly
|
||||||
|
|
||||||
|
Further details about this can be found in the `Sourcehut`-section of the NixOS-manual.
|
||||||
|
'')
|
||||||
|
];
|
||||||
|
|
||||||
|
options.services.sourcehut = {
|
||||||
|
enable = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Enable sourcehut - git hosting, continuous integration, mailing list, ticket tracking,
|
||||||
|
task dispatching, wiki and account management services
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
services = mkOption {
|
||||||
|
type = types.nonEmptyListOf (types.enum [ "builds" "dispatch" "git" "hub" "hg" "lists" "man" "meta" "paste" "todo" ]);
|
||||||
|
default = [ "man" "meta" "paste" ];
|
||||||
|
example = [ "builds" "dispatch" "git" "hub" "hg" "lists" "man" "meta" "paste" "todo" ];
|
||||||
|
description = ''
|
||||||
|
Services to enable on the sourcehut network.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
originBase = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = with config.networking; hostName + lib.optionalString (domain != null) ".${domain}";
|
||||||
|
description = ''
|
||||||
|
Host name used by reverse-proxy and for default settings. Will host services at git."''${originBase}". For example: git.sr.ht
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
address = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "127.0.0.1";
|
||||||
|
description = ''
|
||||||
|
Address to bind to.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
python = mkOption {
|
||||||
|
internal = true;
|
||||||
|
type = types.package;
|
||||||
|
default = python;
|
||||||
|
description = ''
|
||||||
|
The python package to use. It should contain references to the *srht modules and also
|
||||||
|
gunicorn.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
statePath = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "/var/lib/sourcehut";
|
||||||
|
description = ''
|
||||||
|
Root state path for the sourcehut network. If left as the default value
|
||||||
|
this directory will automatically be created before the sourcehut server
|
||||||
|
starts, otherwise the sysadmin is responsible for ensuring the
|
||||||
|
directory exists with appropriate ownership and permissions.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
settings = mkOption {
|
||||||
|
type = lib.types.submodule {
|
||||||
|
freeformType = settingsFormat.type;
|
||||||
|
};
|
||||||
|
default = { };
|
||||||
|
description = ''
|
||||||
|
The configuration for the sourcehut network.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
assertions =
|
||||||
|
[
|
||||||
|
{
|
||||||
|
assertion = with cfgIni.webhooks; private-key != null && stringLength private-key == 44;
|
||||||
|
message = "The webhook's private key must be defined and of a 44 byte length.";
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
assertion = hasAttrByPath [ "meta.sr.ht" "origin" ] cfgIni && cfgIni."meta.sr.ht".origin != null;
|
||||||
|
message = "meta.sr.ht's origin must be defined.";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
virtualisation.docker.enable = true;
|
||||||
|
environment.etc."sr.ht/config.ini".source =
|
||||||
|
settingsFormat.generate "sourcehut-config.ini" (mapAttrsRecursive
|
||||||
|
(
|
||||||
|
path: v: if v == null then "" else v
|
||||||
|
)
|
||||||
|
cfg.settings);
|
||||||
|
|
||||||
|
environment.systemPackages = [ pkgs.sourcehut.coresrht ];
|
||||||
|
|
||||||
|
# PostgreSQL server
|
||||||
|
services.postgresql.enable = mkOverride 999 true;
|
||||||
|
# Mail server
|
||||||
|
services.postfix.enable = mkOverride 999 true;
|
||||||
|
# Cron daemon
|
||||||
|
services.cron.enable = mkOverride 999 true;
|
||||||
|
# Redis server
|
||||||
|
services.redis.enable = mkOverride 999 true;
|
||||||
|
services.redis.bind = mkOverride 999 "127.0.0.1";
|
||||||
|
|
||||||
|
services.sourcehut.settings = {
|
||||||
|
# The name of your network of sr.ht-based sites
|
||||||
|
"sr.ht".site-name = mkDefault "sourcehut";
|
||||||
|
# The top-level info page for your site
|
||||||
|
"sr.ht".site-info = mkDefault "https://sourcehut.org";
|
||||||
|
# {{ site-name }}, {{ site-blurb }}
|
||||||
|
"sr.ht".site-blurb = mkDefault "the hacker's forge";
|
||||||
|
# If this != production, we add a banner to each page
|
||||||
|
"sr.ht".environment = mkDefault "development";
|
||||||
|
# Contact information for the site owners
|
||||||
|
"sr.ht".owner-name = mkDefault "Drew DeVault";
|
||||||
|
"sr.ht".owner-email = mkDefault "sir@cmpwn.com";
|
||||||
|
# The source code for your fork of sr.ht
|
||||||
|
"sr.ht".source-url = mkDefault "https://git.sr.ht/~sircmpwn/srht";
|
||||||
|
# A secret key to encrypt session cookies with
|
||||||
|
"sr.ht".secret-key = mkDefault null;
|
||||||
|
"sr.ht".global-domain = mkDefault null;
|
||||||
|
|
||||||
|
# Outgoing SMTP settings
|
||||||
|
mail.smtp-host = mkDefault null;
|
||||||
|
mail.smtp-port = mkDefault null;
|
||||||
|
mail.smtp-user = mkDefault null;
|
||||||
|
mail.smtp-password = mkDefault null;
|
||||||
|
mail.smtp-from = mkDefault null;
|
||||||
|
# Application exceptions are emailed to this address
|
||||||
|
mail.error-to = mkDefault null;
|
||||||
|
mail.error-from = mkDefault null;
|
||||||
|
# Your PGP key information (DO NOT mix up pub and priv here)
|
||||||
|
# You must remove the password from your secret key, if present.
|
||||||
|
# You can do this with gpg --edit-key [key-id], then use the passwd
|
||||||
|
# command and do not enter a new password.
|
||||||
|
mail.pgp-privkey = mkDefault null;
|
||||||
|
mail.pgp-pubkey = mkDefault null;
|
||||||
|
mail.pgp-key-id = mkDefault null;
|
||||||
|
|
||||||
|
# base64-encoded Ed25519 key for signing webhook payloads. This should be
|
||||||
|
# consistent for all *.sr.ht sites, as we'll use this key to verify signatures
|
||||||
|
# from other sites in your network.
|
||||||
|
#
|
||||||
|
# Use the srht-webhook-keygen command to generate a key.
|
||||||
|
webhooks.private-key = mkDefault null;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
meta.doc = ./sourcehut.xml;
|
||||||
|
meta.maintainers = with maintainers; [ tomberek ];
|
||||||
|
}
|
125
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/dispatch.nix
vendored
Normal file
125
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/dispatch.nix
vendored
Normal file
|
@ -0,0 +1,125 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
cfgIni = cfg.settings;
|
||||||
|
scfg = cfg.dispatch;
|
||||||
|
iniKey = "dispatch.sr.ht";
|
||||||
|
|
||||||
|
drv = pkgs.sourcehut.dispatchsrht;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.sourcehut.dispatch = {
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "dispatchsrht";
|
||||||
|
description = ''
|
||||||
|
User for dispatch.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 5005;
|
||||||
|
description = ''
|
||||||
|
Port on which the "dispatch" module should listen.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
database = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "dispatch.sr.ht";
|
||||||
|
description = ''
|
||||||
|
PostgreSQL database name for dispatch.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
statePath = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "${cfg.statePath}/dispatchsrht";
|
||||||
|
description = ''
|
||||||
|
State path for dispatch.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = with scfg; lib.mkIf (cfg.enable && elem "dispatch" cfg.services) {
|
||||||
|
|
||||||
|
users = {
|
||||||
|
users = {
|
||||||
|
"${user}" = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = user;
|
||||||
|
description = "dispatch.sr.ht user";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
groups = {
|
||||||
|
"${user}" = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.postgresql = {
|
||||||
|
authentication = ''
|
||||||
|
local ${database} ${user} trust
|
||||||
|
'';
|
||||||
|
ensureDatabases = [ database ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = user;
|
||||||
|
ensurePermissions = { "DATABASE \"${database}\"" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
tmpfiles.rules = [
|
||||||
|
"d ${statePath} 0750 ${user} ${user} -"
|
||||||
|
];
|
||||||
|
|
||||||
|
services.dispatchsrht = import ./service.nix { inherit config pkgs lib; } scfg drv iniKey {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "dispatch.sr.ht website service";
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${cfg.python}/bin/gunicorn ${drv.pname}.app:app -b ${cfg.address}:${toString port}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.sourcehut.settings = {
|
||||||
|
# URL dispatch.sr.ht is being served at (protocol://domain)
|
||||||
|
"dispatch.sr.ht".origin = mkDefault "http://dispatch.${cfg.originBase}";
|
||||||
|
# Address and port to bind the debug server to
|
||||||
|
"dispatch.sr.ht".debug-host = mkDefault "0.0.0.0";
|
||||||
|
"dispatch.sr.ht".debug-port = mkDefault port;
|
||||||
|
# Configures the SQLAlchemy connection string for the database.
|
||||||
|
"dispatch.sr.ht".connection-string = mkDefault "postgresql:///${database}?user=${user}&host=/var/run/postgresql";
|
||||||
|
# Set to "yes" to automatically run migrations on package upgrade.
|
||||||
|
"dispatch.sr.ht".migrate-on-upgrade = mkDefault "yes";
|
||||||
|
# dispatch.sr.ht's OAuth client ID and secret for meta.sr.ht
|
||||||
|
# Register your client at meta.example.org/oauth
|
||||||
|
"dispatch.sr.ht".oauth-client-id = mkDefault null;
|
||||||
|
"dispatch.sr.ht".oauth-client-secret = mkDefault null;
|
||||||
|
|
||||||
|
# Github Integration
|
||||||
|
"dispatch.sr.ht::github".oauth-client-id = mkDefault null;
|
||||||
|
"dispatch.sr.ht::github".oauth-client-secret = mkDefault null;
|
||||||
|
|
||||||
|
# Gitlab Integration
|
||||||
|
"dispatch.sr.ht::gitlab".enabled = mkDefault null;
|
||||||
|
"dispatch.sr.ht::gitlab".canonical-upstream = mkDefault "gitlab.com";
|
||||||
|
"dispatch.sr.ht::gitlab".repo-cache = mkDefault "./repo-cache";
|
||||||
|
# "dispatch.sr.ht::gitlab"."gitlab.com" = mkDefault "GitLab:application id:secret";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."dispatch.${cfg.originBase}" = {
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/".proxyPass = "http://${cfg.address}:${toString port}";
|
||||||
|
locations."/query".proxyPass = "http://${cfg.address}:${toString (port + 100)}";
|
||||||
|
locations."/static".root = "${pkgs.sourcehut.dispatchsrht}/${pkgs.sourcehut.python.sitePackages}/dispatchsrht";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
214
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/git.nix
vendored
Normal file
214
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/git.nix
vendored
Normal file
|
@ -0,0 +1,214 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
scfg = cfg.git;
|
||||||
|
iniKey = "git.sr.ht";
|
||||||
|
|
||||||
|
rcfg = config.services.redis;
|
||||||
|
drv = pkgs.sourcehut.gitsrht;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.sourcehut.git = {
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
visible = false;
|
||||||
|
internal = true;
|
||||||
|
readOnly = true;
|
||||||
|
default = "git";
|
||||||
|
description = ''
|
||||||
|
User for git.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 5001;
|
||||||
|
description = ''
|
||||||
|
Port on which the "git" module should listen.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
database = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "git.sr.ht";
|
||||||
|
description = ''
|
||||||
|
PostgreSQL database name for git.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
statePath = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "${cfg.statePath}/gitsrht";
|
||||||
|
description = ''
|
||||||
|
State path for git.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
package = mkOption {
|
||||||
|
type = types.package;
|
||||||
|
default = pkgs.git;
|
||||||
|
example = literalExample "pkgs.gitFull";
|
||||||
|
description = ''
|
||||||
|
Git package for git.sr.ht. This can help silence collisions.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = with scfg; lib.mkIf (cfg.enable && elem "git" cfg.services) {
|
||||||
|
# sshd refuses to run with `Unsafe AuthorizedKeysCommand ... bad ownership or modes for directory /nix/store`
|
||||||
|
environment.etc."ssh/gitsrht-dispatch" = {
|
||||||
|
mode = "0755";
|
||||||
|
text = ''
|
||||||
|
#! ${pkgs.stdenv.shell}
|
||||||
|
${cfg.python}/bin/gitsrht-dispatch "$@"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
# Needs this in the $PATH when sshing into the server
|
||||||
|
environment.systemPackages = [ cfg.git.package ];
|
||||||
|
|
||||||
|
users = {
|
||||||
|
users = {
|
||||||
|
"${user}" = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = user;
|
||||||
|
# https://stackoverflow.com/questions/22314298/git-push-results-in-fatal-protocol-error-bad-line-length-character-this
|
||||||
|
# Probably could use gitsrht-shell if output is restricted to just parameters...
|
||||||
|
shell = pkgs.bash;
|
||||||
|
description = "git.sr.ht user";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
groups = {
|
||||||
|
"${user}" = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services = {
|
||||||
|
cron.systemCronJobs = [ "*/20 * * * * ${cfg.python}/bin/gitsrht-periodic" ];
|
||||||
|
fcgiwrap.enable = true;
|
||||||
|
|
||||||
|
openssh.authorizedKeysCommand = ''/etc/ssh/gitsrht-dispatch "%u" "%h" "%t" "%k"'';
|
||||||
|
openssh.authorizedKeysCommandUser = "root";
|
||||||
|
openssh.extraConfig = ''
|
||||||
|
PermitUserEnvironment SRHT_*
|
||||||
|
'';
|
||||||
|
|
||||||
|
postgresql = {
|
||||||
|
authentication = ''
|
||||||
|
local ${database} ${user} trust
|
||||||
|
'';
|
||||||
|
ensureDatabases = [ database ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = user;
|
||||||
|
ensurePermissions = { "DATABASE \"${database}\"" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
tmpfiles.rules = [
|
||||||
|
# /var/log is owned by root
|
||||||
|
"f /var/log/git-srht-shell 0644 ${user} ${user} -"
|
||||||
|
|
||||||
|
"d ${statePath} 0750 ${user} ${user} -"
|
||||||
|
"d ${cfg.settings."${iniKey}".repos} 2755 ${user} ${user} -"
|
||||||
|
];
|
||||||
|
|
||||||
|
services = {
|
||||||
|
gitsrht = import ./service.nix { inherit config pkgs lib; } scfg drv iniKey {
|
||||||
|
after = [ "redis.service" "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "redis.service" "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
# Needs internally to create repos at the very least
|
||||||
|
path = [ pkgs.git ];
|
||||||
|
description = "git.sr.ht website service";
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${cfg.python}/bin/gunicorn ${drv.pname}.app:app -b ${cfg.address}:${toString port}";
|
||||||
|
};
|
||||||
|
|
||||||
|
gitsrht-webhooks = {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "git.sr.ht webhooks service";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
User = user;
|
||||||
|
Restart = "always";
|
||||||
|
};
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${cfg.python}/bin/celery -A ${drv.pname}.webhooks worker --loglevel=info";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.sourcehut.settings = {
|
||||||
|
# URL git.sr.ht is being served at (protocol://domain)
|
||||||
|
"git.sr.ht".origin = mkDefault "http://git.${cfg.originBase}";
|
||||||
|
# Address and port to bind the debug server to
|
||||||
|
"git.sr.ht".debug-host = mkDefault "0.0.0.0";
|
||||||
|
"git.sr.ht".debug-port = mkDefault port;
|
||||||
|
# Configures the SQLAlchemy connection string for the database.
|
||||||
|
"git.sr.ht".connection-string = mkDefault "postgresql:///${database}?user=${user}&host=/var/run/postgresql";
|
||||||
|
# Set to "yes" to automatically run migrations on package upgrade.
|
||||||
|
"git.sr.ht".migrate-on-upgrade = mkDefault "yes";
|
||||||
|
# The redis connection used for the webhooks worker
|
||||||
|
"git.sr.ht".webhooks = mkDefault "redis://${rcfg.bind}:${toString rcfg.port}/1";
|
||||||
|
|
||||||
|
# A post-update script which is installed in every git repo.
|
||||||
|
"git.sr.ht".post-update-script = mkDefault "${pkgs.sourcehut.gitsrht}/bin/gitsrht-update-hook";
|
||||||
|
|
||||||
|
# git.sr.ht's OAuth client ID and secret for meta.sr.ht
|
||||||
|
# Register your client at meta.example.org/oauth
|
||||||
|
"git.sr.ht".oauth-client-id = mkDefault null;
|
||||||
|
"git.sr.ht".oauth-client-secret = mkDefault null;
|
||||||
|
# Path to git repositories on disk
|
||||||
|
"git.sr.ht".repos = mkDefault "/var/lib/git";
|
||||||
|
|
||||||
|
"git.sr.ht".outgoing-domain = mkDefault "http://git.${cfg.originBase}";
|
||||||
|
|
||||||
|
# The authorized keys hook uses this to dispatch to various handlers
|
||||||
|
# The format is a program to exec into as the key, and the user to match as the
|
||||||
|
# value. When someone tries to log in as this user, this program is executed
|
||||||
|
# and is expected to omit an AuthorizedKeys file.
|
||||||
|
#
|
||||||
|
# Discard of the string context is in order to allow derivation-derived strings.
|
||||||
|
# This is safe if the relevant package is installed which will be the case if the setting is utilized.
|
||||||
|
"git.sr.ht::dispatch".${builtins.unsafeDiscardStringContext "${pkgs.sourcehut.gitsrht}/bin/gitsrht-keys"} = mkDefault "${user}:${user}";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."git.${cfg.originBase}" = {
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/".proxyPass = "http://${cfg.address}:${toString port}";
|
||||||
|
locations."/query".proxyPass = "http://${cfg.address}:${toString (port + 100)}";
|
||||||
|
locations."/static".root = "${pkgs.sourcehut.gitsrht}/${pkgs.sourcehut.python.sitePackages}/gitsrht";
|
||||||
|
extraConfig = ''
|
||||||
|
location = /authorize {
|
||||||
|
proxy_pass http://${cfg.address}:${toString port};
|
||||||
|
proxy_pass_request_body off;
|
||||||
|
proxy_set_header Content-Length "";
|
||||||
|
proxy_set_header X-Original-URI $request_uri;
|
||||||
|
}
|
||||||
|
location ~ ^/([^/]+)/([^/]+)/(HEAD|info/refs|objects/info/.*|git-upload-pack).*$ {
|
||||||
|
auth_request /authorize;
|
||||||
|
root /var/lib/git;
|
||||||
|
fastcgi_pass unix:/run/fcgiwrap.sock;
|
||||||
|
fastcgi_param SCRIPT_FILENAME ${pkgs.git}/bin/git-http-backend;
|
||||||
|
fastcgi_param PATH_INFO $uri;
|
||||||
|
fastcgi_param GIT_PROJECT_ROOT $document_root;
|
||||||
|
fastcgi_read_timeout 500s;
|
||||||
|
include ${pkgs.nginx}/conf/fastcgi_params;
|
||||||
|
gzip off;
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
173
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/hg.nix
vendored
Normal file
173
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/hg.nix
vendored
Normal file
|
@ -0,0 +1,173 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
scfg = cfg.hg;
|
||||||
|
iniKey = "hg.sr.ht";
|
||||||
|
|
||||||
|
rcfg = config.services.redis;
|
||||||
|
drv = pkgs.sourcehut.hgsrht;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.sourcehut.hg = {
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
internal = true;
|
||||||
|
readOnly = true;
|
||||||
|
default = "hg";
|
||||||
|
description = ''
|
||||||
|
User for hg.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 5010;
|
||||||
|
description = ''
|
||||||
|
Port on which the "hg" module should listen.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
database = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "hg.sr.ht";
|
||||||
|
description = ''
|
||||||
|
PostgreSQL database name for hg.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
statePath = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "${cfg.statePath}/hgsrht";
|
||||||
|
description = ''
|
||||||
|
State path for hg.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
cloneBundles = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Generate clonebundles (which require more disk space but dramatically speed up cloning large repositories).
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = with scfg; lib.mkIf (cfg.enable && elem "hg" cfg.services) {
|
||||||
|
# In case it ever comes into being
|
||||||
|
environment.etc."ssh/hgsrht-dispatch" = {
|
||||||
|
mode = "0755";
|
||||||
|
text = ''
|
||||||
|
#! ${pkgs.stdenv.shell}
|
||||||
|
${cfg.python}/bin/gitsrht-dispatch $@
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = [ pkgs.mercurial ];
|
||||||
|
|
||||||
|
users = {
|
||||||
|
users = {
|
||||||
|
"${user}" = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = user;
|
||||||
|
# Assuming hg.sr.ht needs this too
|
||||||
|
shell = pkgs.bash;
|
||||||
|
description = "hg.sr.ht user";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
groups = {
|
||||||
|
"${user}" = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services = {
|
||||||
|
cron.systemCronJobs = [ "*/20 * * * * ${cfg.python}/bin/hgsrht-periodic" ]
|
||||||
|
++ optional cloneBundles "0 * * * * ${cfg.python}/bin/hgsrht-clonebundles";
|
||||||
|
|
||||||
|
openssh.authorizedKeysCommand = ''/etc/ssh/hgsrht-dispatch "%u" "%h" "%t" "%k"'';
|
||||||
|
openssh.authorizedKeysCommandUser = "root";
|
||||||
|
openssh.extraConfig = ''
|
||||||
|
PermitUserEnvironment SRHT_*
|
||||||
|
'';
|
||||||
|
|
||||||
|
postgresql = {
|
||||||
|
authentication = ''
|
||||||
|
local ${database} ${user} trust
|
||||||
|
'';
|
||||||
|
ensureDatabases = [ database ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = user;
|
||||||
|
ensurePermissions = { "DATABASE \"${database}\"" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
tmpfiles.rules = [
|
||||||
|
# /var/log is owned by root
|
||||||
|
"f /var/log/hg-srht-shell 0644 ${user} ${user} -"
|
||||||
|
|
||||||
|
"d ${statePath} 0750 ${user} ${user} -"
|
||||||
|
"d ${cfg.settings."${iniKey}".repos} 2755 ${user} ${user} -"
|
||||||
|
];
|
||||||
|
|
||||||
|
services.hgsrht = import ./service.nix { inherit config pkgs lib; } scfg drv iniKey {
|
||||||
|
after = [ "redis.service" "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "redis.service" "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
path = [ pkgs.mercurial ];
|
||||||
|
description = "hg.sr.ht website service";
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${cfg.python}/bin/gunicorn ${drv.pname}.app:app -b ${cfg.address}:${toString port}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.sourcehut.settings = {
|
||||||
|
# URL hg.sr.ht is being served at (protocol://domain)
|
||||||
|
"hg.sr.ht".origin = mkDefault "http://hg.${cfg.originBase}";
|
||||||
|
# Address and port to bind the debug server to
|
||||||
|
"hg.sr.ht".debug-host = mkDefault "0.0.0.0";
|
||||||
|
"hg.sr.ht".debug-port = mkDefault port;
|
||||||
|
# Configures the SQLAlchemy connection string for the database.
|
||||||
|
"hg.sr.ht".connection-string = mkDefault "postgresql:///${database}?user=${user}&host=/var/run/postgresql";
|
||||||
|
# The redis connection used for the webhooks worker
|
||||||
|
"hg.sr.ht".webhooks = mkDefault "redis://${rcfg.bind}:${toString rcfg.port}/1";
|
||||||
|
# A post-update script which is installed in every mercurial repo.
|
||||||
|
"hg.sr.ht".changegroup-script = mkDefault "${cfg.python}/bin/hgsrht-hook-changegroup";
|
||||||
|
# hg.sr.ht's OAuth client ID and secret for meta.sr.ht
|
||||||
|
# Register your client at meta.example.org/oauth
|
||||||
|
"hg.sr.ht".oauth-client-id = mkDefault null;
|
||||||
|
"hg.sr.ht".oauth-client-secret = mkDefault null;
|
||||||
|
# Path to mercurial repositories on disk
|
||||||
|
"hg.sr.ht".repos = mkDefault "/var/lib/hg";
|
||||||
|
# Path to the srht mercurial extension
|
||||||
|
# (defaults to where the hgsrht code is)
|
||||||
|
# "hg.sr.ht".srhtext = mkDefault null;
|
||||||
|
# .hg/store size (in MB) past which the nightly job generates clone bundles.
|
||||||
|
# "hg.sr.ht".clone_bundle_threshold = mkDefault 50;
|
||||||
|
# Path to hg-ssh (if not in $PATH)
|
||||||
|
# "hg.sr.ht".hg_ssh = mkDefault /path/to/hg-ssh;
|
||||||
|
|
||||||
|
# The authorized keys hook uses this to dispatch to various handlers
|
||||||
|
# The format is a program to exec into as the key, and the user to match as the
|
||||||
|
# value. When someone tries to log in as this user, this program is executed
|
||||||
|
# and is expected to omit an AuthorizedKeys file.
|
||||||
|
#
|
||||||
|
# Uncomment the relevant lines to enable the various sr.ht dispatchers.
|
||||||
|
"hg.sr.ht::dispatch"."/run/current-system/sw/bin/hgsrht-keys" = mkDefault "${user}:${user}";
|
||||||
|
};
|
||||||
|
|
||||||
|
# TODO: requires testing and addition of hg-specific requirements
|
||||||
|
services.nginx.virtualHosts."hg.${cfg.originBase}" = {
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/".proxyPass = "http://${cfg.address}:${toString port}";
|
||||||
|
locations."/query".proxyPass = "http://${cfg.address}:${toString (port + 100)}";
|
||||||
|
locations."/static".root = "${pkgs.sourcehut.hgsrht}/${pkgs.sourcehut.python.sitePackages}/hgsrht";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
118
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/hub.nix
vendored
Normal file
118
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/hub.nix
vendored
Normal file
|
@ -0,0 +1,118 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
cfgIni = cfg.settings;
|
||||||
|
scfg = cfg.hub;
|
||||||
|
iniKey = "hub.sr.ht";
|
||||||
|
|
||||||
|
drv = pkgs.sourcehut.hubsrht;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.sourcehut.hub = {
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "hubsrht";
|
||||||
|
description = ''
|
||||||
|
User for hub.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 5014;
|
||||||
|
description = ''
|
||||||
|
Port on which the "hub" module should listen.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
database = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "hub.sr.ht";
|
||||||
|
description = ''
|
||||||
|
PostgreSQL database name for hub.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
statePath = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "${cfg.statePath}/hubsrht";
|
||||||
|
description = ''
|
||||||
|
State path for hub.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = with scfg; lib.mkIf (cfg.enable && elem "hub" cfg.services) {
|
||||||
|
users = {
|
||||||
|
users = {
|
||||||
|
"${user}" = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = user;
|
||||||
|
description = "hub.sr.ht user";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
groups = {
|
||||||
|
"${user}" = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.postgresql = {
|
||||||
|
authentication = ''
|
||||||
|
local ${database} ${user} trust
|
||||||
|
'';
|
||||||
|
ensureDatabases = [ database ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = user;
|
||||||
|
ensurePermissions = { "DATABASE \"${database}\"" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
tmpfiles.rules = [
|
||||||
|
"d ${statePath} 0750 ${user} ${user} -"
|
||||||
|
];
|
||||||
|
|
||||||
|
services.hubsrht = import ./service.nix { inherit config pkgs lib; } scfg drv iniKey {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "hub.sr.ht website service";
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${cfg.python}/bin/gunicorn ${drv.pname}.app:app -b ${cfg.address}:${toString port}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.sourcehut.settings = {
|
||||||
|
# URL hub.sr.ht is being served at (protocol://domain)
|
||||||
|
"hub.sr.ht".origin = mkDefault "http://hub.${cfg.originBase}";
|
||||||
|
# Address and port to bind the debug server to
|
||||||
|
"hub.sr.ht".debug-host = mkDefault "0.0.0.0";
|
||||||
|
"hub.sr.ht".debug-port = mkDefault port;
|
||||||
|
# Configures the SQLAlchemy connection string for the database.
|
||||||
|
"hub.sr.ht".connection-string = mkDefault "postgresql:///${database}?user=${user}&host=/var/run/postgresql";
|
||||||
|
# Set to "yes" to automatically run migrations on package upgrade.
|
||||||
|
"hub.sr.ht".migrate-on-upgrade = mkDefault "yes";
|
||||||
|
# hub.sr.ht's OAuth client ID and secret for meta.sr.ht
|
||||||
|
# Register your client at meta.example.org/oauth
|
||||||
|
"hub.sr.ht".oauth-client-id = mkDefault null;
|
||||||
|
"hub.sr.ht".oauth-client-secret = mkDefault null;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."${cfg.originBase}" = {
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/".proxyPass = "http://${cfg.address}:${toString port}";
|
||||||
|
locations."/query".proxyPass = "http://${cfg.address}:${toString (port + 100)}";
|
||||||
|
locations."/static".root = "${pkgs.sourcehut.hubsrht}/${pkgs.sourcehut.python.sitePackages}/hubsrht";
|
||||||
|
};
|
||||||
|
services.nginx.virtualHosts."hub.${cfg.originBase}" = {
|
||||||
|
globalRedirect = "${cfg.originBase}";
|
||||||
|
forceSSL = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
185
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/lists.nix
vendored
Normal file
185
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/lists.nix
vendored
Normal file
|
@ -0,0 +1,185 @@
|
||||||
|
# Email setup is fairly involved, useful references:
|
||||||
|
# https://drewdevault.com/2018/08/05/Local-mail-server.html
|
||||||
|
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
cfgIni = cfg.settings;
|
||||||
|
scfg = cfg.lists;
|
||||||
|
iniKey = "lists.sr.ht";
|
||||||
|
|
||||||
|
rcfg = config.services.redis;
|
||||||
|
drv = pkgs.sourcehut.listssrht;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.sourcehut.lists = {
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "listssrht";
|
||||||
|
description = ''
|
||||||
|
User for lists.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 5006;
|
||||||
|
description = ''
|
||||||
|
Port on which the "lists" module should listen.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
database = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "lists.sr.ht";
|
||||||
|
description = ''
|
||||||
|
PostgreSQL database name for lists.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
statePath = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "${cfg.statePath}/listssrht";
|
||||||
|
description = ''
|
||||||
|
State path for lists.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = with scfg; lib.mkIf (cfg.enable && elem "lists" cfg.services) {
|
||||||
|
users = {
|
||||||
|
users = {
|
||||||
|
"${user}" = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = user;
|
||||||
|
extraGroups = [ "postfix" ];
|
||||||
|
description = "lists.sr.ht user";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
groups = {
|
||||||
|
"${user}" = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.postgresql = {
|
||||||
|
authentication = ''
|
||||||
|
local ${database} ${user} trust
|
||||||
|
'';
|
||||||
|
ensureDatabases = [ database ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = user;
|
||||||
|
ensurePermissions = { "DATABASE \"${database}\"" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
tmpfiles.rules = [
|
||||||
|
"d ${statePath} 0750 ${user} ${user} -"
|
||||||
|
];
|
||||||
|
|
||||||
|
services = {
|
||||||
|
listssrht = import ./service.nix { inherit config pkgs lib; } scfg drv iniKey {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "lists.sr.ht website service";
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${cfg.python}/bin/gunicorn ${drv.pname}.app:app -b ${cfg.address}:${toString port}";
|
||||||
|
};
|
||||||
|
|
||||||
|
listssrht-process = {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "lists.sr.ht process service";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
User = user;
|
||||||
|
Restart = "always";
|
||||||
|
ExecStart = "${cfg.python}/bin/celery -A ${drv.pname}.process worker --loglevel=info";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
listssrht-lmtp = {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "lists.sr.ht process service";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
User = user;
|
||||||
|
Restart = "always";
|
||||||
|
ExecStart = "${cfg.python}/bin/listssrht-lmtp";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
listssrht-webhooks = {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "lists.sr.ht webhooks service";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
User = user;
|
||||||
|
Restart = "always";
|
||||||
|
ExecStart = "${cfg.python}/bin/celery -A ${drv.pname}.webhooks worker --loglevel=info";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.sourcehut.settings = {
|
||||||
|
# URL lists.sr.ht is being served at (protocol://domain)
|
||||||
|
"lists.sr.ht".origin = mkDefault "http://lists.${cfg.originBase}";
|
||||||
|
# Address and port to bind the debug server to
|
||||||
|
"lists.sr.ht".debug-host = mkDefault "0.0.0.0";
|
||||||
|
"lists.sr.ht".debug-port = mkDefault port;
|
||||||
|
# Configures the SQLAlchemy connection string for the database.
|
||||||
|
"lists.sr.ht".connection-string = mkDefault "postgresql:///${database}?user=${user}&host=/var/run/postgresql";
|
||||||
|
# Set to "yes" to automatically run migrations on package upgrade.
|
||||||
|
"lists.sr.ht".migrate-on-upgrade = mkDefault "yes";
|
||||||
|
# lists.sr.ht's OAuth client ID and secret for meta.sr.ht
|
||||||
|
# Register your client at meta.example.org/oauth
|
||||||
|
"lists.sr.ht".oauth-client-id = mkDefault null;
|
||||||
|
"lists.sr.ht".oauth-client-secret = mkDefault null;
|
||||||
|
# Outgoing email for notifications generated by users
|
||||||
|
"lists.sr.ht".notify-from = mkDefault "CHANGEME@example.org";
|
||||||
|
# The redis connection used for the webhooks worker
|
||||||
|
"lists.sr.ht".webhooks = mkDefault "redis://${rcfg.bind}:${toString rcfg.port}/2";
|
||||||
|
# The redis connection used for the celery worker
|
||||||
|
"lists.sr.ht".redis = mkDefault "redis://${rcfg.bind}:${toString rcfg.port}/4";
|
||||||
|
# Network-key
|
||||||
|
"lists.sr.ht".network-key = mkDefault null;
|
||||||
|
# Allow creation
|
||||||
|
"lists.sr.ht".allow-new-lists = mkDefault "no";
|
||||||
|
# Posting Domain
|
||||||
|
"lists.sr.ht".posting-domain = mkDefault "lists.${cfg.originBase}";
|
||||||
|
|
||||||
|
# Path for the lmtp daemon's unix socket. Direct incoming mail to this socket.
|
||||||
|
# Alternatively, specify IP:PORT and an SMTP server will be run instead.
|
||||||
|
"lists.sr.ht::worker".sock = mkDefault "/tmp/lists.sr.ht-lmtp.sock";
|
||||||
|
# The lmtp daemon will make the unix socket group-read/write for users in this
|
||||||
|
# group.
|
||||||
|
"lists.sr.ht::worker".sock-group = mkDefault "postfix";
|
||||||
|
"lists.sr.ht::worker".reject-url = mkDefault "https://man.sr.ht/lists.sr.ht/etiquette.md";
|
||||||
|
"lists.sr.ht::worker".reject-mimetypes = mkDefault "text/html";
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."lists.${cfg.originBase}" = {
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/".proxyPass = "http://${cfg.address}:${toString port}";
|
||||||
|
locations."/query".proxyPass = "http://${cfg.address}:${toString (port + 100)}";
|
||||||
|
locations."/static".root = "${pkgs.sourcehut.listssrht}/${pkgs.sourcehut.python.sitePackages}/listssrht";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
122
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/man.nix
vendored
Normal file
122
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/man.nix
vendored
Normal file
|
@ -0,0 +1,122 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
cfgIni = cfg.settings;
|
||||||
|
scfg = cfg.man;
|
||||||
|
iniKey = "man.sr.ht";
|
||||||
|
|
||||||
|
drv = pkgs.sourcehut.mansrht;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.sourcehut.man = {
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "mansrht";
|
||||||
|
description = ''
|
||||||
|
User for man.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 5004;
|
||||||
|
description = ''
|
||||||
|
Port on which the "man" module should listen.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
database = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "man.sr.ht";
|
||||||
|
description = ''
|
||||||
|
PostgreSQL database name for man.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
statePath = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "${cfg.statePath}/mansrht";
|
||||||
|
description = ''
|
||||||
|
State path for man.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = with scfg; lib.mkIf (cfg.enable && elem "man" cfg.services) {
|
||||||
|
assertions =
|
||||||
|
[
|
||||||
|
{
|
||||||
|
assertion = hasAttrByPath [ "git.sr.ht" "oauth-client-id" ] cfgIni;
|
||||||
|
message = "man.sr.ht needs access to git.sr.ht.";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
users = {
|
||||||
|
users = {
|
||||||
|
"${user}" = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = user;
|
||||||
|
description = "man.sr.ht user";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
groups = {
|
||||||
|
"${user}" = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.postgresql = {
|
||||||
|
authentication = ''
|
||||||
|
local ${database} ${user} trust
|
||||||
|
'';
|
||||||
|
ensureDatabases = [ database ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = user;
|
||||||
|
ensurePermissions = { "DATABASE \"${database}\"" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
tmpfiles.rules = [
|
||||||
|
"d ${statePath} 0750 ${user} ${user} -"
|
||||||
|
];
|
||||||
|
|
||||||
|
services.mansrht = import ./service.nix { inherit config pkgs lib; } scfg drv iniKey {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "man.sr.ht website service";
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${cfg.python}/bin/gunicorn ${drv.pname}.app:app -b ${cfg.address}:${toString port}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.sourcehut.settings = {
|
||||||
|
# URL man.sr.ht is being served at (protocol://domain)
|
||||||
|
"man.sr.ht".origin = mkDefault "http://man.${cfg.originBase}";
|
||||||
|
# Address and port to bind the debug server to
|
||||||
|
"man.sr.ht".debug-host = mkDefault "0.0.0.0";
|
||||||
|
"man.sr.ht".debug-port = mkDefault port;
|
||||||
|
# Configures the SQLAlchemy connection string for the database.
|
||||||
|
"man.sr.ht".connection-string = mkDefault "postgresql:///${database}?user=${user}&host=/var/run/postgresql";
|
||||||
|
# Set to "yes" to automatically run migrations on package upgrade.
|
||||||
|
"man.sr.ht".migrate-on-upgrade = mkDefault "yes";
|
||||||
|
# man.sr.ht's OAuth client ID and secret for meta.sr.ht
|
||||||
|
# Register your client at meta.example.org/oauth
|
||||||
|
"man.sr.ht".oauth-client-id = mkDefault null;
|
||||||
|
"man.sr.ht".oauth-client-secret = mkDefault null;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."man.${cfg.originBase}" = {
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/".proxyPass = "http://${cfg.address}:${toString port}";
|
||||||
|
locations."/query".proxyPass = "http://${cfg.address}:${toString (port + 100)}";
|
||||||
|
locations."/static".root = "${pkgs.sourcehut.mansrht}/${pkgs.sourcehut.python.sitePackages}/mansrht";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
211
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/meta.nix
vendored
Normal file
211
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/meta.nix
vendored
Normal file
|
@ -0,0 +1,211 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
cfgIni = cfg.settings;
|
||||||
|
scfg = cfg.meta;
|
||||||
|
iniKey = "meta.sr.ht";
|
||||||
|
|
||||||
|
rcfg = config.services.redis;
|
||||||
|
drv = pkgs.sourcehut.metasrht;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.sourcehut.meta = {
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "metasrht";
|
||||||
|
description = ''
|
||||||
|
User for meta.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 5000;
|
||||||
|
description = ''
|
||||||
|
Port on which the "meta" module should listen.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
database = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "meta.sr.ht";
|
||||||
|
description = ''
|
||||||
|
PostgreSQL database name for meta.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
statePath = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "${cfg.statePath}/metasrht";
|
||||||
|
description = ''
|
||||||
|
State path for meta.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = with scfg; lib.mkIf (cfg.enable && elem "meta" cfg.services) {
|
||||||
|
assertions =
|
||||||
|
[
|
||||||
|
{
|
||||||
|
assertion = with cfgIni."meta.sr.ht::billing"; enabled == "yes" -> (stripe-public-key != null && stripe-secret-key != null);
|
||||||
|
message = "If meta.sr.ht::billing is enabled, the keys should be defined.";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
users = {
|
||||||
|
users = {
|
||||||
|
${user} = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = user;
|
||||||
|
description = "meta.sr.ht user";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
groups = {
|
||||||
|
"${user}" = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.cron.systemCronJobs = [ "0 0 * * * ${cfg.python}/bin/metasrht-daily" ];
|
||||||
|
services.postgresql = {
|
||||||
|
authentication = ''
|
||||||
|
local ${database} ${user} trust
|
||||||
|
'';
|
||||||
|
ensureDatabases = [ database ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = user;
|
||||||
|
ensurePermissions = { "DATABASE \"${database}\"" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
tmpfiles.rules = [
|
||||||
|
"d ${statePath} 0750 ${user} ${user} -"
|
||||||
|
];
|
||||||
|
|
||||||
|
services = {
|
||||||
|
metasrht = import ./service.nix { inherit config pkgs lib; } scfg drv iniKey {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "meta.sr.ht website service";
|
||||||
|
|
||||||
|
preStart = ''
|
||||||
|
# Configure client(s) as "preauthorized"
|
||||||
|
${concatMapStringsSep "\n\n"
|
||||||
|
(attr: ''
|
||||||
|
if ! test -e "${statePath}/${attr}.oauth" || [ "$(cat ${statePath}/${attr}.oauth)" != "${cfgIni."${attr}".oauth-client-id}" ]; then
|
||||||
|
# Configure ${attr}'s OAuth client as "preauthorized"
|
||||||
|
psql ${database} \
|
||||||
|
-c "UPDATE oauthclient SET preauthorized = true WHERE client_id = '${cfgIni."${attr}".oauth-client-id}'"
|
||||||
|
|
||||||
|
printf "%s" "${cfgIni."${attr}".oauth-client-id}" > "${statePath}/${attr}.oauth"
|
||||||
|
fi
|
||||||
|
'')
|
||||||
|
(builtins.attrNames (filterAttrs
|
||||||
|
(k: v: !(hasInfix "::" k) && builtins.hasAttr "oauth-client-id" v && v.oauth-client-id != null)
|
||||||
|
cfg.settings))}
|
||||||
|
'';
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${cfg.python}/bin/gunicorn ${drv.pname}.app:app -b ${cfg.address}:${toString port}";
|
||||||
|
};
|
||||||
|
|
||||||
|
metasrht-api = import ./service.nix { inherit config pkgs lib; } scfg drv iniKey {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "meta.sr.ht api service";
|
||||||
|
|
||||||
|
preStart = ''
|
||||||
|
# Configure client(s) as "preauthorized"
|
||||||
|
${concatMapStringsSep "\n\n"
|
||||||
|
(attr: ''
|
||||||
|
if ! test -e "${statePath}/${attr}.oauth" || [ "$(cat ${statePath}/${attr}.oauth)" != "${cfgIni."${attr}".oauth-client-id}" ]; then
|
||||||
|
# Configure ${attr}'s OAuth client as "preauthorized"
|
||||||
|
psql ${database} \
|
||||||
|
-c "UPDATE oauthclient SET preauthorized = true WHERE client_id = '${cfgIni."${attr}".oauth-client-id}'"
|
||||||
|
|
||||||
|
printf "%s" "${cfgIni."${attr}".oauth-client-id}" > "${statePath}/${attr}.oauth"
|
||||||
|
fi
|
||||||
|
'')
|
||||||
|
(builtins.attrNames (filterAttrs
|
||||||
|
(k: v: !(hasInfix "::" k) && builtins.hasAttr "oauth-client-id" v && v.oauth-client-id != null)
|
||||||
|
cfg.settings))}
|
||||||
|
'';
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${pkgs.sourcehut.metasrht}/bin/metasrht-api -b :${toString (port + 100)}";
|
||||||
|
};
|
||||||
|
|
||||||
|
metasrht-webhooks = {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "meta.sr.ht webhooks service";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
User = user;
|
||||||
|
Restart = "always";
|
||||||
|
ExecStart = "${cfg.python}/bin/celery -A ${drv.pname}.webhooks worker --loglevel=info";
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.sourcehut.settings = {
|
||||||
|
# URL meta.sr.ht is being served at (protocol://domain)
|
||||||
|
"meta.sr.ht".origin = mkDefault "https://meta.${cfg.originBase}";
|
||||||
|
# Address and port to bind the debug server to
|
||||||
|
"meta.sr.ht".debug-host = mkDefault "0.0.0.0";
|
||||||
|
"meta.sr.ht".debug-port = mkDefault port;
|
||||||
|
# Configures the SQLAlchemy connection string for the database.
|
||||||
|
"meta.sr.ht".connection-string = mkDefault "postgresql:///${database}?user=${user}&host=/var/run/postgresql";
|
||||||
|
# Set to "yes" to automatically run migrations on package upgrade.
|
||||||
|
"meta.sr.ht".migrate-on-upgrade = mkDefault "yes";
|
||||||
|
# If "yes", the user will be sent the stock sourcehut welcome emails after
|
||||||
|
# signup (requires cron to be configured properly). These are specific to the
|
||||||
|
# sr.ht instance so you probably want to patch these before enabling this.
|
||||||
|
"meta.sr.ht".welcome-emails = mkDefault "no";
|
||||||
|
|
||||||
|
# The redis connection used for the webhooks worker
|
||||||
|
"meta.sr.ht".webhooks = mkDefault "redis://${rcfg.bind}:${toString rcfg.port}/6";
|
||||||
|
|
||||||
|
# If "no", public registration will not be permitted.
|
||||||
|
"meta.sr.ht::settings".registration = mkDefault "no";
|
||||||
|
# Where to redirect new users upon registration
|
||||||
|
"meta.sr.ht::settings".onboarding-redirect = mkDefault "https://meta.${cfg.originBase}";
|
||||||
|
# How many invites each user is issued upon registration (only applicable if
|
||||||
|
# open registration is disabled)
|
||||||
|
"meta.sr.ht::settings".user-invites = mkDefault 5;
|
||||||
|
|
||||||
|
# Origin URL for API, 100 more than web
|
||||||
|
"meta.sr.ht".api-origin = mkDefault "http://localhost:5100";
|
||||||
|
|
||||||
|
# You can add aliases for the client IDs of commonly used OAuth clients here.
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
"meta.sr.ht::aliases" = mkDefault { };
|
||||||
|
# "meta.sr.ht::aliases"."git.sr.ht" = 12345;
|
||||||
|
|
||||||
|
# "yes" to enable the billing system
|
||||||
|
"meta.sr.ht::billing".enabled = mkDefault "no";
|
||||||
|
# Get your keys at https://dashboard.stripe.com/account/apikeys
|
||||||
|
"meta.sr.ht::billing".stripe-public-key = mkDefault null;
|
||||||
|
"meta.sr.ht::billing".stripe-secret-key = mkDefault null;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."meta.${cfg.originBase}" = {
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/".proxyPass = "http://${cfg.address}:${toString port}";
|
||||||
|
locations."/query".proxyPass = "http://${cfg.address}:${toString (port + 100)}";
|
||||||
|
locations."/static".root = "${pkgs.sourcehut.metasrht}/${pkgs.sourcehut.python.sitePackages}/metasrht";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
133
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/paste.nix
vendored
Normal file
133
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/paste.nix
vendored
Normal file
|
@ -0,0 +1,133 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
cfgIni = cfg.settings;
|
||||||
|
scfg = cfg.paste;
|
||||||
|
iniKey = "paste.sr.ht";
|
||||||
|
|
||||||
|
rcfg = config.services.redis;
|
||||||
|
drv = pkgs.sourcehut.pastesrht;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.sourcehut.paste = {
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "pastesrht";
|
||||||
|
description = ''
|
||||||
|
User for paste.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 5011;
|
||||||
|
description = ''
|
||||||
|
Port on which the "paste" module should listen.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
database = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "paste.sr.ht";
|
||||||
|
description = ''
|
||||||
|
PostgreSQL database name for paste.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
statePath = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "${cfg.statePath}/pastesrht";
|
||||||
|
description = ''
|
||||||
|
State path for pastesrht.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = with scfg; lib.mkIf (cfg.enable && elem "paste" cfg.services) {
|
||||||
|
users = {
|
||||||
|
users = {
|
||||||
|
"${user}" = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = user;
|
||||||
|
description = "paste.sr.ht user";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
groups = {
|
||||||
|
"${user}" = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.postgresql = {
|
||||||
|
authentication = ''
|
||||||
|
local ${database} ${user} trust
|
||||||
|
'';
|
||||||
|
ensureDatabases = [ database ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = user;
|
||||||
|
ensurePermissions = { "DATABASE \"${database}\"" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
tmpfiles.rules = [
|
||||||
|
"d ${statePath} 0750 ${user} ${user} -"
|
||||||
|
];
|
||||||
|
|
||||||
|
services = {
|
||||||
|
pastesrht = import ./service.nix { inherit config pkgs lib; } scfg drv iniKey {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "paste.sr.ht website service";
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${cfg.python}/bin/gunicorn ${drv.pname}.app:app -b ${cfg.address}:${toString port}";
|
||||||
|
};
|
||||||
|
|
||||||
|
pastesrht-webhooks = {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "paste.sr.ht webhooks service";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
User = user;
|
||||||
|
Restart = "always";
|
||||||
|
ExecStart = "${cfg.python}/bin/celery -A ${drv.pname}.webhooks worker --loglevel=info";
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.sourcehut.settings = {
|
||||||
|
# URL paste.sr.ht is being served at (protocol://domain)
|
||||||
|
"paste.sr.ht".origin = mkDefault "http://paste.${cfg.originBase}";
|
||||||
|
# Address and port to bind the debug server to
|
||||||
|
"paste.sr.ht".debug-host = mkDefault "0.0.0.0";
|
||||||
|
"paste.sr.ht".debug-port = mkDefault port;
|
||||||
|
# Configures the SQLAlchemy connection string for the database.
|
||||||
|
"paste.sr.ht".connection-string = mkDefault "postgresql:///${database}?user=${user}&host=/var/run/postgresql";
|
||||||
|
# Set to "yes" to automatically run migrations on package upgrade.
|
||||||
|
"paste.sr.ht".migrate-on-upgrade = mkDefault "yes";
|
||||||
|
# paste.sr.ht's OAuth client ID and secret for meta.sr.ht
|
||||||
|
# Register your client at meta.example.org/oauth
|
||||||
|
"paste.sr.ht".oauth-client-id = mkDefault null;
|
||||||
|
"paste.sr.ht".oauth-client-secret = mkDefault null;
|
||||||
|
"paste.sr.ht".webhooks = mkDefault "redis://${rcfg.bind}:${toString rcfg.port}/5";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."paste.${cfg.originBase}" = {
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/".proxyPass = "http://${cfg.address}:${toString port}";
|
||||||
|
locations."/query".proxyPass = "http://${cfg.address}:${toString (port + 100)}";
|
||||||
|
locations."/static".root = "${pkgs.sourcehut.pastesrht}/${pkgs.sourcehut.python.sitePackages}/pastesrht";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
66
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/service.nix
vendored
Normal file
66
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/service.nix
vendored
Normal file
|
@ -0,0 +1,66 @@
|
||||||
|
{ config, pkgs, lib }:
|
||||||
|
serviceCfg: serviceDrv: iniKey: attrs:
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
cfgIni = cfg.settings."${iniKey}";
|
||||||
|
pgSuperUser = config.services.postgresql.superUser;
|
||||||
|
|
||||||
|
setupDB = pkgs.writeScript "${serviceDrv.pname}-gen-db" ''
|
||||||
|
#! ${cfg.python}/bin/python
|
||||||
|
from ${serviceDrv.pname}.app import db
|
||||||
|
db.create()
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
with serviceCfg; with lib; recursiveUpdate
|
||||||
|
{
|
||||||
|
environment.HOME = statePath;
|
||||||
|
path = [ config.services.postgresql.package ] ++ (attrs.path or [ ]);
|
||||||
|
restartTriggers = [ config.environment.etc."sr.ht/config.ini".source ];
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
User = user;
|
||||||
|
Group = user;
|
||||||
|
Restart = "always";
|
||||||
|
WorkingDirectory = statePath;
|
||||||
|
} // (if (cfg.statePath == "/var/lib/sourcehut/${serviceDrv.pname}") then {
|
||||||
|
StateDirectory = [ "sourcehut/${serviceDrv.pname}" ];
|
||||||
|
} else {})
|
||||||
|
;
|
||||||
|
|
||||||
|
preStart = ''
|
||||||
|
if ! test -e ${statePath}/db; then
|
||||||
|
# Setup the initial database
|
||||||
|
${setupDB}
|
||||||
|
|
||||||
|
# Set the initial state of the database for future database upgrades
|
||||||
|
if test -e ${cfg.python}/bin/${serviceDrv.pname}-migrate; then
|
||||||
|
# Run alembic stamp head once to tell alembic the schema is up-to-date
|
||||||
|
${cfg.python}/bin/${serviceDrv.pname}-migrate stamp head
|
||||||
|
fi
|
||||||
|
|
||||||
|
printf "%s" "${serviceDrv.version}" > ${statePath}/db
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Update copy of each users' profile to the latest
|
||||||
|
# See https://lists.sr.ht/~sircmpwn/sr.ht-admins/<20190302181207.GA13778%40cirno.my.domain>
|
||||||
|
if ! test -e ${statePath}/webhook; then
|
||||||
|
# Update ${iniKey}'s users' profile copy to the latest
|
||||||
|
${cfg.python}/bin/srht-update-profiles ${iniKey}
|
||||||
|
|
||||||
|
touch ${statePath}/webhook
|
||||||
|
fi
|
||||||
|
|
||||||
|
${optionalString (builtins.hasAttr "migrate-on-upgrade" cfgIni && cfgIni.migrate-on-upgrade == "yes") ''
|
||||||
|
if [ "$(cat ${statePath}/db)" != "${serviceDrv.version}" ]; then
|
||||||
|
# Manage schema migrations using alembic
|
||||||
|
${cfg.python}/bin/${serviceDrv.pname}-migrate -a upgrade head
|
||||||
|
|
||||||
|
# Mark down current package version
|
||||||
|
printf "%s" "${serviceDrv.version}" > ${statePath}/db
|
||||||
|
fi
|
||||||
|
''}
|
||||||
|
|
||||||
|
${attrs.preStart or ""}
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
(builtins.removeAttrs attrs [ "path" "preStart" ])
|
115
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/sourcehut.xml
vendored
Normal file
115
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/sourcehut.xml
vendored
Normal file
|
@ -0,0 +1,115 @@
|
||||||
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
|
version="5.0"
|
||||||
|
xml:id="module-services-sourcehut">
|
||||||
|
<title>Sourcehut</title>
|
||||||
|
<para>
|
||||||
|
<link xlink:href="https://sr.ht.com/">Sourcehut</link> is an open-source,
|
||||||
|
self-hostable software development platform. The server setup can be automated using
|
||||||
|
<link linkend="opt-services.sourcehut.enable">services.sourcehut</link>.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<section xml:id="module-services-sourcehut-basic-usage">
|
||||||
|
<title>Basic usage</title>
|
||||||
|
<para>
|
||||||
|
Sourcehut is a Python and Go based set of applications.
|
||||||
|
<literal><link linkend="opt-services.sourcehut.enable">services.sourcehut</link></literal>
|
||||||
|
by default will use
|
||||||
|
<literal><link linkend="opt-services.nginx.enable">services.nginx</link></literal>,
|
||||||
|
<literal><link linkend="opt-services.nginx.enable">services.redis</link></literal>,
|
||||||
|
<literal><link linkend="opt-services.nginx.enable">services.cron</link></literal>,
|
||||||
|
and
|
||||||
|
<literal><link linkend="opt-services.postgresql.enable">services.postgresql</link></literal>.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
A very basic configuration may look like this:
|
||||||
|
<programlisting>
|
||||||
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
|
fqdn =
|
||||||
|
let
|
||||||
|
join = hostName: domain: hostName + optionalString (domain != null) ".${domain}";
|
||||||
|
in join config.networking.hostName config.networking.domain;
|
||||||
|
in {
|
||||||
|
|
||||||
|
networking = {
|
||||||
|
<link linkend="opt-networking.hostName">hostName</link> = "srht";
|
||||||
|
<link linkend="opt-networking.domain">domain</link> = "tld";
|
||||||
|
<link linkend="opt-networking.firewall.allowedTCPPorts">firewall.allowedTCPPorts</link> = [ 22 80 443 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
services.sourcehut = {
|
||||||
|
<link linkend="opt-services.sourcehut.enable">enable</link> = true;
|
||||||
|
<link linkend="opt-services.sourcehut.originBase">originBase</link> = fqdn;
|
||||||
|
<link linkend="opt-services.sourcehut.services">services</link> = [ "meta" "man" "git" ];
|
||||||
|
<link linkend="opt-services.sourcehut.settings">settings</link> = {
|
||||||
|
"sr.ht" = {
|
||||||
|
environment = "production";
|
||||||
|
global-domain = fqdn;
|
||||||
|
origin = "https://${fqdn}";
|
||||||
|
# Produce keys with srht-keygen from <package>sourcehut.coresrht</package>.
|
||||||
|
network-key = "SECRET";
|
||||||
|
service-key = "SECRET";
|
||||||
|
};
|
||||||
|
webhooks.private-key= "SECRET";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
<link linkend="opt-security.acme.certs._name_.extraDomainNames">security.acme.certs."${fqdn}".extraDomainNames</link> = [
|
||||||
|
"meta.${fqdn}"
|
||||||
|
"man.${fqdn}"
|
||||||
|
"git.${fqdn}"
|
||||||
|
];
|
||||||
|
|
||||||
|
services.nginx = {
|
||||||
|
<link linkend="opt-services.nginx.enable">enable</link> = true;
|
||||||
|
# only recommendedProxySettings are strictly required, but the rest make sense as well.
|
||||||
|
<link linkend="opt-services.nginx.recommendedTlsSettings">recommendedTlsSettings</link> = true;
|
||||||
|
<link linkend="opt-services.nginx.recommendedOptimisation">recommendedOptimisation</link> = true;
|
||||||
|
<link linkend="opt-services.nginx.recommendedGzipSettings">recommendedGzipSettings</link> = true;
|
||||||
|
<link linkend="opt-services.nginx.recommendedProxySettings">recommendedProxySettings</link> = true;
|
||||||
|
|
||||||
|
# Settings to setup what certificates are used for which endpoint.
|
||||||
|
<link linkend="opt-services.nginx.virtualHosts">virtualHosts</link> = {
|
||||||
|
<link linkend="opt-services.nginx.virtualHosts._name_.enableACME">"${fqdn}".enableACME</link> = true;
|
||||||
|
<link linkend="opt-services.nginx.virtualHosts._name_.useACMEHost">"meta.${fqdn}".useACMEHost</link> = fqdn:
|
||||||
|
<link linkend="opt-services.nginx.virtualHosts._name_.useACMEHost">"man.${fqdn}".useACMEHost</link> = fqdn:
|
||||||
|
<link linkend="opt-services.nginx.virtualHosts._name_.useACMEHost">"git.${fqdn}".useACMEHost</link> = fqdn:
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
</programlisting>
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The <literal>hostName</literal> option is used internally to configure the nginx
|
||||||
|
reverse-proxy. The <literal>settings</literal> attribute set is
|
||||||
|
used by the configuration generator and the result is placed in <literal>/etc/sr.ht/config.ini</literal>.
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section xml:id="module-services-sourcehut-configuration">
|
||||||
|
<title>Configuration</title>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
All configuration parameters are also stored in
|
||||||
|
<literal>/etc/sr.ht/config.ini</literal> which is generated by
|
||||||
|
the module and linked from the store to ensure that all values from <literal>config.ini</literal>
|
||||||
|
can be modified by the module.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section xml:id="module-services-sourcehut-httpd">
|
||||||
|
<title>Using an alternative webserver as reverse-proxy (e.g. <literal>httpd</literal>)</title>
|
||||||
|
<para>
|
||||||
|
By default, <package>nginx</package> is used as reverse-proxy for <package>sourcehut</package>.
|
||||||
|
However, it's possible to use e.g. <package>httpd</package> by explicitly disabling
|
||||||
|
<package>nginx</package> using <xref linkend="opt-services.nginx.enable" /> and fixing the
|
||||||
|
<literal>settings</literal>.
|
||||||
|
</para>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</chapter>
|
161
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/todo.nix
vendored
Normal file
161
third_party/nixpkgs/nixos/modules/services/misc/sourcehut/todo.nix
vendored
Normal file
|
@ -0,0 +1,161 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.services.sourcehut;
|
||||||
|
cfgIni = cfg.settings;
|
||||||
|
scfg = cfg.todo;
|
||||||
|
iniKey = "todo.sr.ht";
|
||||||
|
|
||||||
|
rcfg = config.services.redis;
|
||||||
|
drv = pkgs.sourcehut.todosrht;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.sourcehut.todo = {
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "todosrht";
|
||||||
|
description = ''
|
||||||
|
User for todo.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 5003;
|
||||||
|
description = ''
|
||||||
|
Port on which the "todo" module should listen.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
database = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "todo.sr.ht";
|
||||||
|
description = ''
|
||||||
|
PostgreSQL database name for todo.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
statePath = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "${cfg.statePath}/todosrht";
|
||||||
|
description = ''
|
||||||
|
State path for todo.sr.ht.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = with scfg; lib.mkIf (cfg.enable && elem "todo" cfg.services) {
|
||||||
|
users = {
|
||||||
|
users = {
|
||||||
|
"${user}" = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = user;
|
||||||
|
extraGroups = [ "postfix" ];
|
||||||
|
description = "todo.sr.ht user";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
groups = {
|
||||||
|
"${user}" = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.postgresql = {
|
||||||
|
authentication = ''
|
||||||
|
local ${database} ${user} trust
|
||||||
|
'';
|
||||||
|
ensureDatabases = [ database ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = user;
|
||||||
|
ensurePermissions = { "DATABASE \"${database}\"" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
tmpfiles.rules = [
|
||||||
|
"d ${statePath} 0750 ${user} ${user} -"
|
||||||
|
];
|
||||||
|
|
||||||
|
services = {
|
||||||
|
todosrht = import ./service.nix { inherit config pkgs lib; } scfg drv iniKey {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "todo.sr.ht website service";
|
||||||
|
|
||||||
|
serviceConfig.ExecStart = "${cfg.python}/bin/gunicorn ${drv.pname}.app:app -b ${cfg.address}:${toString port}";
|
||||||
|
};
|
||||||
|
|
||||||
|
todosrht-lmtp = {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
bindsTo = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "todo.sr.ht process service";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
User = user;
|
||||||
|
Restart = "always";
|
||||||
|
ExecStart = "${cfg.python}/bin/todosrht-lmtp";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
todosrht-webhooks = {
|
||||||
|
after = [ "postgresql.service" "network.target" ];
|
||||||
|
requires = [ "postgresql.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
description = "todo.sr.ht webhooks service";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
User = user;
|
||||||
|
Restart = "always";
|
||||||
|
ExecStart = "${cfg.python}/bin/celery -A ${drv.pname}.webhooks worker --loglevel=info";
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.sourcehut.settings = {
|
||||||
|
# URL todo.sr.ht is being served at (protocol://domain)
|
||||||
|
"todo.sr.ht".origin = mkDefault "http://todo.${cfg.originBase}";
|
||||||
|
# Address and port to bind the debug server to
|
||||||
|
"todo.sr.ht".debug-host = mkDefault "0.0.0.0";
|
||||||
|
"todo.sr.ht".debug-port = mkDefault port;
|
||||||
|
# Configures the SQLAlchemy connection string for the database.
|
||||||
|
"todo.sr.ht".connection-string = mkDefault "postgresql:///${database}?user=${user}&host=/var/run/postgresql";
|
||||||
|
# Set to "yes" to automatically run migrations on package upgrade.
|
||||||
|
"todo.sr.ht".migrate-on-upgrade = mkDefault "yes";
|
||||||
|
# todo.sr.ht's OAuth client ID and secret for meta.sr.ht
|
||||||
|
# Register your client at meta.example.org/oauth
|
||||||
|
"todo.sr.ht".oauth-client-id = mkDefault null;
|
||||||
|
"todo.sr.ht".oauth-client-secret = mkDefault null;
|
||||||
|
# Outgoing email for notifications generated by users
|
||||||
|
"todo.sr.ht".notify-from = mkDefault "CHANGEME@example.org";
|
||||||
|
# The redis connection used for the webhooks worker
|
||||||
|
"todo.sr.ht".webhooks = mkDefault "redis://${rcfg.bind}:${toString rcfg.port}/1";
|
||||||
|
# Network-key
|
||||||
|
"todo.sr.ht".network-key = mkDefault null;
|
||||||
|
|
||||||
|
# Path for the lmtp daemon's unix socket. Direct incoming mail to this socket.
|
||||||
|
# Alternatively, specify IP:PORT and an SMTP server will be run instead.
|
||||||
|
"todo.sr.ht::mail".sock = mkDefault "/tmp/todo.sr.ht-lmtp.sock";
|
||||||
|
# The lmtp daemon will make the unix socket group-read/write for users in this
|
||||||
|
# group.
|
||||||
|
"todo.sr.ht::mail".sock-group = mkDefault "postfix";
|
||||||
|
|
||||||
|
"todo.sr.ht::mail".posting-domain = mkDefault "todo.${cfg.originBase}";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."todo.${cfg.originBase}" = {
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/".proxyPass = "http://${cfg.address}:${toString port}";
|
||||||
|
locations."/query".proxyPass = "http://${cfg.address}:${toString (port + 100)}";
|
||||||
|
locations."/static".root = "${pkgs.sourcehut.todosrht}/${pkgs.sourcehut.python.sitePackages}/todosrht";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -51,6 +51,7 @@ let
|
||||||
"pihole"
|
"pihole"
|
||||||
"postfix"
|
"postfix"
|
||||||
"postgres"
|
"postgres"
|
||||||
|
"process"
|
||||||
"py-air-control"
|
"py-air-control"
|
||||||
"redis"
|
"redis"
|
||||||
"rspamd"
|
"rspamd"
|
||||||
|
|
|
@ -35,13 +35,28 @@ in
|
||||||
{
|
{
|
||||||
<xref linkend="opt-services.prometheus.exporters.dovecot.enable" /> = true;
|
<xref linkend="opt-services.prometheus.exporters.dovecot.enable" /> = true;
|
||||||
<xref linkend="opt-services.prometheus.exporters.dovecot.socketPath" /> = "/var/run/dovecot2/old-stats";
|
<xref linkend="opt-services.prometheus.exporters.dovecot.socketPath" /> = "/var/run/dovecot2/old-stats";
|
||||||
|
<xref linkend="opt-services.dovecot2.mailPlugins.globally.enable" /> = [ "old_stats" ];
|
||||||
<xref linkend="opt-services.dovecot2.extraConfig" /> = '''
|
<xref linkend="opt-services.dovecot2.extraConfig" /> = '''
|
||||||
mail_plugins = $mail_plugins old_stats
|
|
||||||
service old-stats {
|
service old-stats {
|
||||||
unix_listener old-stats {
|
unix_listener old-stats {
|
||||||
user = dovecot-exporter
|
user = dovecot-exporter
|
||||||
group = dovecot-exporter
|
group = dovecot-exporter
|
||||||
|
mode = 0660
|
||||||
}
|
}
|
||||||
|
fifo_listener old-stats-mail {
|
||||||
|
mode = 0660
|
||||||
|
user = dovecot
|
||||||
|
group = dovecot
|
||||||
|
}
|
||||||
|
fifo_listener old-stats-user {
|
||||||
|
mode = 0660
|
||||||
|
user = dovecot
|
||||||
|
group = dovecot
|
||||||
|
}
|
||||||
|
}
|
||||||
|
plugin {
|
||||||
|
old_stats_refresh = 30 secs
|
||||||
|
old_stats_track_cmds = yes
|
||||||
}
|
}
|
||||||
''';
|
''';
|
||||||
}
|
}
|
||||||
|
|
|
@ -112,6 +112,24 @@ let
|
||||||
'';
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
List of servers that should be probed.
|
List of servers that should be probed.
|
||||||
|
|
||||||
|
<emphasis>Note:</emphasis> if your mailserver has <citerefentry>
|
||||||
|
<refentrytitle>rspamd</refentrytitle><manvolnum>8</manvolnum></citerefentry> configured,
|
||||||
|
it can happen that emails from this exporter are marked as spam.
|
||||||
|
|
||||||
|
It's possible to work around the issue with a config like this:
|
||||||
|
<programlisting>
|
||||||
|
{
|
||||||
|
<link linkend="opt-services.rspamd.locals._name_.text">services.rspamd.locals."multimap.conf".text</link> = '''
|
||||||
|
ALLOWLIST_PROMETHEUS {
|
||||||
|
filter = "email:domain:tld";
|
||||||
|
type = "from";
|
||||||
|
map = "''${pkgs.writeText "allowmap" "domain.tld"}";
|
||||||
|
score = -100.0;
|
||||||
|
}
|
||||||
|
''';
|
||||||
|
}
|
||||||
|
</programlisting>
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
48
third_party/nixpkgs/nixos/modules/services/monitoring/prometheus/exporters/process.nix
vendored
Normal file
48
third_party/nixpkgs/nixos/modules/services/monitoring/prometheus/exporters/process.nix
vendored
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{ config, lib, pkgs, options }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.services.prometheus.exporters.process;
|
||||||
|
configFile = pkgs.writeText "process-exporter.yaml" (builtins.toJSON cfg.settings);
|
||||||
|
in
|
||||||
|
{
|
||||||
|
port = 9256;
|
||||||
|
extraOpts = {
|
||||||
|
settings.process_names = mkOption {
|
||||||
|
type = types.listOf types.anything;
|
||||||
|
default = {};
|
||||||
|
example = literalExample ''
|
||||||
|
{
|
||||||
|
process_names = [
|
||||||
|
# Remove nix store path from process name
|
||||||
|
{ name = "{{.Matches.Wrapped}} {{ .Matches.Args }}"; cmdline = [ "^/nix/store[^ ]*/(?P<Wrapped>[^ /]*) (?P<Args>.*)" ]; }
|
||||||
|
];
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
description = ''
|
||||||
|
All settings expressed as an Nix attrset.
|
||||||
|
|
||||||
|
Check the official documentation for the corresponding YAML
|
||||||
|
settings that can all be used here: <link xlink:href="https://github.com/ncabatoff/process-exporter" />
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
serviceOpts = {
|
||||||
|
serviceConfig = {
|
||||||
|
DynamicUser = false;
|
||||||
|
ExecStart = ''
|
||||||
|
${pkgs.prometheus-process-exporter}/bin/process-exporter \
|
||||||
|
--web.listen-address ${cfg.listenAddress}:${toString cfg.port} \
|
||||||
|
--config.path ${configFile} \
|
||||||
|
${concatStringsSep " \\\n " cfg.extraFlags}
|
||||||
|
'';
|
||||||
|
NoNewPrivileges = true;
|
||||||
|
ProtectHome = true;
|
||||||
|
ProtectSystem = true;
|
||||||
|
ProtectKernelTunables = true;
|
||||||
|
ProtectKernelModules = true;
|
||||||
|
ProtectControlGroups = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -5,21 +5,19 @@ with lib;
|
||||||
let
|
let
|
||||||
cfg = config.services.prometheus.exporters.rspamd;
|
cfg = config.services.prometheus.exporters.rspamd;
|
||||||
|
|
||||||
prettyJSON = conf:
|
mkFile = conf:
|
||||||
pkgs.runCommand "rspamd-exporter-config.yml" { } ''
|
pkgs.writeText "rspamd-exporter-config.yml" (builtins.toJSON conf);
|
||||||
echo '${builtins.toJSON conf}' | ${pkgs.buildPackages.jq}/bin/jq '.' > $out
|
|
||||||
'';
|
|
||||||
|
|
||||||
generateConfig = extraLabels: {
|
generateConfig = extraLabels: {
|
||||||
metrics = (map (path: {
|
metrics = (map (path: {
|
||||||
name = "rspamd_${replaceStrings [ "." " " ] [ "_" "_" ] path}";
|
name = "rspamd_${replaceStrings [ "[" "." " " "]" "\\" "'" ] [ "_" "_" "_" "" "" "" ] path}";
|
||||||
path = "{ .${path} }";
|
path = "{ .${path} }";
|
||||||
labels = extraLabels;
|
labels = extraLabels;
|
||||||
}) [
|
}) [
|
||||||
"actions.'add header'"
|
"actions['add\\ header']"
|
||||||
"actions.'no action'"
|
"actions['no\\ action']"
|
||||||
"actions.'rewrite subject'"
|
"actions['rewrite\\ subject']"
|
||||||
"actions.'soft reject'"
|
"actions['soft\\ reject']"
|
||||||
"actions.greylist"
|
"actions.greylist"
|
||||||
"actions.reject"
|
"actions.reject"
|
||||||
"bytes_allocated"
|
"bytes_allocated"
|
||||||
|
@ -40,18 +38,18 @@ let
|
||||||
]) ++ [{
|
]) ++ [{
|
||||||
name = "rspamd_statfiles";
|
name = "rspamd_statfiles";
|
||||||
type = "object";
|
type = "object";
|
||||||
path = "$.statfiles[*]";
|
path = "{.statfiles[*]}";
|
||||||
labels = recursiveUpdate {
|
labels = recursiveUpdate {
|
||||||
symbol = "$.symbol";
|
symbol = "{.symbol}";
|
||||||
type = "$.type";
|
type = "{.type}";
|
||||||
} extraLabels;
|
} extraLabels;
|
||||||
values = {
|
values = {
|
||||||
revision = "$.revision";
|
revision = "{.revision}";
|
||||||
size = "$.size";
|
size = "{.size}";
|
||||||
total = "$.total";
|
total = "{.total}";
|
||||||
used = "$.used";
|
used = "{.used}";
|
||||||
languages = "$.languages";
|
languages = "{.languages}";
|
||||||
users = "$.users";
|
users = "{.users}";
|
||||||
};
|
};
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
@ -76,7 +74,7 @@ in
|
||||||
};
|
};
|
||||||
serviceOpts.serviceConfig.ExecStart = ''
|
serviceOpts.serviceConfig.ExecStart = ''
|
||||||
${pkgs.prometheus-json-exporter}/bin/json_exporter \
|
${pkgs.prometheus-json-exporter}/bin/json_exporter \
|
||||||
--config.file ${prettyJSON (generateConfig cfg.extraLabels)} \
|
--config.file ${mkFile (generateConfig cfg.extraLabels)} \
|
||||||
--web.listen-address "${cfg.listenAddress}:${toString cfg.port}" \
|
--web.listen-address "${cfg.listenAddress}:${toString cfg.port}" \
|
||||||
${concatStringsSep " \\\n " cfg.extraFlags}
|
${concatStringsSep " \\\n " cfg.extraFlags}
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -27,7 +27,7 @@ let
|
||||||
|
|
||||||
# NOTE: Use password authentication, since mysqljs does not yet support auth_socket
|
# NOTE: Use password authentication, since mysqljs does not yet support auth_socket
|
||||||
if [ ! -e /var/lib/epgstation/db-created ]; then
|
if [ ! -e /var/lib/epgstation/db-created ]; then
|
||||||
${pkgs.mysql}/bin/mysql -e \
|
${pkgs.mariadb}/bin/mysql -e \
|
||||||
"GRANT ALL ON \`${cfg.database.name}\`.* TO '${username}'@'localhost' IDENTIFIED by '$DB_PASSWORD';"
|
"GRANT ALL ON \`${cfg.database.name}\`.* TO '${username}'@'localhost' IDENTIFIED by '$DB_PASSWORD';"
|
||||||
touch /var/lib/epgstation/db-created
|
touch /var/lib/epgstation/db-created
|
||||||
fi
|
fi
|
||||||
|
@ -224,7 +224,7 @@ in
|
||||||
|
|
||||||
services.mysql = {
|
services.mysql = {
|
||||||
enable = mkDefault true;
|
enable = mkDefault true;
|
||||||
package = mkDefault pkgs.mysql;
|
package = mkDefault pkgs.mariadb;
|
||||||
ensureDatabases = [ cfg.database.name ];
|
ensureDatabases = [ cfg.database.name ];
|
||||||
# FIXME: enable once mysqljs supports auth_socket
|
# FIXME: enable once mysqljs supports auth_socket
|
||||||
# ensureUsers = [ {
|
# ensureUsers = [ {
|
||||||
|
|
|
@ -728,7 +728,7 @@ in
|
||||||
|
|
||||||
services.postgresql.enable = lib.mkDefault createLocalPostgreSQL;
|
services.postgresql.enable = lib.mkDefault createLocalPostgreSQL;
|
||||||
services.mysql.enable = lib.mkDefault createLocalMySQL;
|
services.mysql.enable = lib.mkDefault createLocalMySQL;
|
||||||
services.mysql.package = lib.mkIf createLocalMySQL pkgs.mysql;
|
services.mysql.package = lib.mkIf createLocalMySQL pkgs.mariadb;
|
||||||
};
|
};
|
||||||
|
|
||||||
meta.doc = ./keycloak.xml;
|
meta.doc = ./keycloak.xml;
|
||||||
|
|
|
@ -644,7 +644,7 @@ let
|
||||||
|
|
||||||
services.mysql = mkIf mysqlLocal {
|
services.mysql = mkIf mysqlLocal {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = mkDefault pkgs.mysql;
|
package = mkDefault pkgs.mariadb;
|
||||||
ensureDatabases = [ cfg.database.name ];
|
ensureDatabases = [ cfg.database.name ];
|
||||||
ensureUsers = [
|
ensureUsers = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -65,6 +65,18 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
storage.settings = mkOption {
|
||||||
|
type = toml.type;
|
||||||
|
default = {
|
||||||
|
storage = {
|
||||||
|
driver = "overlay";
|
||||||
|
graphroot = "/var/lib/containers/storage";
|
||||||
|
runroot = "/run/containers/storage";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
description = "storage.conf configuration";
|
||||||
|
};
|
||||||
|
|
||||||
registries = {
|
registries = {
|
||||||
search = mkOption {
|
search = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
|
@ -129,6 +141,9 @@ in
|
||||||
environment.etc."containers/containers.conf".source =
|
environment.etc."containers/containers.conf".source =
|
||||||
toml.generate "containers.conf" cfg.containersConf.settings;
|
toml.generate "containers.conf" cfg.containersConf.settings;
|
||||||
|
|
||||||
|
environment.etc."containers/storage.conf".source =
|
||||||
|
toml.generate "storage.conf" cfg.storage.settings;
|
||||||
|
|
||||||
environment.etc."containers/registries.conf".source = toml.generate "registries.conf" {
|
environment.etc."containers/registries.conf".source = toml.generate "registries.conf" {
|
||||||
registries = lib.mapAttrs (n: v: { registries = v; }) cfg.registries;
|
registries = lib.mapAttrs (n: v: { registries = v; }) cfg.registries;
|
||||||
};
|
};
|
||||||
|
|
|
@ -175,5 +175,8 @@ in {
|
||||||
"net.ipv6.neigh.default.gc_thresh3" = 8192;
|
"net.ipv6.neigh.default.gc_thresh3" = 8192;
|
||||||
"kernel.keys.maxkeys" = 2000;
|
"kernel.keys.maxkeys" = 2000;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
boot.kernelModules = [ "veth" "xt_comment" "xt_CHECKSUM" "xt_MASQUERADE" ]
|
||||||
|
++ optionals (!config.networking.nftables.enable) [ "iptable_mangle" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,9 +66,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
in (mkMerge [{
|
in (mkMerge [{
|
||||||
|
environment.systemPackages = [ cfg.package ];
|
||||||
environment.systemPackages = [ cfg.package pkgs.ipsecTools ];
|
|
||||||
|
|
||||||
boot.kernelModules = [ "tun" "openvswitch" ];
|
boot.kernelModules = [ "tun" "openvswitch" ];
|
||||||
|
|
||||||
boot.extraModulePackages = [ cfg.package ];
|
boot.extraModulePackages = [ cfg.package ];
|
||||||
|
@ -146,6 +144,8 @@ in {
|
||||||
|
|
||||||
}
|
}
|
||||||
(mkIf (cfg.ipsec && (versionOlder cfg.package.version "2.6.0")) {
|
(mkIf (cfg.ipsec && (versionOlder cfg.package.version "2.6.0")) {
|
||||||
|
environment.systemPackages = [ pkgs.ipsecTools ];
|
||||||
|
|
||||||
services.racoon.enable = true;
|
services.racoon.enable = true;
|
||||||
services.racoon.configPath = "${runDir}/ipsec/etc/racoon/racoon.conf";
|
services.racoon.configPath = "${runDir}/ipsec/etc/racoon/racoon.conf";
|
||||||
|
|
||||||
|
|
|
@ -325,7 +325,6 @@ in
|
||||||
pgjwt = handleTest ./pgjwt.nix {};
|
pgjwt = handleTest ./pgjwt.nix {};
|
||||||
pgmanage = handleTest ./pgmanage.nix {};
|
pgmanage = handleTest ./pgmanage.nix {};
|
||||||
php = handleTest ./php {};
|
php = handleTest ./php {};
|
||||||
php73 = handleTest ./php { php = pkgs.php73; };
|
|
||||||
php74 = handleTest ./php { php = pkgs.php74; };
|
php74 = handleTest ./php { php = pkgs.php74; };
|
||||||
php80 = handleTest ./php { php = pkgs.php80; };
|
php80 = handleTest ./php { php = pkgs.php80; };
|
||||||
pinnwand = handleTest ./pinnwand.nix {};
|
pinnwand = handleTest ./pinnwand.nix {};
|
||||||
|
|
|
@ -42,7 +42,7 @@ let
|
||||||
GRANT ALL ON `bitwarden`.* TO 'bitwardenuser'@'localhost';
|
GRANT ALL ON `bitwarden`.* TO 'bitwardenuser'@'localhost';
|
||||||
FLUSH PRIVILEGES;
|
FLUSH PRIVILEGES;
|
||||||
'';
|
'';
|
||||||
package = pkgs.mysql;
|
package = pkgs.mariadb;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.bitwarden_rs.config.databaseUrl = "mysql://bitwardenuser:${dbPassword}@localhost/bitwarden";
|
services.bitwarden_rs.config.databaseUrl = "mysql://bitwardenuser:${dbPassword}@localhost/bitwarden";
|
||||||
|
|
4
third_party/nixpkgs/nixos/tests/lxd.nix
vendored
4
third_party/nixpkgs/nixos/tests/lxd.nix
vendored
|
@ -96,6 +96,7 @@ in {
|
||||||
## limits.cpu ##
|
## limits.cpu ##
|
||||||
|
|
||||||
machine.succeed("lxc config set test limits.cpu 1")
|
machine.succeed("lxc config set test limits.cpu 1")
|
||||||
|
machine.succeed("lxc restart test")
|
||||||
|
|
||||||
# Since Alpine doesn't have `nproc` pre-installed, we've gotta resort
|
# Since Alpine doesn't have `nproc` pre-installed, we've gotta resort
|
||||||
# to the primal methods
|
# to the primal methods
|
||||||
|
@ -105,6 +106,7 @@ in {
|
||||||
)
|
)
|
||||||
|
|
||||||
machine.succeed("lxc config set test limits.cpu 2")
|
machine.succeed("lxc config set test limits.cpu 2")
|
||||||
|
machine.succeed("lxc restart test")
|
||||||
|
|
||||||
assert (
|
assert (
|
||||||
"2"
|
"2"
|
||||||
|
@ -115,6 +117,7 @@ in {
|
||||||
## limits.memory ##
|
## limits.memory ##
|
||||||
|
|
||||||
machine.succeed("lxc config set test limits.memory 64MB")
|
machine.succeed("lxc config set test limits.memory 64MB")
|
||||||
|
machine.succeed("lxc restart test")
|
||||||
|
|
||||||
assert (
|
assert (
|
||||||
"MemTotal: 62500 kB"
|
"MemTotal: 62500 kB"
|
||||||
|
@ -122,6 +125,7 @@ in {
|
||||||
)
|
)
|
||||||
|
|
||||||
machine.succeed("lxc config set test limits.memory 128MB")
|
machine.succeed("lxc config set test limits.memory 128MB")
|
||||||
|
machine.succeed("lxc restart test")
|
||||||
|
|
||||||
assert (
|
assert (
|
||||||
"MemTotal: 125000 kB"
|
"MemTotal: 125000 kB"
|
||||||
|
|
2
third_party/nixpkgs/nixos/tests/matomo.nix
vendored
2
third_party/nixpkgs/nixos/tests/matomo.nix
vendored
|
@ -18,7 +18,7 @@ let
|
||||||
};
|
};
|
||||||
services.mysql = {
|
services.mysql = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.mysql;
|
package = pkgs.mariadb;
|
||||||
};
|
};
|
||||||
services.nginx.enable = true;
|
services.nginx.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,7 +8,7 @@ import ./../make-test-python.nix ({ pkgs, lib, ... }:
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
services.mysql.enable = true;
|
services.mysql.enable = true;
|
||||||
services.mysql.package = pkgs.mysql;
|
services.mysql.package = pkgs.mariadb;
|
||||||
services.mysql.initialDatabases = [ { name = "testdb"; schema = ./testdb.sql; } ];
|
services.mysql.initialDatabases = [ { name = "testdb"; schema = ./testdb.sql; } ];
|
||||||
|
|
||||||
services.automysqlbackup.enable = true;
|
services.automysqlbackup.enable = true;
|
||||||
|
|
|
@ -10,7 +10,7 @@ import ./../make-test-python.nix ({ pkgs, ... } : {
|
||||||
services.mysql = {
|
services.mysql = {
|
||||||
enable = true;
|
enable = true;
|
||||||
initialDatabases = [ { name = "testdb"; schema = ./testdb.sql; } ];
|
initialDatabases = [ { name = "testdb"; schema = ./testdb.sql; } ];
|
||||||
package = pkgs.mysql;
|
package = pkgs.mariadb;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.mysqlBackup = {
|
services.mysqlBackup = {
|
||||||
|
|
|
@ -17,7 +17,7 @@ in
|
||||||
|
|
||||||
{
|
{
|
||||||
services.mysql.enable = true;
|
services.mysql.enable = true;
|
||||||
services.mysql.package = pkgs.mysql;
|
services.mysql.package = pkgs.mariadb;
|
||||||
services.mysql.replication.role = "master";
|
services.mysql.replication.role = "master";
|
||||||
services.mysql.replication.slaveHost = "%";
|
services.mysql.replication.slaveHost = "%";
|
||||||
services.mysql.replication.masterUser = replicateUser;
|
services.mysql.replication.masterUser = replicateUser;
|
||||||
|
@ -31,7 +31,7 @@ in
|
||||||
|
|
||||||
{
|
{
|
||||||
services.mysql.enable = true;
|
services.mysql.enable = true;
|
||||||
services.mysql.package = pkgs.mysql;
|
services.mysql.package = pkgs.mariadb;
|
||||||
services.mysql.replication.role = "slave";
|
services.mysql.replication.role = "slave";
|
||||||
services.mysql.replication.serverId = 2;
|
services.mysql.replication.serverId = 2;
|
||||||
services.mysql.replication.masterHost = nodes.master.config.networking.hostName;
|
services.mysql.replication.masterHost = nodes.master.config.networking.hostName;
|
||||||
|
@ -44,7 +44,7 @@ in
|
||||||
|
|
||||||
{
|
{
|
||||||
services.mysql.enable = true;
|
services.mysql.enable = true;
|
||||||
services.mysql.package = pkgs.mysql;
|
services.mysql.package = pkgs.mariadb;
|
||||||
services.mysql.replication.role = "slave";
|
services.mysql.replication.role = "slave";
|
||||||
services.mysql.replication.serverId = 3;
|
services.mysql.replication.serverId = 3;
|
||||||
services.mysql.replication.masterHost = nodes.master.config.networking.hostName;
|
services.mysql.replication.masterHost = nodes.master.config.networking.hostName;
|
||||||
|
|
|
@ -864,6 +864,25 @@ let
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
process = {
|
||||||
|
exporterConfig = {
|
||||||
|
enable = true;
|
||||||
|
settings.process_names = [
|
||||||
|
# Remove nix store path from process name
|
||||||
|
{ name = "{{.Matches.Wrapped}} {{ .Matches.Args }}"; cmdline = [ "^/nix/store[^ ]*/(?P<Wrapped>[^ /]*) (?P<Args>.*)" ]; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
exporterTest = ''
|
||||||
|
wait_for_unit("prometheus-process-exporter.service")
|
||||||
|
wait_for_open_port(9256)
|
||||||
|
wait_until_succeeds(
|
||||||
|
"curl -sSf localhost:9256/metrics | grep -q '{}'".format(
|
||||||
|
'namedprocess_namegroup_cpu_seconds_total{groupname="process-exporter '
|
||||||
|
)
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
py-air-control = {
|
py-air-control = {
|
||||||
nodeName = "py_air_control";
|
nodeName = "py_air_control";
|
||||||
exporterConfig = {
|
exporterConfig = {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import ./make-test-python.nix {
|
import ./make-test-python.nix {
|
||||||
name = "opensmtpd";
|
name = "rss2email";
|
||||||
|
|
||||||
nodes = {
|
nodes = {
|
||||||
server = { pkgs, ... }: {
|
server = { pkgs, ... }: {
|
||||||
|
|
2
third_party/nixpkgs/nixos/tests/sogo.nix
vendored
2
third_party/nixpkgs/nixos/tests/sogo.nix
vendored
|
@ -10,7 +10,7 @@ import ./make-test-python.nix ({ pkgs, ... }: {
|
||||||
|
|
||||||
services.mysql = {
|
services.mysql = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.mysql;
|
package = pkgs.mariadb;
|
||||||
ensureDatabases = [ "sogo" ];
|
ensureDatabases = [ "sogo" ];
|
||||||
ensureUsers = [{
|
ensureUsers = [{
|
||||||
name = "sogo";
|
name = "sogo";
|
||||||
|
|
29
third_party/nixpkgs/nixos/tests/sourcehut.nix
vendored
Normal file
29
third_party/nixpkgs/nixos/tests/sourcehut.nix
vendored
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
import ./make-test-python.nix ({ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
name = "sourcehut";
|
||||||
|
|
||||||
|
meta.maintainers = [ pkgs.lib.maintainers.tomberek ];
|
||||||
|
|
||||||
|
machine = { config, pkgs, ... }: {
|
||||||
|
virtualisation.memorySize = 2048;
|
||||||
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
||||||
|
|
||||||
|
services.sourcehut = {
|
||||||
|
enable = true;
|
||||||
|
services = [ "meta" ];
|
||||||
|
originBase = "sourcehut";
|
||||||
|
settings."sr.ht".service-key = "8888888888888888888888888888888888888888888888888888888888888888";
|
||||||
|
settings."sr.ht".network-key = "0000000000000000000000000000000000000000000=";
|
||||||
|
settings.webhooks.private-key = "0000000000000000000000000000000000000000000=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
testScript = ''
|
||||||
|
start_all()
|
||||||
|
machine.wait_for_unit("multi-user.target")
|
||||||
|
machine.wait_for_unit("metasrht.service")
|
||||||
|
machine.wait_for_open_port(5000)
|
||||||
|
machine.succeed("curl -sL http://localhost:5000 | grep meta.sourcehut")
|
||||||
|
'';
|
||||||
|
})
|
|
@ -1,6 +1,6 @@
|
||||||
import ../make-test-python.nix ({pkgs, ...}:
|
import ../make-test-python.nix ({pkgs, ...}:
|
||||||
let
|
let
|
||||||
testdir = pkgs.writeTextDir "www/info.php" "<?php phpinfo();";
|
testdir = pkgs.writeTextDir "www/info.php" "<?php phpinfo();";
|
||||||
|
|
||||||
in {
|
in {
|
||||||
name = "unit-php-test";
|
name = "unit-php-test";
|
||||||
|
@ -9,37 +9,27 @@ in {
|
||||||
machine = { config, lib, pkgs, ... }: {
|
machine = { config, lib, pkgs, ... }: {
|
||||||
services.unit = {
|
services.unit = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = ''
|
config = pkgs.lib.strings.toJSON {
|
||||||
{
|
listeners."*:9080".application = "php_80";
|
||||||
"listeners": {
|
applications.php_80 = {
|
||||||
"*:9074": {
|
type = "php 8.0";
|
||||||
"application": "php_74"
|
processes = 1;
|
||||||
}
|
user = "testuser";
|
||||||
},
|
group = "testgroup";
|
||||||
"applications": {
|
root = "${testdir}/www";
|
||||||
"php_74": {
|
index = "info.php";
|
||||||
"type": "php 7.4",
|
options.file = "${pkgs.unit.usedPhp80}/lib/php.ini";
|
||||||
"processes": 1,
|
};
|
||||||
"user": "testuser",
|
};
|
||||||
"group": "testgroup",
|
|
||||||
"root": "${testdir}/www",
|
|
||||||
"index": "info.php",
|
|
||||||
"options": {
|
|
||||||
"file": "${pkgs.unit.usedPhp74}/lib/php.ini"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
users = {
|
users = {
|
||||||
users.testuser = {
|
users.testuser = {
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
uid = 1074;
|
uid = 1080;
|
||||||
group = "testgroup";
|
group = "testgroup";
|
||||||
};
|
};
|
||||||
groups.testgroup = {
|
groups.testgroup = {
|
||||||
gid= 1074;
|
gid = 1080;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -47,8 +37,8 @@ in {
|
||||||
machine.wait_for_unit("unit.service")
|
machine.wait_for_unit("unit.service")
|
||||||
|
|
||||||
# Check so we get an evaluated PHP back
|
# Check so we get an evaluated PHP back
|
||||||
response = machine.succeed("curl -f -vvv -s http://127.0.0.1:9074/")
|
response = machine.succeed("curl -f -vvv -s http://127.0.0.1:9080/")
|
||||||
assert "PHP Version ${pkgs.unit.usedPhp74.version}" in response, "PHP version not detected"
|
assert "PHP Version ${pkgs.unit.usedPhp80.version}" in response, "PHP version not detected"
|
||||||
|
|
||||||
# Check so we have database and some other extensions loaded
|
# Check so we have database and some other extensions loaded
|
||||||
for ext in ["json", "opcache", "pdo_mysql", "pdo_pgsql", "pdo_sqlite"]:
|
for ext in ["json", "opcache", "pdo_mysql", "pdo_pgsql", "pdo_sqlite"]:
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, libX11, cairo, lv2, pkg-config, libsndfile }:
|
{ lib, stdenv, fetchFromGitHub, libX11, cairo, lv2, pkg-config, libsndfile }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "BJumblr";
|
pname = "bjumblr";
|
||||||
version = "1.6.6";
|
version = "1.6.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "sjaehn";
|
owner = "sjaehn";
|
||||||
repo = pname;
|
repo = "BJumblr";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1nbxi54023vck3qgmr385cjzinmdnvz62ywb6bcksmc3shl080mg";
|
sha256 = "1nbxi54023vck3qgmr385cjzinmdnvz62ywb6bcksmc3shl080mg";
|
||||||
};
|
};
|
||||||
|
|
28
third_party/nixpkgs/pkgs/applications/audio/boops/default.nix
vendored
Normal file
28
third_party/nixpkgs/pkgs/applications/audio/boops/default.nix
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ stdenv, lib, fetchFromGitHub, xorg, cairo, lv2, libsndfile, pkg-config }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "boops";
|
||||||
|
version = "1.6.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sjaehn";
|
||||||
|
repo = "BOops";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-7eNvt8PxIZCp83Y5XX5fBolBon4j+HPtu8wrgG8Miok=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
buildInputs = [
|
||||||
|
xorg.libX11 cairo lv2 libsndfile
|
||||||
|
];
|
||||||
|
|
||||||
|
installFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/sjaehn/BOops";
|
||||||
|
description = "Sound glitch effect sequencer LV2 plugin";
|
||||||
|
maintainers = [ maintainers.magnetophon ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,12 +1,12 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
|
{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "BSEQuencer";
|
pname = "bsequencer";
|
||||||
version = "1.8.8";
|
version = "1.8.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "sjaehn";
|
owner = "sjaehn";
|
||||||
repo = pname;
|
repo = "BSEQuencer";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-OArIMf0XP9CKDdb3H4s8jMzVRjoLFQDPmTS9rS2KW3w=";
|
sha256 = "sha256-OArIMf0XP9CKDdb3H4s8jMzVRjoLFQDPmTS9rS2KW3w=";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
|
{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "BShapr";
|
pname = "bshapr";
|
||||||
version = "0.12";
|
version = "0.12";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "sjaehn";
|
owner = "sjaehn";
|
||||||
repo = pname;
|
repo = "BShapr";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-2DySlD5ZTxeQ2U++Dr67bek5oVbAiOHCxM6S5rTTZN0=";
|
sha256 = "sha256-2DySlD5ZTxeQ2U++Dr67bek5oVbAiOHCxM6S5rTTZN0=";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
|
{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "BSlizr";
|
pname = "bslizr";
|
||||||
version = "1.2.14";
|
version = "1.2.14";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "sjaehn";
|
owner = "sjaehn";
|
||||||
repo = pname;
|
repo = "BSlizr";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-dut3I68tJWQH+X6acKROqb5HywufeBQ4/HkXFKsA3hY=";
|
sha256 = "sha256-dut3I68tJWQH+X6acKROqb5HywufeBQ4/HkXFKsA3hY=";
|
||||||
};
|
};
|
||||||
|
|
76
third_party/nixpkgs/pkgs/applications/audio/diopser/default.nix
vendored
Normal file
76
third_party/nixpkgs/pkgs/applications/audio/diopser/default.nix
vendored
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
|
||||||
|
, libjack2, alsaLib, freetype, libX11, libXrandr, libXinerama, libXext, libXcursor
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
# Derived from subprojects/function2.wrap
|
||||||
|
function2 = rec {
|
||||||
|
version = "4.1.0";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Naios";
|
||||||
|
repo = "function2";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-JceZU8ZvtYhFheh8BjMvjjZty4hcYxHEK+IIo5X4eSk=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
juce = rec {
|
||||||
|
version = "unstable-2021-04-07";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "juce-framework";
|
||||||
|
repo = "JUCE";
|
||||||
|
rev = "1a5fb5992a1a4e28e998708ed8dce2cc864a30d7";
|
||||||
|
sha256= "1ri7w4sz3sy5xilibg53ls9526fx7jwbv8rc54ccrqfhxqyin308";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
pname = "diopser";
|
||||||
|
version = "unstable-2021-5-13";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "robbert-vdh";
|
||||||
|
repo = pname;
|
||||||
|
fetchSubmodules = true;
|
||||||
|
rev = "d5fdc92f1caf5a828e071dac99e106e58f06d84d";
|
||||||
|
sha256 = "06y1h895yxh44gp4vxzrna59lf7nlfw7aacd3kk4l1g56jhy9pdx";
|
||||||
|
};
|
||||||
|
|
||||||
|
postUnpack = ''
|
||||||
|
(
|
||||||
|
cd "$sourceRoot"
|
||||||
|
cp -R --no-preserve=mode,ownership ${function2.src} function2
|
||||||
|
cp -R --no-preserve=mode,ownership ${juce.src} JUCE
|
||||||
|
sed -i 's@CPMAddPackage("gh:juce-framework/JUCE.*@add_subdirectory(JUCE)@g' CMakeLists.txt
|
||||||
|
sed -i 's@CPMAddPackage("gh:Naios/function2.*@add_subdirectory(function2)@g' CMakeLists.txt
|
||||||
|
patchShebangs .
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/lib/vst3
|
||||||
|
cp -r Diopser_artefacts/Release/VST3/Diopser.vst3 $out/lib/vst3
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libjack2 alsaLib freetype libX11 libXrandr libXinerama libXext
|
||||||
|
libXcursor
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DCMAKE_AR=${stdenv.cc.cc}/bin/gcc-ar"
|
||||||
|
"-DCMAKE_RANLIB=${stdenv.cc.cc}/bin/gcc-ranlib"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A totally original phase rotation plugin";
|
||||||
|
homepage = "https://github.com/robbert-vdh/diopser";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ magnetophon ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -20,13 +20,13 @@ with lib.strings;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
version = "unstable-2020-08-27";
|
version = "2.30.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "grame-cncm";
|
owner = "grame-cncm";
|
||||||
repo = "faust";
|
repo = "faust";
|
||||||
rev = "c10f316fa90f338e248787ebf55e3795c3a0d70e";
|
rev = version;
|
||||||
sha256 = "068pm04ddafbsj2r8akdpqyzb0m8mp9ql0rgi83hcqs4ndr8v7sb";
|
sha256 = "0cs52w4rwaj5d8pjak4cxsg02sxvx4y07592nc3ck81clqjmszmm";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,22 +1,24 @@
|
||||||
{ lib, stdenv, fetchFromGitHub
|
{ lib, stdenv, fetchFromGitHub
|
||||||
, llvm, qt48Full, qrencode, libmicrohttpd_0_9_70, libjack2, alsaLib, faust, curl
|
, llvm_10, qt5, qrencode, libmicrohttpd, libjack2, alsaLib, faust, curl
|
||||||
, bc, coreutils, which, libsndfile, pkg-config
|
, bc, coreutils, which, libsndfile, pkg-config, libxcb
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "faustlive";
|
pname = "faustlive";
|
||||||
version = "unstable-dev-2020-08-03";
|
version = "2.5.5";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "grame-cncm";
|
owner = "grame-cncm";
|
||||||
repo = "faustlive";
|
repo = "faustlive";
|
||||||
rev = "c16565dc1b616ac0aad7c303c1997fa9e57177ab";
|
rev = version;
|
||||||
sha256 = "1ys661lp1xwz21vy12kwkg248jvjq1z9w433knkh0ldyy2igvmd5";
|
sha256 = "0qbn05nq170ckycwalkk5fppklc4g457mapr7p7ryrhc1hwzffm9";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config qt5.wrapQtAppsHook ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
llvm qt48Full qrencode libmicrohttpd_0_9_70 libjack2 alsaLib faust curl
|
llvm_10 qt5.qtbase qrencode libmicrohttpd libjack2 alsaLib faust curl
|
||||||
bc coreutils which libsndfile pkg-config
|
bc coreutils which libsndfile libxcb
|
||||||
];
|
];
|
||||||
|
|
||||||
makeFlags = [ "PREFIX=$(out)" ];
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
@ -39,5 +41,6 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
homepage = "https://faust.grame.fr/";
|
homepage = "https://faust.grame.fr/";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ magnetophon ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
39
third_party/nixpkgs/pkgs/applications/audio/faustPhysicalModeling/default.nix
vendored
Normal file
39
third_party/nixpkgs/pkgs/applications/audio/faustPhysicalModeling/default.nix
vendored
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{ stdenv, lib, fetchFromGitHub, faust2jaqt, faust2lv2 }:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "faustPhysicalModeling";
|
||||||
|
version = "2.20.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "grame-cncm";
|
||||||
|
repo = "faust";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1mm93ba26b7q69hvabzalg30dh8pl858nj4m2bb57pznnp09lq9a";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ faust2jaqt faust2lv2 ];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
cd examples/physicalModeling
|
||||||
|
|
||||||
|
for f in *MIDI.dsp; do
|
||||||
|
faust2jaqt -time -vec -double -midi -nvoices 16 -t 99999 $f
|
||||||
|
faust2lv2 -time -vec -double -gui -nvoices 16 -t 99999 $f
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/lib/lv2 $out/bin
|
||||||
|
mv *.lv2/ $out/lib/lv2
|
||||||
|
for f in $(find . -executable -type f); do
|
||||||
|
cp $f $out/bin/
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "The physical models included with faust compiled as jack standalone and lv2 instruments";
|
||||||
|
homepage = "https://github.com/grame-cncm/faust/tree/master-dev/examples/physicalModeling";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ magnetophon ];
|
||||||
|
};
|
||||||
|
}
|
39
third_party/nixpkgs/pkgs/applications/audio/faustStk/default.nix
vendored
Normal file
39
third_party/nixpkgs/pkgs/applications/audio/faustStk/default.nix
vendored
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{ stdenv, lib, fetchFromGitHub, faust2jaqt, faust2lv2 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "faustPhhysicalModeling";
|
||||||
|
version = "2.20.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "grame-cncm";
|
||||||
|
repo = "faust";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1mm93ba26b7q69hvabzalg30dh8pl858nj4m2bb57pznnp09lq9a";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ faust2jaqt faust2lv2 ];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
cd examples/physicalModeling/faust-stk
|
||||||
|
|
||||||
|
for f in *.dsp; do
|
||||||
|
faust2jaqt -time -vec -midi -nvoices 8 -t 99999 $f
|
||||||
|
faust2lv2 -time -vec -double -gui -nvoices 32 -t 99999 $f
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/lib/lv2 $out/bin
|
||||||
|
mv *.lv2/ $out/lib/lv2
|
||||||
|
for f in $(find . -executable -type f); do
|
||||||
|
cp $f $out/bin/
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
meta = with lib; {
|
||||||
|
description = "The physical modeling instruments included with faust, compiled as jack standalone and lv2 instruments";
|
||||||
|
homepage = "https://ccrma.stanford.edu/~rmichon/faustSTK/";
|
||||||
|
license = licenses.stk;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ magnetophon ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -12,13 +12,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gwc";
|
pname = "gwc";
|
||||||
version = "0.22-04";
|
version = "0.22-05";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "AlisterH";
|
owner = "AlisterH";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0xvfra32dchnnyf9kj5s5xmqhln8jdrc9f0040hjr2dsb58y206p";
|
sha256 = "sha256-FHKu5qAyRyMxXdWYTCeAc6Q4J+NOaU1SGgoTbe0PiFE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{ lib
|
{ lib
|
||||||
, fetchFromGitLab
|
, fetchFromGitLab
|
||||||
|
, makeDesktopItem
|
||||||
|
, copyDesktopItems
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, clang
|
, clang
|
||||||
|
@ -23,11 +25,19 @@ rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
cargoSha256 = "sha256-uNTSU06Fz/ud04K40e98rb7o/uAht0DsiJOXeHX72vw=";
|
cargoSha256 = "sha256-uNTSU06Fz/ud04K40e98rb7o/uAht0DsiJOXeHX72vw=";
|
||||||
|
|
||||||
nativeBuildInputs = [ clang pkg-config ];
|
nativeBuildInputs = [ clang copyDesktopItems pkg-config ];
|
||||||
buildInputs = [ glib gtk4 pipewire ];
|
buildInputs = [ glib gtk4 pipewire ];
|
||||||
|
|
||||||
LIBCLANG_PATH = "${libclang.lib}/lib";
|
LIBCLANG_PATH = "${libclang.lib}/lib";
|
||||||
|
|
||||||
|
desktopItems = makeDesktopItem {
|
||||||
|
name = "Helvum";
|
||||||
|
exec = pname;
|
||||||
|
desktopName = "Helvum";
|
||||||
|
genericName = "Helvum";
|
||||||
|
categories = "AudioVideo;";
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A GTK patchbay for pipewire";
|
description = "A GTK patchbay for pipewire";
|
||||||
homepage = "https://gitlab.freedesktop.org/ryuukyu/helvum";
|
homepage = "https://gitlab.freedesktop.org/ryuukyu/helvum";
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
pname = "plexamp";
|
pname = "plexamp";
|
||||||
version = "3.4.6";
|
version = "3.4.7";
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://plexamp.plex.tv/plexamp.plex.tv/desktop/Plexamp-${version}.AppImage";
|
url = "https://plexamp.plex.tv/plexamp.plex.tv/desktop/Plexamp-${version}.AppImage";
|
||||||
name="${pname}-${version}.AppImage";
|
name="${pname}-${version}.AppImage";
|
||||||
sha512 = "M2iLJxpufycxnUfdn9f85l47W8HCsi/K0SPVsxyyaeKloV3g6yTyOg1luMwHBLDeXEKwR9jtuvPlIMNyBCFm8w==";
|
sha512 = "+jmx4X9KiK1Tv2Cjb/445MY9G2b7pLdKxFtBFMaQwRhqTItA33MfHqKBwmytmbEhxhy0LDTU2woJvEMPQCmnvg==";
|
||||||
};
|
};
|
||||||
|
|
||||||
appimageContents = appimageTools.extractType2 {
|
appimageContents = appimageTools.extractType2 {
|
||||||
|
@ -34,7 +34,7 @@ in appimageTools.wrapType2 {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A beautiful Plex music player for audiophiles, curators, and hipsters";
|
description = "A beautiful Plex music player for audiophiles, curators, and hipsters";
|
||||||
homepage = "https://plexamp.com/";
|
homepage = "https://plexamp.com/";
|
||||||
changelog = "https://forums.plex.tv/t/plexamp-release-notes/221280/28";
|
changelog = "https://forums.plex.tv/t/plexamp-release-notes/221280/29";
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
maintainers = with maintainers; [ killercup synthetica ];
|
maintainers = with maintainers; [ killercup synthetica ];
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" ];
|
||||||
|
|
35
third_party/nixpkgs/pkgs/applications/audio/songrec/default.nix
vendored
Normal file
35
third_party/nixpkgs/pkgs/applications/audio/songrec/default.nix
vendored
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, gtk3
|
||||||
|
, openssl
|
||||||
|
, alsaLib
|
||||||
|
, pkg-config
|
||||||
|
, ffmpeg
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "songrec";
|
||||||
|
version = "0.1.8";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "marin-m";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-6siGLegNgvLdP7engwpKmhzWYqBXcMsfaXhJJ1tIqJg=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-H4qJYcFjip71EVTGw50goj0HjKN9fmjQZqQDhaSKlaQ=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [ alsaLib gtk3 openssl ffmpeg ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "An open-source Shazam client for Linux, written in Rust";
|
||||||
|
homepage = "https://github.com/marin-m/SongRec";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ tcbravo ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "stochas";
|
pname = "stochas";
|
||||||
version = "1.3.4";
|
version = "1.3.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "surge-synthesizer";
|
owner = "surge-synthesizer";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0b26mbj727dnygavz4kihnhmnnvwsr9l145w6kydq7bd7nwiw7lq";
|
sha256 = "1z8q53qfigw6wwbvpca92b9pf9d0mv3nyb0fmszz5ikj3pcybi7m";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -14,14 +14,14 @@ stdenv.mkDerivation rec {
|
||||||
# this is what upstream calls the package, see:
|
# this is what upstream calls the package, see:
|
||||||
# https://github.com/ryukau/LV2Plugins#uhhyou-plugins-lv2
|
# https://github.com/ryukau/LV2Plugins#uhhyou-plugins-lv2
|
||||||
pname = "uhhyou.lv2";
|
pname = "uhhyou.lv2";
|
||||||
version = "unstable-2020-07-31";
|
version = "unstable-2021-02-08";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ryukau";
|
owner = "ryukau";
|
||||||
repo = "LV2Plugins";
|
repo = "LV2Plugins";
|
||||||
rev = "6189be67acaeb95452f8adab73a731d94a7b6f47";
|
rev = "df67460fc344f94db4306d4ee21e4207e657bbee";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
sha256 = "049gigx2s89z8vf17gscs00c150lmcdwya311nbrwa18fz4bx242";
|
sha256 = "1a23av35cw26zgq93yzmmw35084hsj29cb7sb04j2silv5qisila";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config python3 ];
|
nativeBuildInputs = [ pkg-config python3 ];
|
||||||
|
@ -31,8 +31,7 @@ stdenv.mkDerivation rec {
|
||||||
makeFlags = [ "PREFIX=$(out)" ];
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
prePatch = ''
|
prePatch = ''
|
||||||
patchShebangs generate-ttl.sh
|
patchShebangs generate-ttl.sh patch.sh patch/apply.sh
|
||||||
cp patch/NanoVG.cpp lib/DPF/dgl/src/NanoVG.cpp
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
@ -41,6 +40,7 @@ stdenv.mkDerivation rec {
|
||||||
description = "Audio plugins for Linux";
|
description = "Audio plugins for Linux";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Plugin List:
|
Plugin List:
|
||||||
|
- CollidingCombSynth
|
||||||
- CubicPadSynth
|
- CubicPadSynth
|
||||||
- EnvelopedSine
|
- EnvelopedSine
|
||||||
- EsPhaser
|
- EsPhaser
|
||||||
|
|
39
third_party/nixpkgs/pkgs/applications/blockchains/charge-lnd/default.nix
vendored
Normal file
39
third_party/nixpkgs/pkgs/applications/blockchains/charge-lnd/default.nix
vendored
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib, fetchFromGitHub, python3Packages }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "charge-lnd";
|
||||||
|
version = "0.1.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "accumulator";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1m1ic69aj2vlnjlp4ckan8n67r01nfysvq4w6nny32wjkr0zvphr";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
aiorpcx
|
||||||
|
colorama
|
||||||
|
googleapis-common-protos
|
||||||
|
grpcio
|
||||||
|
protobuf
|
||||||
|
six
|
||||||
|
termcolor
|
||||||
|
];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
install README.md charge.config.example -Dt $out/share/doc/charge-lnd
|
||||||
|
'';
|
||||||
|
|
||||||
|
doInstallCheck = true;
|
||||||
|
installCheckPhase = ''
|
||||||
|
$out/bin/charge-lnd --help > /dev/null
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Simple policy-based fee manager for lightning network daemon";
|
||||||
|
homepage = "https://github.com/accumulator/charge-lnd";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ mmilata ];
|
||||||
|
};
|
||||||
|
}
|
36
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/apheleia/default.nix
vendored
Normal file
36
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/apheleia/default.nix
vendored
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ stdenv, fetchFromGitHub, emacs, lib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "apheleia";
|
||||||
|
version = "2021-05-23";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "raxod502";
|
||||||
|
repo = "apheleia";
|
||||||
|
rev = "f865c165dac606187a66b2b25a57d5099b452120";
|
||||||
|
sha256 = "sha256-n37jJsNOGhSjUtQysG3NVIjjayhbOa52iTXBc8SyKXE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ emacs ];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
emacs -L . --batch -f batch-byte-compile *.el
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -d $out/share/emacs/site-lisp
|
||||||
|
install *.el *.elc $out/share/emacs/site-lisp
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Reformat buffer stably";
|
||||||
|
homepage = "https://github.com/raxod502/apheleia";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ leungbk ];
|
||||||
|
platforms = emacs.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
46
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/evil-markdown/default.nix
vendored
Normal file
46
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/evil-markdown/default.nix
vendored
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
{ stdenv, fetchFromGitHub, emacs, emacsPackages, lib }:
|
||||||
|
|
||||||
|
let
|
||||||
|
runtimeDeps = with emacsPackages; [
|
||||||
|
evil
|
||||||
|
markdown-mode
|
||||||
|
];
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "evil-markdown";
|
||||||
|
version = "2020-06-01";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Somelauw";
|
||||||
|
repo = "evil-markdown";
|
||||||
|
rev = "064fe9b4767470472356d20bdd08e2f30ebbc9ac";
|
||||||
|
sha256 = "sha256-Kt2wxG1XCFowavVWtj0urM/yURKegonpZcxTy/+CrJY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
emacs
|
||||||
|
] ++ runtimeDeps;
|
||||||
|
|
||||||
|
propagatedUserEnvPkgs = runtimeDeps;
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
emacs -L . --batch -f batch-byte-compile *.el
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -d $out/share/emacs/site-lisp
|
||||||
|
install *.el *.elc $out/share/emacs/site-lisp
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Vim-like keybindings for markdown-mode";
|
||||||
|
homepage = "https://github.com/Somelauw/evil-markdown";
|
||||||
|
license = lib.licenses.gpl3Plus;
|
||||||
|
maintainers = with lib.maintainers; [ leungbk ];
|
||||||
|
platforms = emacs.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
36
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/git-undo/default.nix
vendored
Normal file
36
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/git-undo/default.nix
vendored
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ stdenv, fetchFromGitHub, emacs, lib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "git-undo";
|
||||||
|
version = "2019-10-13";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jwiegley";
|
||||||
|
repo = "git-undo-el";
|
||||||
|
rev = "cf31e38e7889e6ade7d2d2b9f8719fd44f52feb5";
|
||||||
|
sha256 = "sha256-cVkK9EF6qQyVV3uVqnBEjF8e9nEx/8ixnM8PvxqCyYE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ emacs ];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
emacs -L . --batch -f batch-byte-compile *.el
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -d $out/share/emacs/site-lisp
|
||||||
|
install *.el *.elc $out/share/emacs/site-lisp
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Revert region to most recent Git-historical version";
|
||||||
|
homepage = "https://github.com/jwiegley/git-undo-el";
|
||||||
|
license = lib.licenses.gpl2Plus;
|
||||||
|
maintainers = with lib.maintainers; [ leungbk ];
|
||||||
|
platforms = emacs.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
36
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/isearch-plus/default.nix
vendored
Normal file
36
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/isearch-plus/default.nix
vendored
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ stdenv, fetchFromGitHub, emacs, lib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "isearch-plus";
|
||||||
|
version = "2021-01-01";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "emacsmirror";
|
||||||
|
repo = "isearch-plus";
|
||||||
|
rev = "376a8f9f8a9666d7e61d125abcdb645847cb8619";
|
||||||
|
sha256 = "sha256-Kd5vpu+mI1tJPcsu7EpnnBcPVdVAijkAeTz+bLB3WlQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ emacs ];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
emacs -L . --batch -f batch-byte-compile *.el
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -d $out/share/emacs/site-lisp
|
||||||
|
install *.el *.elc $out/share/emacs/site-lisp
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Extensions to isearch";
|
||||||
|
homepage = "https://www.emacswiki.org/emacs/download/isearch%2b.el";
|
||||||
|
license = lib.licenses.gpl2Plus;
|
||||||
|
maintainers = with lib.maintainers; [ leungbk ];
|
||||||
|
platforms = emacs.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
36
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/isearch-prop/default.nix
vendored
Normal file
36
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/isearch-prop/default.nix
vendored
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ stdenv, fetchFromGitHub, emacs, lib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "isearch-prop";
|
||||||
|
version = "2019-05-01";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "emacsmirror";
|
||||||
|
repo = "isearch-prop";
|
||||||
|
rev = "4a2765f835dd115d472142da05215c4c748809f4";
|
||||||
|
sha256 = "sha256-A1Kt4nm7iRV9J5yaLupwiNL5g7ddZvQs79dggmqZ7Rk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ emacs ];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
emacs -L . --batch -f batch-byte-compile *.el
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -d $out/share/emacs/site-lisp
|
||||||
|
install *.el *.elc $out/share/emacs/site-lisp
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Search text- or overlay-property contexts";
|
||||||
|
homepage = "https://www.emacswiki.org/emacs/download/isearch-prop.el";
|
||||||
|
license = lib.licenses.gpl3Plus;
|
||||||
|
maintainers = with lib.maintainers; [ leungbk ];
|
||||||
|
platforms = emacs.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
|
@ -65,11 +65,15 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
apheleia = callPackage ./apheleia {};
|
||||||
|
|
||||||
emacspeak = callPackage ./emacspeak {};
|
emacspeak = callPackage ./emacspeak {};
|
||||||
|
|
||||||
ess-R-object-popup =
|
ess-R-object-popup =
|
||||||
callPackage ./ess-R-object-popup { };
|
callPackage ./ess-R-object-popup { };
|
||||||
|
|
||||||
|
evil-markdown = callPackage ./evil-markdown { };
|
||||||
|
|
||||||
font-lock-plus = callPackage ./font-lock-plus { };
|
font-lock-plus = callPackage ./font-lock-plus { };
|
||||||
|
|
||||||
ghc-mod = melpaBuild {
|
ghc-mod = melpaBuild {
|
||||||
|
@ -88,6 +92,8 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
git-undo = callPackage ./git-undo { };
|
||||||
|
|
||||||
haskell-unicode-input-method = melpaBuild {
|
haskell-unicode-input-method = melpaBuild {
|
||||||
pname = "emacs-haskell-unicode-input-method";
|
pname = "emacs-haskell-unicode-input-method";
|
||||||
version = "20110905.2307";
|
version = "20110905.2307";
|
||||||
|
@ -111,6 +117,10 @@
|
||||||
|
|
||||||
helm-words = callPackage ./helm-words { };
|
helm-words = callPackage ./helm-words { };
|
||||||
|
|
||||||
|
isearch-plus = callPackage ./isearch-plus { };
|
||||||
|
|
||||||
|
isearch-prop = callPackage ./isearch-prop { };
|
||||||
|
|
||||||
jam-mode = callPackage ./jam-mode { };
|
jam-mode = callPackage ./jam-mode { };
|
||||||
|
|
||||||
llvm-mode = trivialBuild {
|
llvm-mode = trivialBuild {
|
||||||
|
@ -177,6 +187,8 @@
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mu4e-patch = callPackage ./mu4e-patch { };
|
||||||
|
|
||||||
org-mac-link =
|
org-mac-link =
|
||||||
callPackage ./org-mac-link { };
|
callPackage ./org-mac-link { };
|
||||||
|
|
||||||
|
@ -206,6 +218,8 @@
|
||||||
|
|
||||||
tramp = callPackage ./tramp { };
|
tramp = callPackage ./tramp { };
|
||||||
|
|
||||||
|
youtube-dl = callPackage ./youtube-dl { };
|
||||||
|
|
||||||
zeitgeist = callPackage ./zeitgeist { };
|
zeitgeist = callPackage ./zeitgeist { };
|
||||||
|
|
||||||
# From old emacsPackages (pre emacsPackagesNg)
|
# From old emacsPackages (pre emacsPackagesNg)
|
||||||
|
|
38
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/mu4e-patch/default.nix
vendored
Normal file
38
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/mu4e-patch/default.nix
vendored
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ stdenv, fetchFromGitHub, emacs, lib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "mu4e-patch";
|
||||||
|
version = "2019-05-09";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "seanfarley";
|
||||||
|
repo = "mu4e-patch";
|
||||||
|
rev = "522da46c1653b1cacc79cde91d6534da7ae9517d";
|
||||||
|
sha256 = "sha256-1lV4dDuCdyCUXi/In2DzYJPEHuAc9Jfbz2ZecNZwn4I=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
emacs
|
||||||
|
];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
emacs -L . --batch -f batch-byte-compile *.el
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -d $out/share/emacs/site-lisp
|
||||||
|
install *.el *.elc $out/share/emacs/site-lisp
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Colorize patch emails in mu4e";
|
||||||
|
homepage = "https://github.com/seanfarley/mu4e-patch";
|
||||||
|
license = lib.licenses.gpl3Plus;
|
||||||
|
maintainers = with lib.maintainers; [ leungbk ];
|
||||||
|
platforms = emacs.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
36
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/youtube-dl/default.nix
vendored
Normal file
36
third_party/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/youtube-dl/default.nix
vendored
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ stdenv, fetchFromGitHub, emacs, lib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "youtube-dl";
|
||||||
|
version = "2018-10-12";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "skeeto";
|
||||||
|
repo = "youtube-dl-emacs";
|
||||||
|
rev = "af877b5bc4f01c04fccfa7d47a2c328926f20ef4";
|
||||||
|
sha256 = "sha256-Etl95rcoRACDPjcTPQqYK2L+w8OZbOrTrRT0JadMdH4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ emacs ];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
emacs -L . --batch -f batch-byte-compile *.el
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -d $out/share/emacs/site-lisp
|
||||||
|
install *.el *.elc $out/share/emacs/site-lisp
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Emacs frontend to the youtube-dl utility";
|
||||||
|
homepage = "https://github.com/skeeto/youtube-dl-emacs";
|
||||||
|
license = lib.licenses.unlicense;
|
||||||
|
maintainers = with lib.maintainers; [ leungbk ];
|
||||||
|
platforms = emacs.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
26
third_party/nixpkgs/pkgs/applications/misc/avell-unofficial-control-center/default.nix
vendored
Normal file
26
third_party/nixpkgs/pkgs/applications/misc/avell-unofficial-control-center/default.nix
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ lib, fetchFromGitHub, python3Packages }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "avell-unofficial-control-center";
|
||||||
|
version = "1.0.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rodgomesc";
|
||||||
|
repo = "avell-unofficial-control-center";
|
||||||
|
# https://github.com/rodgomesc/avell-unofficial-control-center/issues/58
|
||||||
|
rev = "e32e243e31223682a95a719bc58141990eef35e6";
|
||||||
|
sha256 = "1qz1kv7p09nxffndzz9jlkzpfx26ppz66f8603zyamjq9dqdmdin";
|
||||||
|
};
|
||||||
|
|
||||||
|
# No tests included
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [ pyusb elevate ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/rodgomesc/avell-unofficial-control-center";
|
||||||
|
description = "Software for controlling RGB keyboard lights on some gaming laptops that use ITE Device(8291) Rev 0.03";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ rkitover ];
|
||||||
|
};
|
||||||
|
}
|
34
third_party/nixpkgs/pkgs/applications/misc/clifm/default.nix
vendored
Normal file
34
third_party/nixpkgs/pkgs/applications/misc/clifm/default.nix
vendored
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{ stdenv, lib, fetchFromGitHub, libcap, acl, file, readline }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "clifm";
|
||||||
|
version = "1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "leo-arch";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0mf9lrq0l532vyf4ycsikrw8imn4gkavyn3cr42nhjsr1drygrp8";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libcap acl file readline ];
|
||||||
|
|
||||||
|
makeFlags = [
|
||||||
|
"INSTALLPREFIX=${placeholder "out"}/bin"
|
||||||
|
"DESKTOPPREFIX=${placeholder "out"}/share"
|
||||||
|
];
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
mkdir -p $out/bin $out/share
|
||||||
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/leo-arch/clifm";
|
||||||
|
description = "CliFM is a CLI-based, shell-like, and non-curses terminal file manager written in C: simple, fast, extensible, and lightweight as hell";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ vonfry ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "logseq";
|
pname = "logseq";
|
||||||
version = "0.0.16";
|
version = "0.1.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage";
|
url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage";
|
||||||
sha256 = "dmgwFHJRy5qE71naRJKX0HCrVG0qQBOIM9TvCh4j/lY=";
|
sha256 = "1akg3xjbh01nb7l06qpvz3xsjj64kf042xjnapn60jlgg5y34vbm";
|
||||||
name = "${pname}-${version}.AppImage";
|
name = "${pname}-${version}.AppImage";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
, openssl
|
, openssl
|
||||||
, libopus
|
, libopus
|
||||||
, ffmpeg
|
, ffmpeg
|
||||||
|
, wayland
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -47,6 +48,7 @@ stdenv.mkDerivation rec {
|
||||||
openssl
|
openssl
|
||||||
libopus
|
libopus
|
||||||
ffmpeg
|
ffmpeg
|
||||||
|
wayland
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ lib, setuptools, boto3, requests, click, pyyaml, pydantic, buildPythonApplication
|
{ lib, setuptools, boto3, requests, click, pyyaml, pydantic
|
||||||
, pythonOlder, fetchFromGitHub, awscli }:
|
, buildPythonApplication, pythonOlder, installShellFiles, fetchFromGitHub
|
||||||
|
, awscli }:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "nimbo";
|
pname = "nimbo";
|
||||||
|
@ -12,13 +13,20 @@ buildPythonApplication rec {
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1fs28s9ynfxrb4rzba6cmik0kl0q0vkpb4zdappsq62jqf960k24";
|
sha256 = "1fs28s9ynfxrb4rzba6cmik0kl0q0vkpb4zdappsq62jqf960k24";
|
||||||
};
|
};
|
||||||
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
propagatedBuildInputs = [ setuptools boto3 awscli requests click pyyaml pydantic ];
|
propagatedBuildInputs = [ setuptools boto3 awscli requests click pyyaml pydantic ];
|
||||||
|
|
||||||
# nimbo tests require an AWS instance
|
# nimbo tests require an AWS instance
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "nimbo" ];
|
pythonImportsCheck = [ "nimbo" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
installShellCompletion --cmd nimbo \
|
||||||
|
--zsh <(_NIMBO_COMPLETE=source_zsh $out/bin/nimbo) \
|
||||||
|
--bash <(_NIMBO_COMPLETE=source_bash $out/bin/nimbo) \
|
||||||
|
--fish <(_NIMBO_COMPLETE=source_fish $out/bin/nimbo)
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Run machine learning jobs on AWS with a single command";
|
description = "Run machine learning jobs on AWS with a single command";
|
||||||
homepage = "https://github.com/nimbo-sh/nimbo";
|
homepage = "https://github.com/nimbo-sh/nimbo";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, mkDerivation, fetchFromGitLab, qmake, libusb1, hidapi, pkg-config }:
|
{ lib, mkDerivation, fetchFromGitLab, qmake, libusb1, hidapi, pkg-config, coreutils }:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "openrgb";
|
pname = "openrgb";
|
||||||
|
@ -15,11 +15,18 @@ mkDerivation rec {
|
||||||
buildInputs = [ libusb1 hidapi ];
|
buildInputs = [ libusb1 hidapi ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp openrgb $out/bin
|
cp openrgb $out/bin
|
||||||
|
|
||||||
|
substituteInPlace 60-openrgb.rules \
|
||||||
|
--replace /bin/chmod "${coreutils}/bin/chmod"
|
||||||
|
|
||||||
mkdir -p $out/etc/udev/rules.d
|
mkdir -p $out/etc/udev/rules.d
|
||||||
cp 60-openrgb.rules $out/etc/udev/rules.d
|
cp 60-openrgb.rules $out/etc/udev/rules.d
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
|
@ -27,13 +34,11 @@ mkDerivation rec {
|
||||||
HOME=$TMPDIR $out/bin/openrgb --help > /dev/null
|
HOME=$TMPDIR $out/bin/openrgb --help > /dev/null
|
||||||
'';
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Open source RGB lighting control";
|
description = "Open source RGB lighting control";
|
||||||
homepage = "https://gitlab.com/CalcProgrammer1/OpenRGB";
|
homepage = "https://gitlab.com/CalcProgrammer1/OpenRGB";
|
||||||
maintainers = with maintainers; [ jonringer ];
|
maintainers = with maintainers; [ jonringer ];
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,6 @@ let
|
||||||
curl
|
curl
|
||||||
filter
|
filter
|
||||||
iconv
|
iconv
|
||||||
json
|
|
||||||
mbstring
|
mbstring
|
||||||
openssl
|
openssl
|
||||||
simplexml
|
simplexml
|
||||||
|
|
27
third_party/nixpkgs/pkgs/applications/misc/sfm/default.nix
vendored
Normal file
27
third_party/nixpkgs/pkgs/applications/misc/sfm/default.nix
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, conf ? null }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "sfm";
|
||||||
|
version = "0.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "afify";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-i4WzYaJKityIt+LPWCbd6UsPBaYoaS397l5BInOXQQA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
configFile = lib.optionalString (conf!=null) (lib.writeText "config.def.h" conf);
|
||||||
|
|
||||||
|
postPatch = lib.optionalString (conf!=null) "cp ${configFile} config.def.h";
|
||||||
|
|
||||||
|
installFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Simple file manager";
|
||||||
|
homepage = "https://github.com/afify/sfm";
|
||||||
|
license = licenses.isc;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ sikmir ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -18,22 +18,22 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"beta": {
|
"beta": {
|
||||||
"version": "91.0.4472.77",
|
"version": "92.0.4515.40",
|
||||||
"sha256": "0c8vj3gq3nmb7ssiwj6875g0a8hcprss1a4gqw9h7llqywza9ma5",
|
"sha256": "1v0vmnzdqq7d2rqp1sam8nk7z20xg5l9lnlpqjxj30y8k37gzh8p",
|
||||||
"sha256bin64": "1fmarrvkvfj0hgnz4qqx7b45pwkdpagfj2s2hznnanq5q5p9vay0",
|
"sha256bin64": "0i3plysx51n2gsm5vbf9666rz73pqbbns7v09wznbbncvw9zngrf",
|
||||||
"deps": {
|
"deps": {
|
||||||
"gn": {
|
"gn": {
|
||||||
"version": "2021-04-06",
|
"version": "2021-05-07",
|
||||||
"url": "https://gn.googlesource.com/gn",
|
"url": "https://gn.googlesource.com/gn",
|
||||||
"rev": "dba01723a441c358d843a575cb7720d54ddcdf92",
|
"rev": "39a87c0b36310bdf06b692c098f199a0d97fc810",
|
||||||
"sha256": "199xkks67qrn0xa5fhp24waq2vk8qb78a96cb3kdd8v1hgacgb8x"
|
"sha256": "0x63jr5hssm9dl6la4q5ahy669k4gxvbapqxi5w32vv107jrj8v4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dev": {
|
"dev": {
|
||||||
"version": "92.0.4515.40",
|
"version": "93.0.4530.5",
|
||||||
"sha256": "1v0vmnzdqq7d2rqp1sam8nk7z20xg5l9lnlpqjxj30y8k37gzh8p",
|
"sha256": "0xxnn9fbwgmfk0zz5an35na1zprhas487pbg2qpgg76g50zxnsx5",
|
||||||
"sha256bin64": "12kfzgg0fhlrvr3ci1gzsn5rzdwr4dc2k3sj45j4dn7wnrjlpmbx",
|
"sha256bin64": "14fzmfhaiish91byg7knr9nf2cigklfvy145vc7qhg17b6gzba25",
|
||||||
"deps": {
|
"deps": {
|
||||||
"gn": {
|
"gn": {
|
||||||
"version": "2021-05-07",
|
"version": "2021-05-07",
|
||||||
|
|
|
@ -2,29 +2,40 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "starboard";
|
pname = "starboard";
|
||||||
version = "0.10.1";
|
version = "0.10.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "aquasecurity";
|
owner = "aquasecurity";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-cDqZo0GTpvvkEiccP42u9X2ydHkSBuoD8Zfp+i+/qjo=";
|
sha256 = "sha256-SJogepww3IJt+NAkJ0G/lLgZ3rMWDTC+jHIrzzkzJGA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-noK4fF9wCP1dYfDgmJVZehcF+eunzP+d9n1SiPO9UEU=";
|
vendorSha256 = "sha256-vNsYGlcVIj/cDijCFz8fG5Ht/s7koM62GV8zkOyA/fA=";
|
||||||
|
|
||||||
subPackages = [ "cmd/starboard" ];
|
# Don't build and check the integration tests
|
||||||
|
excludedPackages = "itest";
|
||||||
|
|
||||||
doCheck = false;
|
preBuild = ''
|
||||||
|
buildFlagsArray+=("-ldflags" "-s -w -X main.version=v${version}")
|
||||||
|
'';
|
||||||
|
|
||||||
buildFlagsArray = [
|
preCheck = ''
|
||||||
"-ldflags="
|
# Remove test that requires networking
|
||||||
"-s"
|
rm pkg/plugin/aqua/client/client_integration_test.go
|
||||||
"-w"
|
'';
|
||||||
"-X main.version=v${version}"
|
|
||||||
];
|
doInstallCheck = true;
|
||||||
|
installCheckPhase = ''
|
||||||
|
runHook preInstallCheck
|
||||||
|
$out/bin/starboard --help
|
||||||
|
$out/bin/starboard version | grep "v${version}"
|
||||||
|
runHook postInstallCheck
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/aquasecurity/starboard";
|
||||||
|
changelog = "https://github.com/aquasecurity/starboard/releases/tag/v${version}";
|
||||||
description = "Kubernetes-native security tool kit";
|
description = "Kubernetes-native security tool kit";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Starboard integrates security tools into the Kubernetes environment, so
|
Starboard integrates security tools into the Kubernetes environment, so
|
||||||
|
@ -35,7 +46,6 @@ buildGoModule rec {
|
||||||
plug-in that make security reports available through familiar Kubernetes
|
plug-in that make security reports available through familiar Kubernetes
|
||||||
tools.
|
tools.
|
||||||
'';
|
'';
|
||||||
homepage = src.meta.homepage;
|
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ jk ];
|
maintainers = with maintainers; [ jk ];
|
||||||
};
|
};
|
||||||
|
|
|
@ -607,6 +607,13 @@
|
||||||
"sha256": "1nq7k8qa7rv8xyryjigwpwcwvj1sw85c4j46rkfdv70b6js25jz3",
|
"sha256": "1nq7k8qa7rv8xyryjigwpwcwvj1sw85c4j46rkfdv70b6js25jz3",
|
||||||
"version": "0.3.0"
|
"version": "0.3.0"
|
||||||
},
|
},
|
||||||
|
"metal": {
|
||||||
|
"owner": "equinix",
|
||||||
|
"repo": "terraform-provider-metal",
|
||||||
|
"rev": "v2.1.0",
|
||||||
|
"sha256": "06i3rj6ig8hxbncdpa8b11v8pr3zhi90ppmf77jjin1114ikd172",
|
||||||
|
"version": "2.1.0"
|
||||||
|
},
|
||||||
"metalcloud": {
|
"metalcloud": {
|
||||||
"owner": "terraform-providers",
|
"owner": "terraform-providers",
|
||||||
"repo": "terraform-provider-metalcloud",
|
"repo": "terraform-provider-metalcloud",
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "terragrunt";
|
pname = "terragrunt";
|
||||||
version = "0.29.4";
|
version = "0.29.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "gruntwork-io";
|
owner = "gruntwork-io";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-/LWzUVZAr4zw8mekcHybNuqe0wv4ZU8UcE0oGxq6jqY=";
|
sha256 = "sha256-zHfY1pl9r9N1Jx9TzbOFYt2VR9hvHWcdFhPc36Q3apE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-qlSCQtiGHmlk3DyETMoQbbSYhuUSZTsvAnBKuDJI8x8=";
|
vendorSha256 = "sha256-qlSCQtiGHmlk3DyETMoQbbSYhuUSZTsvAnBKuDJI8x8=";
|
||||||
|
|
|
@ -2,17 +2,17 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "waypoint";
|
pname = "waypoint";
|
||||||
version = "0.3.2";
|
version = "0.4.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "hashicorp";
|
owner = "hashicorp";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-57DHImPYVFK+MXWGeArvc5fwHmqa3zodLytfDoAxglo=";
|
sha256 = "sha256-yeD7XtcB/2ph6cCnOcv0yFQqvAMPDLXMrUWWkgmBUaA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
deleteVendor = true;
|
deleteVendor = true;
|
||||||
vendorSha256 = "sha256-HxrY35SqfUbT6VCCXkLUjAsxgtMzpOeoicAGLwD2OyA=";
|
vendorSha256 = "sha256-xZGYPh3Yp3g22GraYfMESVpp7j5fOZASUEvN4YaDd1g=";
|
||||||
|
|
||||||
nativeBuildInputs = [ go-bindata installShellFiles ];
|
nativeBuildInputs = [ go-bindata installShellFiles ];
|
||||||
|
|
||||||
|
@ -31,6 +31,9 @@ buildGoModule rec {
|
||||||
local INSTALL="$out/bin/waypoint"
|
local INSTALL="$out/bin/waypoint"
|
||||||
install -D waypoint $out/bin/waypoint
|
install -D waypoint $out/bin/waypoint
|
||||||
|
|
||||||
|
# waypoint's completion install command alters your <something>rc files
|
||||||
|
# below is the equivalent of what it injects
|
||||||
|
|
||||||
# Write to a file as it doesn't like EOF within <()
|
# Write to a file as it doesn't like EOF within <()
|
||||||
cat > waypoint.fish <<EOF
|
cat > waypoint.fish <<EOF
|
||||||
function __complete_waypoint
|
function __complete_waypoint
|
||||||
|
|
|
@ -24,7 +24,8 @@ in python.pkgs.buildPythonPackage {
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace requirements.txt \
|
substituteInPlace requirements.txt \
|
||||||
--replace "aiohttp==3.6.2" "aiohttp>=3.6.2"
|
--replace "aiohttp==3.6.2" "aiohttp>=3.6.2" \
|
||||||
|
--replace "py-cpuinfo==7.0.0" "py-cpuinfo>=8.0.0"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = with python.pkgs; [
|
propagatedBuildInputs = with python.pkgs; [
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
, alsaLib, at-spi2-atk, at-spi2-core, atk, cairo, cups, dbus, expat, fontconfig
|
, alsaLib, at-spi2-atk, at-spi2-core, atk, cairo, cups, dbus, expat, fontconfig
|
||||||
, freetype, gdk-pixbuf, glib, gtk3, libcxx, libdrm, libnotify, libpulseaudio, libuuid
|
, freetype, gdk-pixbuf, glib, gtk3, libcxx, libdrm, libnotify, libpulseaudio, libuuid
|
||||||
, libX11, libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext
|
, libX11, libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext
|
||||||
, libXfixes, libXi, libXrandr, libXrender, libXtst, libxcb
|
, libXfixes, libXi, libXrandr, libXrender, libXtst, libxcb, libxshmfence
|
||||||
, mesa, nspr, nss, pango, systemd, libappindicator-gtk3, libdbusmenu
|
, mesa, nspr, nss, pango, systemd, libappindicator-gtk3, libdbusmenu
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ in stdenv.mkDerivation rec {
|
||||||
libXScrnSaver
|
libXScrnSaver
|
||||||
libXtst
|
libXtst
|
||||||
libxcb
|
libxcb
|
||||||
|
libxshmfence
|
||||||
mesa
|
mesa
|
||||||
nss
|
nss
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
|
|
|
@ -27,10 +27,10 @@ in {
|
||||||
pname = "discord-canary";
|
pname = "discord-canary";
|
||||||
binaryName = "DiscordCanary";
|
binaryName = "DiscordCanary";
|
||||||
desktopName = "Discord Canary";
|
desktopName = "Discord Canary";
|
||||||
version = "0.0.123";
|
version = "0.0.124";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://dl-canary.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz";
|
url = "https://dl-canary.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz";
|
||||||
sha256 = "0bijwfsd9s4awqkgxd9c2cxh7y5r06vix98qjp0dkv63r6jig8ch";
|
sha256 = "060ypr9rn5yl8iwh4v3ax1v6501yaq72sx50q47sm0wyxn7gpv91";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}.${branch}
|
}.${branch}
|
||||||
|
|
|
@ -1,18 +1,33 @@
|
||||||
{ lib, mkFranzDerivation, fetchurl }:
|
{ lib, mkFranzDerivation, fetchurl, xorg, xdg-utils, buildEnv, writeShellScriptBin }:
|
||||||
|
|
||||||
mkFranzDerivation rec {
|
let
|
||||||
|
mkFranzDerivation' = mkFranzDerivation.override {
|
||||||
|
xdg-utils = buildEnv {
|
||||||
|
name = "xdg-utils-for-ferdi";
|
||||||
|
paths = [
|
||||||
|
xdg-utils
|
||||||
|
(lib.hiPrio (writeShellScriptBin "xdg-open" ''
|
||||||
|
unset GDK_BACKEND
|
||||||
|
exec ${xdg-utils}/bin/xdg-open "$@"
|
||||||
|
''))
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in
|
||||||
|
mkFranzDerivation' rec {
|
||||||
pname = "ferdi";
|
pname = "ferdi";
|
||||||
name = "Ferdi";
|
name = "Ferdi";
|
||||||
version = "5.6.0-beta.5";
|
version = "5.6.0-beta.6";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/getferdi/ferdi/releases/download/v${version}/ferdi_${version}_amd64.deb";
|
url = "https://github.com/getferdi/ferdi/releases/download/v${version}/ferdi_${version}_amd64.deb";
|
||||||
sha256 = "sha256-fDUzYir53OQ3O4o9eG70sGD+FJ0/4SDNsTfh97WFRnQ=";
|
sha256 = "sha256-Q1HSAEVcaxFyOq7oWqa6AJJpsBKRxbsKb9ydyK/gH/A=";
|
||||||
};
|
};
|
||||||
|
extraBuildInputs = [ xorg.libxshmfence ];
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Combine your favorite messaging services into one application";
|
description = "Combine your favorite messaging services into one application";
|
||||||
homepage = "https://getferdi.com/";
|
homepage = "https://getferdi.com/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = [ maintainers.davidtwco ];
|
maintainers = with maintainers; [ davidtwco ma27 ];
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" ];
|
||||||
hydraPlatforms = [ ];
|
hydraPlatforms = [ ];
|
||||||
};
|
};
|
||||||
|
|
|
@ -28,7 +28,8 @@
|
||||||
|
|
||||||
# Helper function for building a derivation for Franz and forks.
|
# Helper function for building a derivation for Franz and forks.
|
||||||
|
|
||||||
{ pname, name, version, src, meta }:
|
{ pname, name, version, src, meta, extraBuildInputs ? [] }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
inherit pname version src meta;
|
inherit pname version src meta;
|
||||||
|
|
||||||
|
@ -36,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||||
dontPatchELF = true;
|
dontPatchELF = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ autoPatchelfHook makeWrapper wrapGAppsHook dpkg ];
|
nativeBuildInputs = [ autoPatchelfHook makeWrapper wrapGAppsHook dpkg ];
|
||||||
buildInputs = (with xorg; [
|
buildInputs = extraBuildInputs ++ (with xorg; [
|
||||||
libXi
|
libXi
|
||||||
libXcursor
|
libXcursor
|
||||||
libXdamage
|
libXdamage
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "matrix-commander";
|
pname = "matrix-commander";
|
||||||
version = "unstable-2021-04-18";
|
version = "unstable-2021-05-26";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "8go";
|
owner = "8go";
|
||||||
repo = "matrix-commander";
|
repo = "matrix-commander";
|
||||||
rev = "3e89a5f4c98dd191880ae371cc63eb9282d7d91f";
|
rev = "06b4738bc74ee86fb3ac88c04b8230abf82e7421";
|
||||||
sha256 = "08nwwszp1kv5b7bgf6mmfn42slxkyhy98x18xbn4pglc4bj32iql";
|
sha256 = "1skpq3xfnz11m298qnsw68xv391p5qg47flagzsk86pnzi841vc1";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -35,7 +35,7 @@ stdenv.mkDerivation {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Simple but convenient CLI-based Matrix client app for sending and receiving";
|
description = "Simple but convenient CLI-based Matrix client app for sending and receiving";
|
||||||
homepage = "https://github.com/8go/matrix-commander";
|
homepage = "https://github.com/8go/matrix-commander";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.seb314 ];
|
maintainers = [ maintainers.seb314 ];
|
||||||
};
|
};
|
||||||
|
|
|
@ -21,8 +21,11 @@ in mkRambox rec {
|
||||||
description = "Free and Open Source messaging and emailing app that combines common web applications into one";
|
description = "Free and Open Source messaging and emailing app that combines common web applications into one";
|
||||||
homepage = "https://rambox.pro";
|
homepage = "https://rambox.pro";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ ma27 ];
|
maintainers = with maintainers; [ ];
|
||||||
platforms = ["i686-linux" "x86_64-linux"];
|
platforms = ["i686-linux" "x86_64-linux"];
|
||||||
hydraPlatforms = [];
|
hydraPlatforms = [];
|
||||||
|
knownVulnerabilities = [
|
||||||
|
"Electron 7.2.4 is EOL and contains at least the following vulnerabilities: CVE-2020-6458, CVE-2020-6460 and more (https://www.electronjs.org/releases/stable?version=7). Consider using an alternative such as `ferdi'."
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@ let
|
||||||
else "");
|
else "");
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
pname = "signal-desktop";
|
pname = "signal-desktop";
|
||||||
version = "5.3.0"; # Please backport all updates to the stable channel.
|
version = "5.4.0"; # Please backport all updates to the stable channel.
|
||||||
# All releases have a limited lifetime and "expire" 90 days after the release.
|
# All releases have a limited lifetime and "expire" 90 days after the release.
|
||||||
# When releases "expire" the application becomes unusable until an update is
|
# When releases "expire" the application becomes unusable until an update is
|
||||||
# applied. The expiration date for the current release can be extracted with:
|
# applied. The expiration date for the current release can be extracted with:
|
||||||
|
@ -38,7 +38,7 @@ in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb";
|
url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb";
|
||||||
sha256 = "15lclxw3njih90zlh2n90v8ljg0wnglw5w8jrpa7rbd789yagvq7";
|
sha256 = "046xy033ars70ay5ryj39i5053py00xj92ajdg212pamq415z1zb";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue