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