nixpkgs/pkgs/development/libraries/qtutilities/default.nix

34 lines
775 B
Nix
Raw Normal View History

{ 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 ];
dontWrapQtApps = true;
meta = with lib; {
2019-07-10 13:06:14 +00:00
homepage = "https://github.com/Martchus/qtutilities";
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;
};
}