10 lines
255 B
Nix
10 lines
255 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ pkgs, ... }:
|
|
pkgs.deluge.overrideAttrs ({ patches ? [], ... }: {
|
|
patches = patches ++ [
|
|
./deluge-web-try-empty-login-first.patch
|
|
];
|
|
})
|