summary refs log blame commit diff
path: root/pkgs/games/performous/default.nix
blob: 28487a7f8e8a3985726e5ba9754fbea97b62810d (plain) (tree)
1
2
3
4
5
6
7
8

                                                    
                                            

  
                         
                       
                  





                                                   




                         

                                                                    





                                                  
                                         

    
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext
, glibmm, libxmlxx, pango, librsvg
, SDL2, glew, boost, libav, portaudio, epoxy
}:

stdenv.mkDerivation rec {
  pname = "performous";
  version = "1.1";

  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 = version;
    sha256 = "08j0qhr65l7qnd5vxl4l07523qpvdwi31h4vzl3lfiinx1zcgr4x";
  };

  nativeBuildInputs = [ cmake pkgconfig gettext ];

  buildInputs = [
    glibmm libxmlxx pango librsvg
    SDL2 glew boost libav portaudio epoxy
  ];
}