copyq: 3.9.0 -> 3.9.2 (#69490)

* copyq: 3.9.0 -> 3.9.2

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/copyq/versions

* copyq: use mkDerivation from Qt
This commit is contained in:
R. RyanTM 2019-10-12 05:01:55 -07:00 committed by Renaud
parent 407fcf1afc
commit 7f8befd4e1

View file

@ -1,26 +1,26 @@
{ stdenv, fetchFromGitHub, cmake, qtbase, qtscript, qtwebkit, libXfixes, libXtst { lib, mkDerivation, fetchFromGitHub, cmake
, qtx11extras, git , qtbase, qtscript, qtwebkit, libXfixes, libXtst, qtx11extras, git
, webkitSupport ? true , webkitSupport ? true
}: }:
stdenv.mkDerivation rec { mkDerivation rec {
pname = "CopyQ"; pname = "CopyQ";
version = "3.9.0"; version = "3.9.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "hluk"; owner = "hluk";
repo = "CopyQ"; repo = "CopyQ";
rev = "v${version}"; rev = "v${version}";
sha256 = "1l9f0hg2ggy944sjlyiyglln5mjm9fvgmvwp3pnvmmc6mfbmslq3"; sha256 = "02zs444i7hnqishs1i6vp8ffjxlxk3xkrw935pdwnwppv9s9v202";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
buildInputs = [ buildInputs = [
git qtbase qtscript libXfixes libXtst qtx11extras git qtbase qtscript libXfixes libXtst qtx11extras
] ++ stdenv.lib.optional webkitSupport qtwebkit; ] ++ lib.optional webkitSupport qtwebkit;
meta = with stdenv.lib; { meta = with lib; {
homepage = https://hluk.github.io/CopyQ; homepage = https://hluk.github.io/CopyQ;
description = "Clipboard Manager with Advanced Features"; description = "Clipboard Manager with Advanced Features";
license = licenses.gpl3; license = licenses.gpl3;