forked from mirrors/nixpkgs
copyq: init at 2.5.0, fixed #11887
This commit is contained in:
parent
eb8e309d2b
commit
e2a25433b2
|
@ -321,6 +321,7 @@
|
|||
vmandela = "Venkateswara Rao Mandela <venkat.mandela@gmail.com>";
|
||||
vozz = "Oliver Hunt <oliver.huntuk@gmail.com>";
|
||||
wedens = "wedens <kirill.wedens@gmail.com>";
|
||||
willtim = "Tim Philip Williams <tim.williams.public@gmail.com>";
|
||||
winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>";
|
||||
wizeman = "Ricardo M. Correia <rcorreia@wizy.org>";
|
||||
wjlroe = "William Roe <willroe@gmail.com>";
|
||||
|
|
23
pkgs/applications/misc/copyq/default.nix
Normal file
23
pkgs/applications/misc/copyq/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchurl, cmake, qt4, libXfixes, libXtst}:
|
||||
|
||||
let version = "2.5.0";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "CopyQ-${version}";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/hluk/CopyQ/archive/v${version}.tar.gz";
|
||||
sha256 = "7726745056e8d82625531defc75b2a740d3c42131ecce1f3181bc0a0bae51fb1";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake qt4 libXfixes libXtst ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://hluk.github.io/CopyQ";
|
||||
description = "Clipboard Manager with Advanced Features";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ willtim ];
|
||||
# NOTE: CopyQ supports windows and osx, but I cannot test these.
|
||||
# OSX build requires QT5.
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -11265,6 +11265,8 @@ let
|
|||
|
||||
constant-detune-chorus = callPackage ../applications/audio/constant-detune-chorus { };
|
||||
|
||||
copyq = callPackage ../applications/misc/copyq { };
|
||||
|
||||
coriander = callPackage ../applications/video/coriander {
|
||||
inherit (gnome) libgnomeui GConf;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue