summary refs log tree commit diff
path: root/pkgs/games/vapor
diff options
context:
space:
mode:
authorMichiel Leenaars <ml.software@leenaa.rs>2016-02-28 15:33:21 +0100
committerMichiel Leenaars <ml.software@leenaa.rs>2016-03-05 17:59:30 +0100
commitaf35cd251386806ce5692003067787773f363e39 (patch)
tree296a3f546b04af328587e9a8dd9868799aed7551 /pkgs/games/vapor
parent070dccae7bbb61166fabd7b1cea15c46894ac3aa (diff)
downloadnixpkgs-af35cd251386806ce5692003067787773f363e39.tar
nixpkgs-af35cd251386806ce5692003067787773f363e39.tar.gz
nixpkgs-af35cd251386806ce5692003067787773f363e39.tar.bz2
nixpkgs-af35cd251386806ce5692003067787773f363e39.tar.lz
nixpkgs-af35cd251386806ce5692003067787773f363e39.tar.xz
nixpkgs-af35cd251386806ce5692003067787773f363e39.tar.zst
nixpkgs-af35cd251386806ce5692003067787773f363e39.zip
vapor: init at 0.2.3
Diffstat (limited to 'pkgs/games/vapor')
-rw-r--r--pkgs/games/vapor/default.nix61
1 files changed, 61 insertions, 0 deletions
diff --git a/pkgs/games/vapor/default.nix b/pkgs/games/vapor/default.nix
new file mode 100644
index 00000000000..0209fd83b1c
--- /dev/null
+++ b/pkgs/games/vapor/default.nix
@@ -0,0 +1,61 @@
+{ stdenv, fetchurl, love, lua, makeWrapper, makeDesktopItem }:
+
+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";
+    exec = "${pname}";
+    icon = "${icon}";
+    comment = "LÖVE Distribution Client"; 
+    desktopName = "Vapor";
+    genericName = "vapor";
+    categories = "Game;";
+  };
+
+in 
+
+stdenv.mkDerivation rec {
+  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/
+  '';
+
+  meta = with stdenv.lib; {
+    description = "LÖVE Distribution Client allowing access to many games";
+    platforms = platforms.linux;
+    license = licenses.zlib;
+    maintainers = with maintainers; [ leenaars ];
+    downloadPage = http://vapor.love2d.org/;
+  };
+
+}