Simon Bruder
10b8d432d5
This applies the REUSE specification to the repository, so the licensing information can be tracked for every file individually.
15 lines
337 B
Nix
15 lines
337 B
Nix
# SPDX-FileCopyrightText: 2021 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{ osu-lazer }:
|
|
osu-lazer.overrideAttrs (o: o // {
|
|
# DOS line endings
|
|
patchFlags = [ "--binary" "-p1" ];
|
|
|
|
patches = [
|
|
./0001-Disable-deployed-build.patch
|
|
./0002-Remove-random-song-button-from-footer.patch
|
|
];
|
|
})
|