2019-10-12 05:01:55 -07:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake
|
|
|
|
, qtbase, qtscript, qtwebkit, libXfixes, libXtst, qtx11extras, git
|
2017-08-24 05:35:26 -07:00
|
|
|
, webkitSupport ? true
|
|
|
|
}:
|
2015-12-22 13:47:49 -08:00
|
|
|
|
2019-10-12 05:01:55 -07:00
|
|
|
mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "CopyQ";
|
2020-05-20 03:14:29 -07:00
|
|
|
version = "3.11.1";
|
2017-03-19 18:12:46 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hluk";
|
|
|
|
repo = "CopyQ";
|
|
|
|
rev = "v${version}";
|
2020-05-20 03:14:29 -07:00
|
|
|
sha256 = "1xxf8d220pa77195d9f3l3scvvyqsh1pvlrbw4cq6ydj9qbp5kf0";
|
2015-12-22 13:47:49 -08:00
|
|
|
};
|
|
|
|
|
2017-03-19 18:12:46 -07:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2017-08-24 05:35:26 -07:00
|
|
|
|
|
|
|
buildInputs = [
|
2018-06-18 00:57:45 -07:00
|
|
|
git qtbase qtscript libXfixes libXtst qtx11extras
|
2019-10-12 05:01:55 -07:00
|
|
|
] ++ lib.optional webkitSupport qtwebkit;
|
2015-12-22 13:47:49 -08:00
|
|
|
|
2019-10-12 05:01:55 -07:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://hluk.github.io/CopyQ";
|
2015-12-22 13:47:49 -08:00
|
|
|
description = "Clipboard Manager with Advanced Features";
|
|
|
|
license = licenses.gpl3;
|
2017-03-19 18:12:46 -07:00
|
|
|
maintainers = [ maintainers.willtim ];
|
2015-12-22 13:47:49 -08:00
|
|
|
# NOTE: CopyQ supports windows and osx, but I cannot test these.
|
|
|
|
# OSX build requires QT5.
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|