Merge pull request #257488 from Scrumplex/pkgs/qt6ct/0.9

qt6ct: 0.8 -> 0.9
This commit is contained in:
Weijia Wang 2023-10-11 08:31:30 +02:00 committed by GitHub
commit 52f7404b62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,15 +11,15 @@
let
inherit (lib) getDev;
in
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "qt6ct";
version = "0.8";
version = "0.9";
src = fetchFromGitHub {
owner = "trialuser02";
repo = "qt6ct";
rev = version;
sha256 = "BFE5aUgn3uFJWTgd4sUwP2L9RZwwwr5jVtAapA9vYbA=";
rev = finalAttrs.version;
hash = "sha256-MmN/qPBlsF2mBST+3eYeXaq+7B3b+nTN2hi6CmxrILc=";
};
nativeBuildInputs = [ qmake qttools wrapQtAppsHook ];
@ -39,4 +39,4 @@ stdenv.mkDerivation rec {
license = licenses.bsd2;
maintainers = with maintainers; [ Flakebi Scrumplex ];
};
}
})