2021-01-23 08:47:37 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cpp-utilities
|
|
|
|
, qttools
|
|
|
|
, qtbase
|
|
|
|
, cmake
|
|
|
|
}:
|
2019-07-10 13:06:14 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "qtutilities";
|
2021-12-19 07:26:57 +00:00
|
|
|
version = "6.5.3";
|
2019-07-10 13:06:14 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Martchus";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-12-19 07:26:57 +00:00
|
|
|
sha256 = "sha256-P1vAmH1cF5qQxpa4AOIOyK8ogLZgyXt8jaxaHwE9qck=";
|
2019-07-10 13:06:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ qtbase cpp-utilities ];
|
|
|
|
nativeBuildInputs = [ cmake qttools ];
|
|
|
|
|
2021-01-12 11:50:23 +00:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2019-07-10 13:06:14 +00:00
|
|
|
homepage = "https://github.com/Martchus/qtutilities";
|
2021-10-30 20:11:43 +00:00
|
|
|
description = "Common Qt related C++ classes and routines used by @Martchus' applications such as dialogs, widgets and models Topics";
|
2021-03-09 09:32:36 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2019-07-10 13:06:14 +00:00
|
|
|
maintainers = with maintainers; [ doronbehar ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|