uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
68
pkgs/applications/science/networking/sumo/default.nix
Normal file
68
pkgs/applications/science/networking/sumo/default.nix
Normal file
|
|
@ -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.9.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "eclipse";
|
||||
repo = "sumo";
|
||||
rev = "v${lib.replaceStrings ["."] ["_"] version}";
|
||||
sha256 = "0zpd331vy1kfi4hfiszv3m8wl4m0wdfr3zzza200kkaakw5hjxhs";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
git
|
||||
swig
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
bzip2
|
||||
eigen
|
||||
ffmpeg
|
||||
fox_1_6
|
||||
gdal
|
||||
gl2ps
|
||||
gpp
|
||||
gtest
|
||||
jdk
|
||||
libGL
|
||||
libGLU
|
||||
libjpeg
|
||||
libpng
|
||||
libtiff
|
||||
openscenegraph
|
||||
proj
|
||||
python37Packages.setuptools
|
||||
xercesc
|
||||
zlib
|
||||
python3
|
||||
] ++ (with xorg; [
|
||||
libX11
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue