summary refs log blame commit diff
path: root/pkgs/games/performous/default.nix
blob: faeb11c37812f34c86fc8017baf5566e519c6480 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                    















                                                                    
{ 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;
  };

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