3
0
Fork 0
forked from mirrors/nixpkgs

performous: 1.0 -> 1.1

This commit is contained in:
Kranium Gikos Mendoza 2016-08-21 14:56:11 +08:00
parent 52a875fb23
commit 56ef5aa714

View file

@ -1,10 +1,11 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext { stdenv, fetchFromGitHub, cmake, pkgconfig, gettext
, glibmm, libxmlxx, pango, librsvg , glibmm, libxmlxx, pango, librsvg
, SDL2, glew, boost, libav, portaudio , SDL2, glew, boost, libav, portaudio, epoxy
}: }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "performous-1.0"; name = "performous-${version}";
version = "1.1";
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Karaoke, band and dancing game"; description = "Karaoke, band and dancing game";
@ -16,14 +17,14 @@ stdenv.mkDerivation {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "performous"; owner = "performous";
repo = "performous"; repo = "performous";
rev = "1.0"; rev = version;
sha256 = "1wgydwnhadrjkj3mjzrhppfmphrxnqfljs361206imirmvs7s15l"; sha256 = "08j0qhr65l7qnd5vxl4l07523qpvdwi31h4vzl3lfiinx1zcgr4x";
}; };
nativeBuildInputs = [ cmake pkgconfig gettext ]; nativeBuildInputs = [ cmake pkgconfig gettext ];
buildInputs = [ buildInputs = [
glibmm libxmlxx pango librsvg glibmm libxmlxx pango librsvg
SDL2 glew boost libav portaudio SDL2 glew boost libav portaudio epoxy
]; ];
} }