summary refs log tree commit diff
path: root/pkgs/games/nottetris2/default.nix
diff options
context:
space:
mode:
authorSohalt <sohalt@sohalt.net>2020-05-22 20:40:13 +0200
committerGitHub <noreply@github.com>2020-05-22 20:40:13 +0200
commit002d38783ab0b570b296dadd4ee1ecfad21a9367 (patch)
treeb6472857fb95bd60e2963e00c987eede951d4fc4 /pkgs/games/nottetris2/default.nix
parentfb13a1fc8dab1cbede12904d6c4e6736308aed8f (diff)
downloadnixpkgs-002d38783ab0b570b296dadd4ee1ecfad21a9367.tar
nixpkgs-002d38783ab0b570b296dadd4ee1ecfad21a9367.tar.gz
nixpkgs-002d38783ab0b570b296dadd4ee1ecfad21a9367.tar.bz2
nixpkgs-002d38783ab0b570b296dadd4ee1ecfad21a9367.tar.lz
nixpkgs-002d38783ab0b570b296dadd4ee1ecfad21a9367.tar.xz
nixpkgs-002d38783ab0b570b296dadd4ee1ecfad21a9367.tar.zst
nixpkgs-002d38783ab0b570b296dadd4ee1ecfad21a9367.zip
nottetris2: init at 2.0 (#87028)
Co-authored-by: Yorick <yorickvanpelt@gmail.com>
Diffstat (limited to 'pkgs/games/nottetris2/default.nix')
-rw-r--r--pkgs/games/nottetris2/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/pkgs/games/nottetris2/default.nix b/pkgs/games/nottetris2/default.nix
new file mode 100644
index 00000000000..dde35e4fe32
--- /dev/null
+++ b/pkgs/games/nottetris2/default.nix
@@ -0,0 +1,51 @@
+{ stdenv, fetchFromGitHub, zip, love_0_7, makeWrapper, makeDesktopItem }:
+
+let
+  pname = "nottetris2";
+  version = "2.0";
+
+  desktopItem = makeDesktopItem {
+    name = "nottetris2";
+    exec = pname;
+    comment = "It's like tetris, but it's not";
+    desktopName = "nottetris2";
+    genericName = "nottetris2";
+    categories = "Game";
+  };
+
+in
+
+stdenv.mkDerivation {
+  inherit pname version;
+
+  src = fetchFromGitHub {
+    owner = "Stabyourself";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "17iabh6rr8jim70n96rbhif4xq02g2kppscm8l339yqx6mhb64hs";
+  };
+
+  nativeBuildInputs = [ zip ];
+  buildInputs = [ love_0_7 makeWrapper ];
+
+  phases = [ "unpackPhase" "installPhase" ];
+
+  installPhase =
+  ''
+    mkdir -p $out/bin $out/share/games/lovegames $out/share/applications
+    zip -9 -r ${pname}.love ./*
+    mv ${pname}.love $out/share/games/lovegames/${pname}.love
+    makeWrapper ${love_0_7}/bin/love $out/bin/${pname} --add-flags $out/share/games/lovegames/${pname}.love
+    ln -s ${desktopItem}/share/applications/* $out/share/applications/
+    chmod +x $out/bin/${pname}
+  '';
+
+  meta = with stdenv.lib; {
+    description = "It's like Tetris, but it's not";
+    platforms = platforms.linux;
+    license = licenses.wtfpl;
+    maintainers = with maintainers; [ yorickvp ];
+    downloadPage = "https://stabyourself.net/nottetris2/";
+  };
+
+}