mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-23 00:34:24 +01:00
17 lines
415 B
Nix
17 lines
415 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" ];
|
|
})
|
|
];
|
|
});
|
|
}
|