Commit 4c995257 authored by emaryn's avatar emaryn Committed by emaryn
Browse files

qt6ct: 0.9 -> 0.10

parent f2acf15f
Loading
Loading
Loading
Loading
+11 −13
Original line number Diff line number Diff line
@@ -9,18 +9,16 @@
  qttools,
  wrapQtAppsHook,
}:
let
  inherit (lib) getDev;
in

stdenv.mkDerivation (finalAttrs: {
  pname = "qt6ct";
  version = "0.9";
  version = "0.10";

  src = fetchFromGitHub {
    owner = "trialuser02";
    owner = "ilya-fedin";
    repo = "qt6ct";
    rev = finalAttrs.version;
    hash = "sha256-MmN/qPBlsF2mBST+3eYeXaq+7B3b+nTN2hi6CmxrILc=";
    tag = finalAttrs.version;
    hash = "sha256-ePY+BEpEcAq11+pUMjQ4XG358x3bXFQWwI1UAi+KmLo=";
  };

  nativeBuildInputs = [
@@ -36,17 +34,17 @@ stdenv.mkDerivation (finalAttrs: {
  ];

  qmakeFlags = [
    "LRELEASE_EXECUTABLE=${getDev qttools}/bin/lrelease"
    "LRELEASE_EXECUTABLE=${lib.getDev qttools}/bin/lrelease"
    "PLUGINDIR=${placeholder "out"}/${qtbase.qtPluginPrefix}"
    "LIBDIR=${placeholder "out"}/lib"
  ];

  meta = with lib; {
  meta = {
    description = "Qt6 Configuration Tool";
    homepage = "https://github.com/trialuser02/qt6ct";
    platforms = platforms.linux;
    license = licenses.bsd2;
    maintainers = with maintainers; [
    homepage = "https://github.com/ilya-fedin/qt6ct";
    platforms = lib.platforms.linux;
    license = lib.licenses.bsd2;
    maintainers = with lib.maintainers; [
      Flakebi
      Scrumplex
    ];