appstream: 1.0.1 -> 1.0.2

This commit is contained in:
R. Ryantm 2024-02-26 05:30:52 +00:00 committed by Weijia Wang
parent 75f9d4f7cf
commit 82ade5850b
2 changed files with 6 additions and 3 deletions

View File

@ -31,7 +31,7 @@
stdenv.mkDerivation (finalAttrs: {
pname = "appstream";
version = "1.0.1";
version = "1.0.2";
outputs = [ "out" "dev" "installedTests" ];
@ -39,7 +39,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;