fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv
2, cairo
3, cmake
4, fetchFromGitHub
5, ffmpeg
6, gettext
7, gtk2-x11
8, libGLU_combined
9, openal
10, pkgconfig
11, SDL2
12, sfml
13, wxGTK
14, zip
15, zlib
16}:
17
18stdenv.mkDerivation rec {
19 name = "visualboyadvance-m-${version}";
20 version = "unstable-2017-09-04";
21 src = fetchFromGitHub {
22 owner = "visualboyadvance-m";
23 repo = "visualboyadvance-m";
24 rev = "ceef480";
25 sha256 = "1lpmlj8mv6fwlfg9m58hzggx8ld6cnjvaqx5ka5sffxd9v95qq2l";
26 };
27
28 buildInputs = [
29 cairo
30 cmake
31 ffmpeg
32 gettext
33 gtk2-x11
34 libGLU_combined
35 openal
36 pkgconfig
37 SDL2
38 sfml
39 wxGTK
40 zip
41 zlib
42 ];
43
44 cmakeFlags = [
45 "-DCMAKE_BUILD_TYPE='Release'"
46 "-DENABLE_FFMPEG='true'"
47 #"-DENABLE_LINK='true'" currently broken :/
48 "-DSYSCONFDIR=etc"
49 ];
50
51 meta = {
52 description = "A merge of the original Visual Boy Advance forks";
53 license = stdenv.lib.licenses.gpl2;
54 maintainers = [ stdenv.lib.maintainers.lassulus ];
55 homepage = http://vba-m.com/;
56 platforms = stdenv.lib.platforms.linux;
57 };
58}