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

33 lines
884 B
Nix
Raw Normal View History

2018-06-18 10:57:45 +03:00
{ stdenv, fetchFromGitHub, cmake, qtbase, qtscript, qtwebkit, libXfixes, libXtst
, qtx11extras, 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}";
2018-06-18 10:57:45 +03:00
version = "3.5.0";
2017-03-20 04:12:46 +03:00
src = fetchFromGitHub {
owner = "hluk";
repo = "CopyQ";
rev = "v${version}";
2018-06-18 10:57:45 +03:00
sha256 = "0hzdv6rhjpq9yrfafnkc6d8m5pzw9qr520vsjf2gn1819gdybmr0";
2015-12-23 00:47:49 +03:00
};
2017-03-20 04:12:46 +03:00
nativeBuildInputs = [ cmake ];
buildInputs = [
2018-06-18 10:57:45 +03:00
git qtbase qtscript libXfixes libXtst qtx11extras
2017-11-11 02:00:17 +03:00
] ++ stdenv.lib.optional webkitSupport 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;
};
}