performous: 1.0 -> 1.1

+7 -6
+7 -6
pkgs/games/performous/default.nix
··· 1 { stdenv, fetchFromGitHub, cmake, pkgconfig, gettext 2 , glibmm, libxmlxx, pango, librsvg 3 - , SDL2, glew, boost, libav, portaudio 4 }: 5 6 - stdenv.mkDerivation { 7 - name = "performous-1.0"; 8 9 meta = with stdenv.lib; { 10 description = "Karaoke, band and dancing game"; ··· 16 src = fetchFromGitHub { 17 owner = "performous"; 18 repo = "performous"; 19 - rev = "1.0"; 20 - sha256 = "1wgydwnhadrjkj3mjzrhppfmphrxnqfljs361206imirmvs7s15l"; 21 }; 22 23 nativeBuildInputs = [ cmake pkgconfig gettext ]; 24 25 buildInputs = [ 26 glibmm libxmlxx pango librsvg 27 - SDL2 glew boost libav portaudio 28 ]; 29 }
··· 1 { stdenv, fetchFromGitHub, cmake, pkgconfig, gettext 2 , glibmm, libxmlxx, pango, librsvg 3 + , SDL2, glew, boost, libav, portaudio, epoxy 4 }: 5 6 + stdenv.mkDerivation rec { 7 + name = "performous-${version}"; 8 + version = "1.1"; 9 10 meta = with stdenv.lib; { 11 description = "Karaoke, band and dancing game"; ··· 17 src = fetchFromGitHub { 18 owner = "performous"; 19 repo = "performous"; 20 + rev = version; 21 + sha256 = "08j0qhr65l7qnd5vxl4l07523qpvdwi31h4vzl3lfiinx1zcgr4x"; 22 }; 23 24 nativeBuildInputs = [ cmake pkgconfig gettext ]; 25 26 buildInputs = [ 27 glibmm libxmlxx pango librsvg 28 + SDL2 glew boost libav portaudio epoxy 29 ]; 30 }