Merge pull request #291481 from r-ryantm/auto-update/appstream

appstream: 1.0.1 -> 1.0.2
This commit is contained in:
Weijia Wang
2024-03-08 16:46:54 +01:00
committed by GitHub
2 changed files with 6 additions and 3 deletions

View File

@@ -36,7 +36,7 @@
stdenv.mkDerivation (finalAttrs: {
pname = "appstream";
version = "1.0.1";
version = "1.0.2";
outputs = [ "out" "dev" "installedTests" ];
@@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: {
owner = "ximion";
repo = "appstream";
rev = "v${finalAttrs.version}";
sha256 = "sha256-ULqRHepWVuAluXsXJUoqxqJfrN168MGlwdVkoLLwSN0=";
sha256 = "sha256-0NzZku6TQyyaTOAMWZD459RayhsH8cotlOaSKkVY/EQ=";
};
patches = [

View File

@@ -15,7 +15,10 @@ stdenv.mkDerivation {
nativeBuildInputs = appstream.nativeBuildInputs ++ [ qttools ];
mesonFlags = appstream.mesonFlags ++ [ "-Dqt${qtSuffix}=true" ];
mesonFlags = appstream.mesonFlags ++ [
(lib.mesonBool "qt" true)
(lib.mesonOption "qt-versions" (lib.versions.major qtbase.version))
];
patches = appstream.patches;