2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, love, lua, makeWrapper, makeDesktopItem }:
|
2016-02-28 14:33:21 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
pname = "vapor";
|
|
|
|
version = "0.2.3";
|
|
|
|
commitid = "dbf509f";
|
|
|
|
|
|
|
|
icon = fetchurl {
|
|
|
|
url = "http://vapor.love2d.org/sites/default/files/vapT240x90.png";
|
|
|
|
sha256 = "1xlra74lpm1y54z6zm6is0gldkswp3wdw09m6a306ch0xjf3f87f";
|
|
|
|
};
|
|
|
|
|
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "Vapor";
|
2019-09-09 00:38:31 +01:00
|
|
|
exec = pname;
|
|
|
|
icon = icon;
|
2021-01-21 00:55:55 +00:00
|
|
|
comment = "LÖVE Distribution Client";
|
2016-02-28 14:33:21 +00:00
|
|
|
desktopName = "Vapor";
|
|
|
|
genericName = "vapor";
|
|
|
|
categories = "Game;";
|
|
|
|
};
|
|
|
|
|
2021-01-21 00:55:55 +00:00
|
|
|
in
|
2016-02-28 14:33:21 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2016-02-28 14:33:21 +00:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url =
|
|
|
|
"https://github.com/josefnpat/${pname}/releases/download/${version}/${pname}_${commitid}.love";
|
|
|
|
sha256 = "0w2qkrrkzfy4h4jld18apypmbi8a8r89y2l11axlv808i2rg68fk";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ lua love ];
|
|
|
|
|
|
|
|
phases = "installPhase";
|
|
|
|
|
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
mkdir -p $out/share
|
|
|
|
|
|
|
|
cp -v $src $out/share/${pname}.love
|
|
|
|
|
|
|
|
makeWrapper ${love}/bin/love $out/bin/${pname} --add-flags $out/share/${pname}.love
|
|
|
|
|
|
|
|
chmod +x $out/bin/${pname}
|
|
|
|
mkdir -p $out/share/applications
|
|
|
|
ln -s ${desktopItem}/share/applications/* $out/share/applications/
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-02-28 14:33:21 +00:00
|
|
|
description = "LÖVE Distribution Client allowing access to many games";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.zlib;
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
2020-04-01 02:11:51 +01:00
|
|
|
downloadPage = "http://vapor.love2d.org/";
|
2016-02-28 14:33:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|