mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
31 lines
733 B
Nix
31 lines
733 B
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext
|
|
, glibmm, libxmlxx, pango, librsvg
|
|
, SDL2, glew, boost, libav, portaudio, epoxy
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "performous";
|
|
version = "1.1";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Karaoke, band and dancing game";
|
|
homepage = "http://performous.org/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "performous";
|
|
repo = "performous";
|
|
rev = version;
|
|
sha256 = "08j0qhr65l7qnd5vxl4l07523qpvdwi31h4vzl3lfiinx1zcgr4x";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig gettext ];
|
|
|
|
buildInputs = [
|
|
glibmm libxmlxx pango librsvg
|
|
SDL2 glew boost libav portaudio epoxy
|
|
];
|
|
}
|