Merge branch 'released' into released
This commit is contained in:
commit
c6f4b44888
|
@ -1,10 +1,14 @@
|
||||||
[
|
[
|
||||||
|
"aanderse",
|
||||||
"akru",
|
"akru",
|
||||||
"alyssais",
|
"alyssais",
|
||||||
|
"arianvp",
|
||||||
|
"bbarker",
|
||||||
"bhipple",
|
"bhipple",
|
||||||
"bignaux",
|
"bignaux",
|
||||||
"brainrape",
|
"brainrape",
|
||||||
"costrouc",
|
"costrouc",
|
||||||
|
"danieldk",
|
||||||
"edef1c",
|
"edef1c",
|
||||||
"Ekleog",
|
"Ekleog",
|
||||||
"Enzime",
|
"Enzime",
|
||||||
|
@ -14,6 +18,7 @@
|
||||||
"eqyiel",
|
"eqyiel",
|
||||||
"fgaz",
|
"fgaz",
|
||||||
"florianjacob",
|
"florianjacob",
|
||||||
|
"geistesk",
|
||||||
"grwlf",
|
"grwlf",
|
||||||
"imalsogreg",
|
"imalsogreg",
|
||||||
"jlesquembre",
|
"jlesquembre",
|
||||||
|
@ -38,5 +43,6 @@
|
||||||
"woffs",
|
"woffs",
|
||||||
"worldofpeace",
|
"worldofpeace",
|
||||||
"xeji",
|
"xeji",
|
||||||
|
"yesbox",
|
||||||
"yurrriq"
|
"yurrriq"
|
||||||
]
|
]
|
||||||
|
|
11
shell.nix
11
shell.nix
|
@ -31,7 +31,7 @@ let
|
||||||
# HISTFILE = "${src}/.bash_hist";
|
# HISTFILE = "${src}/.bash_hist";
|
||||||
};
|
};
|
||||||
|
|
||||||
rustEnv = stdenv.mkDerivation rec {
|
rustEnv = stdenv.mkDerivation (rec {
|
||||||
name = "gh-event-forwarder";
|
name = "gh-event-forwarder";
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
bash
|
bash
|
||||||
|
@ -55,12 +55,13 @@ let
|
||||||
|
|
||||||
HISTFILE = "${toString ./.}/.bash_hist";
|
HISTFILE = "${toString ./.}/.bash_hist";
|
||||||
RUSTFLAGS = "-D warnings";
|
RUSTFLAGS = "-D warnings";
|
||||||
LOCALE_ARCHIVE_2_21 = "${oldpkgs.glibcLocales}/lib/locale/locale-archive";
|
|
||||||
LOCALE_ARCHIVE_2_27 = "${pkgs.glibcLocales}/lib/locale/locale-archive";
|
|
||||||
RUST_BACKTRACE = "1";
|
RUST_BACKTRACE = "1";
|
||||||
RUST_LOG = "ofborg=debug";
|
RUST_LOG = "ofborg=debug";
|
||||||
passthru.phpEnv = phpEnv;
|
passthru.phpEnv = phpEnv;
|
||||||
};
|
}
|
||||||
|
// stdenv.lib.optionalAttrs stdenv.isLinux {
|
||||||
|
LOCALE_ARCHIVE_2_21 = "${oldpkgs.glibcLocales}/lib/locale/locale-archive";
|
||||||
|
LOCALE_ARCHIVE_2_27 = "${pkgs.glibcLocales}/lib/locale/locale-archive";
|
||||||
|
});
|
||||||
|
|
||||||
in rustEnv
|
in rustEnv
|
||||||
|
|
Loading…
Reference in a new issue