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, fetchurl, SDL, mesa, erlang}:
2
3stdenv.mkDerivation rec {
4 name = "esdl-1.0.1";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/esdl/${name}.src.tar.gz";
8 sha256 = "0zc7cmr44v10sb593dismdm5qc2v7sm3z9yh22g4r9g6asbg5z0n";
9 };
10
11 buildInputs = [ erlang ];
12 propagatedBuildInputs = [ SDL mesa ];
13
14 preBuild = ''
15 export makeFlags="INSTALLDIR=$out/lib/erlang/addons/${name}";
16 '';
17
18 meta = {
19 homepage = http://esdl.sourceforge.net/;
20 description = "Erlang binding to SDL that includes a binding to OpenGL";
21 license = "BSD";
22 };
23}