performous: 1.0 -> 1.1
This commit is contained in:
parent
52a875fb23
commit
56ef5aa714
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user