ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / games / soi / default.nix
blobc9d35a08dc236af0907bd7a3ac8a57b8b819a6f1
1 { lib, stdenv, fetchurl, cmake
2 , boost, eigen2, lua, luabind, libGLU, libGL, SDL }:
4 stdenv.mkDerivation rec {
5   pname = "soi";
6   version = "0.1.2";
8   src = fetchurl {
9     url = "mirror://sourceforge/project/soi/Spheres%20of%20Influence-${version}-Source.tar.bz2";
10     name = "${pname}-${version}.tar.bz2";
11     sha256 = "03c3wnvhd42qh8mi68lybf8nv6wzlm1nx16d6pdcn2jzgx1j2lzd";
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = [ boost lua luabind libGLU libGL SDL ];
17   cmakeFlags = [
18     "-DEIGEN_INCLUDE_DIR=${eigen2}/include/eigen2"
19   ];
21   meta = with lib; {
22     description = "A physics-based puzzle game";
23     maintainers = with maintainers; [ raskin ];
24     platforms = platforms.linux;
25     license = licenses.free;
26     downloadPage = "https://sourceforge.net/projects/soi/files/";
27   };