Skip to content

Commit

Permalink
Merge branch 'master' into update-libimobiledevice-drvs
Browse files Browse the repository at this point in the history
  • Loading branch information
Frontear authored Oct 18, 2024
2 parents 01a693d + b0393df commit fa8d0c1
Show file tree
Hide file tree
Showing 11 changed files with 40 additions and 35 deletions.
4 changes: 2 additions & 2 deletions pkgs/by-name/ar/art/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@

stdenv.mkDerivation rec {
pname = "art";
version = "1.23";
version = "1.24.1";

src = fetchFromBitbucket {
owner = "agriggio";
repo = "art";
rev = version;
hash = "sha256-OB/Rr4rHNJc40o6esNPDRbhN4EPGf2zhlzzM+mBpUUU=";
hash = "sha256-uvdqU509ri6CKCEGA8Ln5tMp0pe3r/bcJefbeZGjocE=";
};

nativeBuildInputs = [
Expand Down
29 changes: 15 additions & 14 deletions pkgs/by-name/ma/mapserver/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@

stdenv.mkDerivation rec {
pname = "mapserver";
version = "8.2.1";
version = "8.2.2";

src = fetchFromGitHub {
owner = "MapServer";
repo = "MapServer";
rev = "rel-${lib.replaceStrings [ "." ] [ "-" ] version}";
hash = "sha256-kZEDC89yoQP0ma5avp6r+Hz8JMpErGlBVQkhlHO6UFw=";
hash = "sha256-tub0Jd1IUkONQ5Mqz8urihbrcFLlOQybLhOvzkcwW54=";
};

nativeBuildInputs =
Expand Down Expand Up @@ -70,23 +70,24 @@ stdenv.mkDerivation rec {
] ++ lib.optional withPython python3;

cmakeFlags = [
"-DWITH_KML=ON"
"-DWITH_SOS=ON"
"-DWITH_RSVG=ON"
"-DWITH_CURL=ON"
"-DWITH_CLIENT_WMS=ON"
"-DWITH_CLIENT_WFS=ON"
(lib.cmakeBool "WITH_KML" true)
(lib.cmakeBool "WITH_SOS" true)
(lib.cmakeBool "WITH_RSVG" true)
(lib.cmakeBool "WITH_CURL" true)
(lib.cmakeBool "WITH_CLIENT_WMS" true)
(lib.cmakeBool "WITH_CLIENT_WFS" true)
(lib.cmakeBool "WITH_PYTHON" withPython)

# RPATH of binary /nix/store/.../bin/... contains a forbidden reference to /build/
"-DCMAKE_SKIP_BUILD_RPATH=ON"
] ++ lib.optional withPython "-DWITH_PYTHON=ON";
(lib.cmakeBool "CMAKE_SKIP_BUILD_RPATH" true)
];

meta = with lib; {
meta = {
description = "Platform for publishing spatial data and interactive mapping applications to the web";
homepage = "https://mapserver.org/";
changelog = "https://mapserver.org/development/changelog/";
license = licenses.mit;
maintainers = teams.geospatial.members;
platforms = platforms.unix;
license = lib.licenses.mit;
maintainers = lib.teams.geospatial.members;
platforms = lib.platforms.unix;
};
}
6 changes: 3 additions & 3 deletions pkgs/by-name/pr/prisma/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@

stdenv.mkDerivation (finalAttrs: {
pname = "prisma";
version = "5.21.0";
version = "5.21.1";

src = fetchFromGitHub {
owner = "prisma";
repo = "prisma";
rev = finalAttrs.version;
hash = "sha256-i37Hiawmu/06Mv56FtYkvFGOtqW3x4Q2H1C0JW6/0pI=";
hash = "sha256-75TmTFl1EKLGE3kgghghary4Z2gjEjdguZ//ND3HAkc=";
};

nativeBuildInputs = [
Expand All @@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: {

pnpmDeps = pnpm_8.fetchDeps {
inherit (finalAttrs) pname version src;
hash = "sha256-o6m9Lxg+oqq15CtdA9RQRukdJWPPGtw/SwRyHDUf91A=";
hash = "sha256-fu2SJUn2xKm8lKNE8ncMRuNu6snj1J6cnHrJfzg+hJc=";
};

patchPhase = ''
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/aioairzone/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

buildPythonPackage rec {
pname = "aioairzone";
version = "0.9.4";
version = "0.9.5";
pyproject = true;

disabled = pythonOlder "3.11";
Expand All @@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "Noltari";
repo = "aioairzone";
rev = "refs/tags/${version}";
hash = "sha256-dcYp5lMN5twK1HQK/3PhBQ4nm/NKURC0x14ozkbzJ5A=";
hash = "sha256-LFMHueSz0ddZNYUL0uuC91dw1ppYcdE/EjKX0ikc+J0=";
};

build-system = [ setuptools ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

buildPythonPackage rec {
pname = "home-assistant-bluetooth";
version = "1.12.2";
version = "1.13.0";
pyproject = true;

disabled = pythonOlder "3.11";
Expand All @@ -28,7 +28,7 @@ buildPythonPackage rec {
owner = "home-assistant-libs";
repo = "home-assistant-bluetooth";
rev = "refs/tags/v${version}";
hash = "sha256-WAsgiOmYqmt/PCKp+vZA2To95YZAgnYCF8ysCn5N9nc=";
hash = "sha256-+2bw4im09TyjJ5/7ct42ZCFwU7yKWQnbSo7b+44VtpE=";
};

postPatch = ''
Expand Down
6 changes: 4 additions & 2 deletions pkgs/development/python-modules/pyblu/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,18 @@

buildPythonPackage rec {
pname = "pyblu";
version = "1.0.3";
version = "1.0.4";
pyproject = true;

src = fetchFromGitHub {
owner = "LouisChrist";
repo = "pyblu";
rev = "refs/tags/v${version}";
hash = "sha256-1H7TqFPVstB+nCYwWOT8E2HcmkLQx9pekBq2WIAf8DQ=";
hash = "sha256-BDuptBC72XG+q/5MlbPMjYDIhWKg4gfEo2pLOflwQaM=";
};

pythonRelaxDeps = [ "aiohttp" ];

build-system = [ poetry-core ];

dependencies = [
Expand Down
6 changes: 4 additions & 2 deletions pkgs/development/python-modules/pyipp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@
pytest-asyncio,
pytestCheckHook,
pythonOlder,
syrupy,
yarl,
}:

buildPythonPackage rec {
pname = "pyipp";
version = "0.16.0";
version = "0.17.0";
pyproject = true;

disabled = pythonOlder "3.9";
Expand All @@ -26,7 +27,7 @@ buildPythonPackage rec {
owner = "ctalkington";
repo = "python-ipp";
rev = "refs/tags/${version}";
hash = "sha256-ddI9K0lJDZbVgO+hptP4I+EH//5vOoFDYXWxGALF8Ik=";
hash = "sha256-B3x6WkTSTGlZWMAK2BTA2EVVz+IvB3QL+arZGBAkZsE=";
};

postPatch = ''
Expand All @@ -49,6 +50,7 @@ buildPythonPackage rec {
aresponses
pytest-asyncio
pytestCheckHook
syrupy
];

__darwinAllowLocalNetworking = true;
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/solarlog-cli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

buildPythonPackage rec {
pname = "solarlog-cli";
version = "0.3.1";
version = "0.3.2";
pyproject = true;

disabled = pythonOlder "3.12";
Expand All @@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "dontinelli";
repo = "solarlog_cli";
rev = "refs/tags/v${version}";
hash = "sha256-67ZEval+cRvjFhQynFVYf5FFDw+zWrAfSC/2d6X+oh4=";
hash = "sha256-Oa2o4fuchW3ROtQFVhiWL6rhdUbzSFDegCkm8W7bCpE=";
};

build-system = [ hatchling ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/tools/database/prisma-engines/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
# function correctly.
rustPlatform.buildRustPackage rec {
pname = "prisma-engines";
version = "5.21.0";
version = "5.21.1";

src = fetchFromGitHub {
owner = "prisma";
repo = "prisma-engines";
rev = version;
hash = "sha256-X5aBrnyZ/tMykJFifyY1LeR/nShBlxm9HazVE0L7RJk=";
hash = "sha256-zVGnAFvxBRh7YGXET8YjDI+qXay6StgG618mRfpc4kw=";
};

# Use system openssl.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/servers/home-assistant/component-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Do not edit!

{
version = "2024.10.2";
version = "2024.10.3";
components = {
"3_day_blinds" = ps: with ps; [
];
Expand Down
6 changes: 3 additions & 3 deletions pkgs/servers/home-assistant/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ let
extraBuildInputs = extraPackages python.pkgs;

# Don't forget to run update-component-packages.py after updating
hassVersion = "2024.10.2";
hassVersion = "2024.10.3";

in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
Expand All @@ -426,13 +426,13 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = "refs/tags/${version}";
hash = "sha256-YHK6SJJok1FGtFfD2C2QFCtWzNK1ZiOGZe/kbQFkMvU=";
hash = "sha256-kxxa7FI2wIpE3bEifNyjtEHj7rsuImQvxGd6I46ySqM=";
};

# Secondary source is pypi sdist for translations
sdist = fetchPypi {
inherit pname version;
hash = "sha256-mVKokL6EcvLMvOEKIw1dlEQeXaxMLO8ExMOzw6r1eCs=";
hash = "sha256-DhDdCvov5/Yf2MnY2veV8W/lYk3LTDzxYpbAsbjxWcg=";
};

build-system = with python.pkgs; [
Expand Down

0 comments on commit fa8d0c1

Please sign in to comment.