nixpkgs/pkgs/applications/science/networking/sumo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.5 KiB
Nix
Raw Normal View History

2021-03-19 17:08:23 +03:00
{ lib, bzip2, cmake, eigen, fetchFromGitHub, ffmpeg, fox_1_6, gdal,
git, gl2ps, gpp , gtest, jdk, libGL, libGLU, libX11, libjpeg,
2022-09-29 18:41:13 +03:00
libpng, libtiff, libxcrypt, openscenegraph , proj, python3,
2023-01-03 06:37:57 +03:00
python3Packages, stdenv, swig, xercesc, xorg, zlib }:
2021-03-19 17:08:23 +03:00
stdenv.mkDerivation rec {
pname = "sumo";
2021-06-29 12:24:41 +03:00
version = "1.9.2";
2021-03-19 17:08:23 +03:00
src = fetchFromGitHub {
owner = "eclipse";
repo = "sumo";
rev = "v${lib.replaceStrings ["."] ["_"] version}";
2021-06-29 12:24:41 +03:00
sha256 = "0zpd331vy1kfi4hfiszv3m8wl4m0wdfr3zzza200kkaakw5hjxhs";
2021-03-19 17:08:23 +03:00
fetchSubmodules = true;
};
nativeBuildInputs = [
cmake
git
swig
];
buildInputs = [
bzip2
eigen
ffmpeg
fox_1_6
gdal
gl2ps
gpp
gtest
jdk
libGL
libGLU
libjpeg
libpng
libtiff
2022-09-29 18:41:13 +03:00
libxcrypt
2021-03-19 17:08:23 +03:00
openscenegraph
proj
2023-01-03 06:37:57 +03:00
python3Packages.setuptools
2021-03-19 17:08:23 +03:00
xercesc
zlib
python3
] ++ (with xorg; [
2021-06-29 12:24:41 +03:00
libX11
2021-03-19 17:08:23 +03:00
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 ];
};
}