Merge pull request #5124 from iyzsong/performous

performous: new package
This commit is contained in:
Edward Tjörnhammar 2014-11-25 22:44:59 +01:00
commit 35bd5e6d0d
2 changed files with 32 additions and 0 deletions

View file

@ -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
];
}

View file

@ -11509,6 +11509,8 @@ let
openxcom = callPackage ../games/openxcom { };
performous = callPackage ../games/performous { };
pingus = callPackage ../games/pingus {};
pioneers = callPackage ../games/pioneers { };