nixpkgs/pkgs/applications/misc/copyq/default.nix

32 lines
858 B
Nix
Raw Normal View History

2017-11-10 23:00:17 +00:00
{ stdenv, fetchFromGitHub, cmake, qtbase, qtscript, qtwebkit, libXfixes, libXtst, git
, webkitSupport ? true
}:
2015-12-22 21:47:49 +00:00
2017-03-20 01:12:46 +00:00
stdenv.mkDerivation rec {
2015-12-22 21:47:49 +00:00
name = "CopyQ-${version}";
version = "3.3.0";
2017-03-20 01:12:46 +00:00
src = fetchFromGitHub {
owner = "hluk";
repo = "CopyQ";
rev = "v${version}";
sha256 = "0j46h87ifinkydi0m725p422m9svk3dpcz8dnrci4mxx0inn6qs3";
2015-12-22 21:47:49 +00:00
};
2017-03-20 01:12:46 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [
2017-11-10 23:00:17 +00:00
git qtbase qtscript libXfixes libXtst
] ++ stdenv.lib.optional webkitSupport qtwebkit;
2015-12-22 21:47:49 +00:00
meta = with stdenv.lib; {
2017-03-20 01:12:46 +00: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;
};
}