qt6ct: 0.8 -> 0.9

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-09-26 21:05:59 +02:00
parent 8ab2b1221d
commit 830b8248d9
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951

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 ];
};
}
})