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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
774 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";
version = "6.10.0";
2019-07-10 13:06:14 +00:00
src = fetchFromGitHub {
owner = "Martchus";
repo = pname;
rev = "v${version}";
hash = "sha256-xMuiizhOeS2UtD5OprLZb1MsjGyLd85SHcfW9Wja7tg=";
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;
};
}