9 lines
263 B
Nix
9 lines
263 B
Nix
# SPDX-FileCopyrightText: 2022 Gregor Kleen <gregor.kleen@ifi.lmu.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.nixUnstable.overrideAttrs (oldAttrs: {
|
|
patches = oldAttrs.patches or [] ++ [ ./fix-aws-scheme.patch ];
|
|
})
|