Merge pull request #236406 from minijackson/carla-2.5.5

carla: 2.5.4 -> 2.5.5
This commit is contained in:
Weijia Wang 2023-06-08 00:50:29 +03:00 committed by GitHub
commit ceb12798ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,15 +24,15 @@
assert withQt -> qtbase != null;
assert withQt -> wrapQtAppsHook != null;
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "carla";
version = "2.5.4";
version = "2.5.5";
src = fetchFromGitHub {
owner = "falkTX";
repo = pname;
rev = "v${version}";
hash = "sha256-St0+avF9/UzQj8T1eZq5HSmxnaK9+BXSuufyX0NJYbU=";
repo = finalAttrs.pname;
rev = "v${finalAttrs.version}";
hash = "sha256-kXQ0dv4KrwvfxdP73zimof9XKpAz5E6hQrFOjLG4hKU=";
};
nativeBuildInputs = [
@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
++ lib.optional withGtk2 gtk2
++ lib.optional withGtk3 gtk3;
propagatedBuildInputs = pythonPath;
propagatedBuildInputs = finalAttrs.pythonPath;
enableParallelBuilding = true;
@ -100,4 +100,4 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.minijackson ];
platforms = platforms.linux;
};
}
})