Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
66 lines
1.5 KiB
Nix
66 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
love,
|
|
lua,
|
|
makeWrapper,
|
|
makeDesktopItem,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "duckmarines";
|
|
version = "1.0c";
|
|
|
|
icon = fetchurl {
|
|
url = "http://tangramgames.dk/img/thumb/duckmarines.png";
|
|
sha256 = "07ypbwqcgqc5f117yxy9icix76wlybp1cmykc8f3ivdps66hl0k5";
|
|
};
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "duckmarines";
|
|
exec = "duckmarines";
|
|
icon = icon;
|
|
comment = "Duck-themed action puzzle video game";
|
|
desktopName = "Duck Marines";
|
|
genericName = "duckmarines";
|
|
categories = [ "Game" ];
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/SimonLarsen/duckmarines/releases/download/v${version}/duckmarines-1.0c.love";
|
|
sha256 = "1rvgpkvi4h9zhc4fwb4knhsa789yjcx4a14fi4vqfdyybhvg5sh9";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [
|
|
lua
|
|
love
|
|
];
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/share/games/lovegames
|
|
|
|
cp -v ${src} $out/share/games/lovegames/duckmarines.love
|
|
|
|
makeWrapper ${love}/bin/love $out/bin/duckmarines --add-flags $out/share/games/lovegames/duckmarines.love
|
|
|
|
chmod +x $out/bin/duckmarines
|
|
mkdir -p $out/share/applications
|
|
ln -s ${desktopItem}/share/applications/* $out/share/applications/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Duck-themed action puzzle video game";
|
|
maintainers = with maintainers; [ leenaars ];
|
|
platforms = platforms.linux;
|
|
hydraPlatforms = [ ];
|
|
license = licenses.free;
|
|
downloadPage = "http://tangramgames.dk/games/duckmarines";
|
|
};
|
|
|
|
}
|