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

36 lines
878 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, qt5, 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.0.3";
2017-03-20 04:12:46 +03:00
src = fetchFromGitHub {
owner = "hluk";
repo = "CopyQ";
rev = "v${version}";
sha256 = "0wpxqrg4mn8xjsrwsmlhh731s2kr6afnzpqif1way0gi7fqr73jl";
2015-12-23 00:47:49 +03:00
};
patches = [
./cmake-modules.patch
];
2017-03-20 04:12:46 +03:00
nativeBuildInputs = [ cmake ];
buildInputs = [
git qt5.full libXfixes libXtst
] ++ stdenv.lib.optional webkitSupport qt5.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;
};
}