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

32 lines
858 B
Nix
Raw Normal View History

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