Merge master into staging-next

This commit is contained in:
nixpkgs-ci[bot]
2025-10-07 06:06:32 +00:00
committed by GitHub
5 changed files with 40 additions and 12 deletions
@@ -85,13 +85,13 @@ in
stdenv.mkDerivation (finalAttrs: {
pname = "imagemagick";
version = "7.1.2-4";
version = "7.1.2-5";
src = fetchFromGitHub {
owner = "ImageMagick";
repo = "ImageMagick";
tag = finalAttrs.version;
hash = "sha256-FOai96rtDWFQZ8vest0pDl6m2swQwXp7hVO2sZa1U2A=";
hash = "sha256-THStvhNWu4OYotzxksGJ6l6VeTVRNoJeKoRG1LaJhNI=";
};
outputs = [
+8 -5
View File
@@ -3,20 +3,23 @@
stdenv,
fetchFromGitHub,
testers,
zig_0_14,
zig_0_15,
}:
let
zig = zig_0_15;
in
stdenv.mkDerivation (finalAttrs: {
pname = "findup";
version = "1.1.3";
version = "2.0.0";
src = fetchFromGitHub {
owner = "booniepepper";
repo = "findup";
rev = "v${finalAttrs.version}";
hash = "sha256-ZrwEOWoXo1RnujroQDGAv4vqRD0ZSyzo8MEnIbHFrY4=";
tag = "v${finalAttrs.version}";
hash = "sha256-6/rQ4xNfzJQwJgrpvFRuirqlx6fVn7sLXfVRFsG3fUw=";
};
nativeBuildInputs = [ zig_0_14.hook ];
nativeBuildInputs = [ zig.hook ];
passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
+2 -2
View File
@@ -6,13 +6,13 @@
buildGoModule rec {
pname = "tile38";
version = "1.36.3";
version = "1.36.5";
src = fetchFromGitHub {
owner = "tidwall";
repo = "tile38";
tag = version;
hash = "sha256-pz7fB5lg27z3edrExLPe8Vff0OocH/TvtO2Pztmwnzk=";
hash = "sha256-+Kon202vDefi4kq7IB1WQU5FfvVJ7CxX1LT7W0HYGeI=";
};
vendorHash = "sha256-YiivAh7aXeVuvI9V1ayvqjJ658Hu8/1icvRbqq2QeI0=";
@@ -21,14 +21,14 @@
buildPythonPackage {
pname = "notobuilder";
version = "0-unstable-2025-08-20";
version = "0-unstable-2025-09-29";
pyproject = true;
src = fetchFromGitHub {
owner = "notofonts";
repo = "notobuilder";
rev = "fb0d6067beee888e6132b50c227da1f051b1ef9f";
hash = "sha256-U9NVpXzdzBpgs8LFQJk70vs2dfHg+kD+YzuYZt6zQ5g=";
rev = "39cc80d40b046765a46f77771430622d6e11d179";
hash = "sha256-/miHt4AOjaU1iflsjP5Z3TwBygXcfSllUQAxtiTS5pM=";
};
postPatch = ''
@@ -0,0 +1,25 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
}:
buildHomeAssistantComponent rec {
owner = "samoswall";
domain = "polaris";
version = "1.0.10";
src = fetchFromGitHub {
owner = "samoswall";
repo = "polaris-mqtt";
tag = "v${version}";
hash = "sha256-GxNGZISV/YjMLH2hpoyuyKGvRDiZ3ejI2eJ7o00dqK8=";
};
meta = {
description = "Polaris IQ Home devices integration to Home Assistant";
homepage = "https://github.com/samoswall/polaris-mqtt";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.k900 ];
};
}