nixpkgs/pkgs/games/performous/default.nix

31 lines
743 B
Nix
Raw Normal View History

2014-11-25 13:39:46 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext
, glibmm, libxmlxx, pango, librsvg
2016-08-21 06:56:11 +00:00
, SDL2, glew, boost, libav, portaudio, epoxy
2014-11-25 13:39:46 +00:00
}:
2016-08-21 06:56:11 +00:00
stdenv.mkDerivation rec {
name = "performous-${version}";
version = "1.1";
2014-11-25 13:39:46 +00:00
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";
2016-08-21 06:56:11 +00:00
rev = version;
sha256 = "08j0qhr65l7qnd5vxl4l07523qpvdwi31h4vzl3lfiinx1zcgr4x";
2014-11-25 13:39:46 +00:00
};
nativeBuildInputs = [ cmake pkgconfig gettext ];
buildInputs = [
glibmm libxmlxx pango librsvg
2016-08-21 06:56:11 +00:00
SDL2 glew boost libav portaudio epoxy
2014-11-25 13:39:46 +00:00
];
}