summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authormtreca <maxime.treca@gmail.com>2021-03-19 15:08:23 +0100
committerMatthieu Coudron <teto@users.noreply.github.com>2021-03-22 12:17:15 +0100
commitff64acacba6fc39ca73d274e0645149e6018fbc1 (patch)
tree6111186e0119fdacccfde4d7b8862bf07b3ad7d0 /pkgs/applications/science
parente3cc60dfe7dedc7f56d2779a12a321bb68dae87b (diff)
sumo: init at 1.8.0
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/networking/sumo/default.nix68
1 files changed, 68 insertions, 0 deletions
diff --git a/pkgs/applications/science/networking/sumo/default.nix b/pkgs/applications/science/networking/sumo/default.nix
new file mode 100644
index 000000000000..af252da04f81
--- /dev/null
+++ b/pkgs/applications/science/networking/sumo/default.nix
@@ -0,0 +1,68 @@
+{ lib, bzip2, cmake, eigen, fetchFromGitHub, ffmpeg, fox_1_6, gdal,
+ git, gl2ps, gpp , gtest, jdk, libGL, libGLU, libX11, libjpeg,
+ libpng, libtiff, openscenegraph , proj, python3, python37Packages,
+ stdenv, swig, xercesc, xorg, zlib }:
+
+stdenv.mkDerivation rec {
+ pname = "sumo";
+ version = "1.8.0";
+
+ src = fetchFromGitHub {
+ owner = "eclipse";
+ repo = "sumo";
+ rev = "v${lib.replaceStrings ["."] ["_"] version}";
+ sha256 = "1w9im1zz8xnkdwmv4v11kn1xcqm889268g1fw4y2s9f6shi41mxx";
+ fetchSubmodules = true;
+ };
+
+ nativeBuildInputs = [
+ cmake
+ git
+ swig
+ ];
+
+ buildInputs = [
+ bzip2
+ eigen
+ ffmpeg
+ fox_1_6
+ gdal
+ gl2ps
+ gpp
+ gtest
+ jdk
+ libGL
+ libGLU
+ libX11
+ libjpeg
+ libpng
+ libtiff
+ openscenegraph
+ proj
+ python37Packages.setuptools
+ xercesc
+ zlib
+ python3
+ ] ++ (with xorg; [
+ libXcursor
+ libXext
+ libXfixes
+ libXft
+ libXrandr
+ libXrender
+ ]);
+
+ meta = with lib; {
+ description = "The SUMO traffic simulator";
+ longDescription = ''
+ Eclipse SUMO is an open source, highly
+ portable, microscopic and continuous traffic simulation package
+ designed to handle large networks. It allows for intermodal
+ simulation including pedestrians and comes with a large set of
+ tools for scenario creation.
+ '';
+ homepage = "https://github.com/eclipse/sumo";
+ license = licenses.epl20;
+ maintainers = with maintainers; [ mtreca ];
+ };
+}