nixpkgs/pkgs/games/duckmarines/default.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, love, lua, makeWrapper, makeDesktopItem }:
2016-02-27 15:09:18 +00:00
2021-06-22 21:44:58 +00:00
stdenv.mkDerivation rec {
2016-02-27 15:09:18 +00:00
pname = "duckmarines";
2017-10-27 20:26:09 +00:00
version = "1.0c";
2016-02-27 15:09:18 +00:00
icon = fetchurl {
url = "http://tangramgames.dk/img/thumb/duckmarines.png";
sha256 = "07ypbwqcgqc5f117yxy9icix76wlybp1cmykc8f3ivdps66hl0k5";
};
desktopItem = makeDesktopItem {
name = "duckmarines";
2019-09-08 23:38:31 +00:00
exec = pname;
icon = icon;
2016-02-27 15:09:18 +00:00
comment = "Duck-themed action puzzle video game";
desktopName = "Duck Marines";
genericName = "duckmarines";
categories = "Game;";
};
src = fetchurl {
url = "https://github.com/SimonLarsen/${pname}/releases/download/v${version}/${pname}-1.0c.love";
sha256 = "1rvgpkvi4h9zhc4fwb4knhsa789yjcx4a14fi4vqfdyybhvg5sh9";
2016-02-27 15:09:18 +00:00
};
nativeBuildInputs = [ makeWrapper ];
2016-02-27 15:09:18 +00:00
buildInputs = [ lua love ];
phases = [ "installPhase" ];
2016-02-27 15:09:18 +00:00
installPhase =
''
mkdir -p $out/bin
mkdir -p $out/share/games/lovegames
cp -v ${src} $out/share/games/lovegames/${pname}.love
2016-02-27 15:09:18 +00:00
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/
'';
meta = with lib; {
2016-02-27 15:09:18 +00:00
description = "Duck-themed action puzzle video game";
maintainers = with maintainers; [ leenaars ];
platforms = platforms.linux;
hydraPlatforms = [];
2016-02-27 15:09:18 +00:00
license = licenses.free;
downloadPage = "http://tangramgames.dk/games/duckmarines";
2016-02-27 15:09:18 +00:00
};
}