synergy: 1.5.1 -> 1.6.1

This commit is contained in:
William A. Kennington III 2014-11-22 20:25:15 -08:00
parent 7202121e0e
commit 9a33f806ff
1 changed files with 9 additions and 6 deletions

View File

@ -1,16 +1,19 @@
{ stdenv, fetchurl, cmake, x11, libX11, libXi, libXtst, libXrandr, xinput, curl { stdenv, fetchFromGitHub, cmake, x11, libX11, libXi, libXtst, libXrandr
, cryptopp ? null, unzip }: , xinput, curl, cryptopp ? null, unzip }:
assert stdenv.isLinux -> cryptopp != null; assert stdenv.isLinux -> cryptopp != null;
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "synergy-1.5.1"; name = "synergy-${version}";
version = "1.6.1";
src = fetchurl { src = fetchFromGitHub {
url = "http://synergy-project.org/files/packages/${name}-r2398-Source.tar.gz"; owner = "synergy";
sha256 = "19q8ck15f0jgpbzlm34dzp046wf3iiwa21s1qfyj5sj7xjxwa367"; repo = "synergy";
rev = "1.6.1";
sha256 = "1043101c4phv1nbxiqp2jn1jhgzspv9q6v75z0kfzwgii5n5xq1c";
}; };
patches = optional stdenv.isLinux ./cryptopp.patch; patches = optional stdenv.isLinux ./cryptopp.patch;