mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-23 00:34:24 +01:00
18acfd0749
Should make it easier for other repositories to use the overlays from this repository.
17 lines
417 B
Nix
17 lines
417 B
Nix
(final: prev: {
|
|
srb2 = prev.srb2.overrideAttrs (oldAttrs: {
|
|
desktopItems = [
|
|
(prev.makeDesktopItem rec {
|
|
name = "Sonic Robo Blast 2";
|
|
exec = oldAttrs.pname;
|
|
icon = oldAttrs.pname;
|
|
comment = oldAttrs.meta.description;
|
|
desktopName = name;
|
|
genericName = name;
|
|
startupWMClass = ".srb2-wrapped";
|
|
categories = [ "Game" ];
|
|
})
|
|
];
|
|
});
|
|
})
|