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