mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
performous: new package
This commit is contained in:
parent
9dff67eed7
commit
159bdd1219
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
|
||||||
|
];
|
||||||
|
}
|
@ -11493,6 +11493,8 @@ let
|
|||||||
|
|
||||||
openxcom = callPackage ../games/openxcom { };
|
openxcom = callPackage ../games/openxcom { };
|
||||||
|
|
||||||
|
performous = callPackage ../games/performous { };
|
||||||
|
|
||||||
pingus = callPackage ../games/pingus {};
|
pingus = callPackage ../games/pingus {};
|
||||||
|
|
||||||
pioneers = callPackage ../games/pioneers { };
|
pioneers = callPackage ../games/pioneers { };
|
||||||
|
Loading…
Reference in New Issue
Block a user