forked from mirrors/nixpkgs
copyq: 2.5.0 -> 2.9.0
This commit is contained in:
parent
7d3d0ff0a0
commit
4c25a47cbd
|
@ -1,21 +1,25 @@
|
||||||
{ stdenv, fetchurl, cmake, qt4, libXfixes, libXtst}:
|
{ stdenv, fetchFromGitHub, cmake, qt4, libXfixes, libXtst}:
|
||||||
|
|
||||||
let version = "2.5.0";
|
stdenv.mkDerivation rec {
|
||||||
in
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "CopyQ-${version}";
|
name = "CopyQ-${version}";
|
||||||
src = fetchurl {
|
version = "2.9.0";
|
||||||
url = "https://github.com/hluk/CopyQ/archive/v${version}.tar.gz";
|
|
||||||
sha256 = "7726745056e8d82625531defc75b2a740d3c42131ecce1f3181bc0a0bae51fb1";
|
src = fetchFromGitHub {
|
||||||
|
owner = "hluk";
|
||||||
|
repo = "CopyQ";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1gnqsfh50w3qcnbghkpjr5qs42fgl6643lmg4mg4wam8a852s64f";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake qt4 libXfixes libXtst ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
buildInputs = [ qt4 libXfixes libXtst ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.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;
|
||||||
maintainers = with maintainers; [ willtim ];
|
maintainers = [ maintainers.willtim ];
|
||||||
# NOTE: CopyQ supports windows and osx, but I cannot test these.
|
# NOTE: CopyQ supports windows and osx, but I cannot test these.
|
||||||
# OSX build requires QT5.
|
# OSX build requires QT5.
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
|
Loading…
Reference in a new issue