gerd.teeworlds: add secrets patch + secrets

This commit is contained in:
eyjhb 2024-08-14 12:24:04 +02:00
parent 87f69b6f5a
commit 0c47c0cbe6
Signed by: eyjhb
GPG key ID: 609F508E3239F920
5 changed files with 35 additions and 5 deletions

View file

@ -4,4 +4,15 @@ let
# declare pkgs from sources
pkgs = import sources.nixpkgs { };
in sources // {
nixpkgs = pkgs.applyPatches {
src = sources.nixpkgs;
name = "nixpkgs-patched";
patches = [
# tmp teeworlds fetchpatch to inject secrets
(pkgs.fetchpatch {
url = "https://github.com/NixOS/nixpkgs/pull/334590.patch";
sha256 = "sha256-5Uf/jLV0CJFbWyPmkpF4kEVISvoG+fujvTAFIR0a2ek=";
})
];
};
}