nixos-config/pkgs/osu-lazer/default.nix
Simon Bruder cb3401ff87
osu-lazer: Rebase patches
This also modifies how the patches are applied, since nixpkgs does not
apply any patches any more.
2021-08-07 13:22:16 +02:00

11 lines
226 B
Nix

{ 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
];
})