torcs: add desktop item

This commit is contained in:
Felix Buehler 2024-02-03 16:19:26 +01:00
parent 237e77803e
commit 77277dd000
1 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,11 @@ stdenv.mkDerivation rec {
})
];
postInstall = ''
install -D -m644 Ticon.png $out/share/pixmaps/torcs.png
install -D -m644 torcs.desktop $out/share/applications/torcs.desktop
'';
postPatch = ''
sed -i -e s,/bin/bash,`type -P bash`, src/linux/torcs.in
'';