1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00

ignition.common3: 3.15.1 -> 3.16.0

This commit is contained in:
Ben Wolsieffer 2023-11-26 16:02:03 -05:00
parent 205dbc8d53
commit 15e5129b88
2 changed files with 3 additions and 9 deletions

View file

@ -2,6 +2,6 @@
callPackage ./. ({
majorVersion = "3";
version = "3.15.1";
srcHash = "sha256-WhgCwbRgw6y4+LWpjBTauvDLpFbUvA3SJIMF9m9pdPY=";
version = "3.16.0";
srcHash = "sha256-lK3c+aB+46/Pid9vO/gxUh6zicPHf4u2llvwW6KD0Ec=";
} // args)

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config, ignition
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, ignition
, ignition-cmake ? ignition.cmake, ignition-math ? ignition.math
, ignition-utils ? ignition.utils, libuuid, tinyxml-2, freeimage, gts, ffmpeg
, majorVersion ? "4"
@ -18,12 +18,6 @@ stdenv.mkDerivation rec {
hash = srcHash;
};
patches =
lib.optional (majorVersion == "3") (fetchpatch {
url = "https://github.com/gazebosim/gz-common/commit/dedc51888e0af28267a87a2ce888aa4189efacf4.patch";
hash = "sha256-p+EEHIYaxQ0aZ7wMyz/TuDWUQmHfIB4vOPwrUSsZ+DE=";
});
nativeBuildInputs = [ cmake ];
propagatedNativeBuildInputs = [ ignition-cmake ];
buildInputs = [ ignition-math tinyxml-2 ignition-math gts freeimage ffmpeg ]