forked from mirrors/nixpkgs
Merge pull request #5124 from iyzsong/performous
performous: new package
This commit is contained in:
commit
35bd5e6d0d
30
pkgs/games/performous/default.nix
Normal file
30
pkgs/games/performous/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext
|
||||
, glibmm, libxmlxx, pango, librsvg
|
||||
, SDL2, glew, boost, libav, portaudio
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "performous-1.0";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Karaoke, band and dancing game";
|
||||
homepage = "http://performous.org/";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ iyzsong ];
|
||||
};
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "performous";
|
||||
repo = "performous";
|
||||
rev = "1.0";
|
||||
sha256 = "1wgydwnhadrjkj3mjzrhppfmphrxnqfljs361206imirmvs7s15l";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig gettext ];
|
||||
|
||||
buildInputs = [
|
||||
glibmm libxmlxx pango librsvg
|
||||
SDL2 glew boost libav portaudio
|
||||
];
|
||||
}
|
|
@ -11509,6 +11509,8 @@ let
|
|||
|
||||
openxcom = callPackage ../games/openxcom { };
|
||||
|
||||
performous = callPackage ../games/performous { };
|
||||
|
||||
pingus = callPackage ../games/pingus {};
|
||||
|
||||
pioneers = callPackage ../games/pioneers { };
|
||||
|
|
Loading…
Reference in a new issue