forked from mirrors/nixpkgs
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:
parent
407fcf1afc
commit
7f8befd4e1
1 changed files with 7 additions and 7 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue