Merge pull request #232098 from nagy/90sec

_90secondportraits: use copyDesktopItems
This commit is contained in:
Nick Cao 2023-05-16 23:59:59 -06:00 committed by GitHub
commit 60c84c8841
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,51 +1,44 @@
{ lib, stdenv, fetchurl, love, lua, makeWrapper, makeDesktopItem }:
{ lib, stdenv, fetchurl, love, makeWrapper, makeDesktopItem, copyDesktopItems }:
let
pname = "90secondportraits";
version = "1.01b";
icon = fetchurl {
url = "http://tangramgames.dk/img/thumb/90secondportraits.png";
sha256 = "13k6cq8s7jw77j81xfa5ri41445m778q6iqbfplhwdpja03c6faw";
};
desktopItem = makeDesktopItem {
name = "90secondportraits";
exec = pname;
icon = icon;
comment = "A silly speed painting game";
desktopName = "90 Second Portraits";
genericName = "90secondportraits";
categories = [ "Game" ];
};
desktopItems = [
(makeDesktopItem {
name = "90secondportraits";
exec = pname;
icon = icon;
comment = "A silly speed painting game";
desktopName = "90 Second Portraits";
genericName = "90secondportraits";
categories = [ "Game" ];
})
];
in
stdenv.mkDerivation {
name = "${pname}-${version}";
in stdenv.mkDerivation rec {
inherit pname desktopItems;
version = "1.01b";
src = fetchurl {
url = "https://github.com/SimonLarsen/90-Second-Portraits/releases/download/${version}/${pname}-${version}.love";
sha256 = "0jj3k953r6vb02212gqcgqpb4ima87gnqgls43jmylxq2mcm33h5";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ lua love ];
nativeBuildInputs = [ makeWrapper copyDesktopItems ];
dontUnpack = true;
installPhase =
''
mkdir -p $out/bin
mkdir -p $out/share/games/lovegames
cp -v $src $out/share/games/lovegames/${pname}.love
makeWrapper ${love}/bin/love $out/bin/${pname} --add-flags $out/share/games/lovegames/${pname}.love
chmod +x $out/bin/${pname}
mkdir -p $out/share/applications
ln -s ${desktopItem}/share/applications/* $out/share/applications/
installPhase = ''
runHook preInstall
install -Dm444 $src $out/share/games/lovegames/${pname}.love
makeWrapper ${love}/bin/love $out/bin/${pname} \
--add-flags $out/share/games/lovegames/${pname}.love
runHook postInstall
'';
meta = with lib; {