summary refs log tree commit diff
path: root/pkgs/games/performous
diff options
context:
space:
mode:
author宋文武 <iyzsong@gmail.com>2014-11-25 21:39:46 +0800
committer宋文武 <iyzsong@gmail.com>2014-11-25 21:39:46 +0800
commit159bdd12192b052ddb39e3c82dd073695dff3581 (patch)
tree0520e1d4b5e8008099c5d4b827b8b49e2a84c644 /pkgs/games/performous
parent9dff67eed7238e338ec28a1d8341b0ce438b2663 (diff)
performous: new package
Diffstat (limited to 'pkgs/games/performous')
-rw-r--r--pkgs/games/performous/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/games/performous/default.nix b/pkgs/games/performous/default.nix
new file mode 100644
index 0000000000000..ff4f370f04a68
--- /dev/null
+++ b/pkgs/games/performous/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext
+, glibmm, libxmlxx, pango, librsvg
+, SDL2, glew, boost, libav, portaudio
+}:
+
+stdenv.mkDerivation {
+  name = "performous-1.0";
+
+  meta = with stdenv.lib; {
+    description = "Karaoke, band and dancing game";
+    homepage    = "http://performous.org/";
+    license     = licenses.gpl2Plus;
+    platforms   = platforms.linux;
+    maintainers = with maintainers; [ iyzsong ];
+  };
+
+  src = fetchFromGitHub {
+    owner = "performous";
+    repo = "performous";
+    rev = "1.0";
+    sha256 = "1wgydwnhadrjkj3mjzrhppfmphrxnqfljs361206imirmvs7s15l";
+  };
+
+  nativeBuildInputs = [ cmake pkgconfig gettext ];
+
+  buildInputs = [
+    glibmm libxmlxx pango librsvg
+    SDL2 glew boost libav portaudio
+  ];
+}