2019-07-23 10:36:46 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, curl, xorg, avahi, qtbase, mkDerivation,
|
2019-12-18 02:32:32 +01:00
|
|
|
openssl, wrapGAppsHook,
|
2018-05-30 21:57:35 +02:00
|
|
|
avahiWithLibdnssdCompat ? avahi.override { withLibdnssdCompat = true; }
|
|
|
|
}:
|
|
|
|
|
2019-07-23 10:36:46 +02:00
|
|
|
mkDerivation rec {
|
|
|
|
pname = "barrier";
|
2019-10-07 03:14:06 +02:00
|
|
|
version = "2.3.2";
|
2018-05-30 21:57:35 +02:00
|
|
|
|
2019-07-23 10:36:46 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "debauchee";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2019-10-07 03:14:06 +02:00
|
|
|
sha256 = "1gbg3p7c0vcsdzsjj1ssx6k8xpj3rpyvais12266f0xvnbvihczd";
|
2019-07-23 10:36:46 +02:00
|
|
|
};
|
2018-05-30 21:57:35 +02:00
|
|
|
|
2019-12-18 02:32:32 +01:00
|
|
|
buildInputs = [ curl xorg.libX11 xorg.libXext xorg.libXtst avahiWithLibdnssdCompat qtbase ];
|
|
|
|
nativeBuildInputs = [ cmake wrapGAppsHook ];
|
2018-07-01 17:52:28 +02:00
|
|
|
|
2018-05-30 21:57:35 +02:00
|
|
|
postFixup = ''
|
2018-07-01 17:52:28 +02:00
|
|
|
substituteInPlace "$out/share/applications/barrier.desktop" --replace "Exec=barrier" "Exec=$out/bin/barrier"
|
|
|
|
'';
|
2018-05-30 21:57:35 +02:00
|
|
|
|
2019-12-18 02:32:32 +01:00
|
|
|
qtWrapperArgs = [
|
|
|
|
''--prefix PATH : ${stdenv.lib.makeBinPath [ openssl ]}''
|
|
|
|
];
|
|
|
|
|
2018-05-30 21:57:35 +02:00
|
|
|
meta = {
|
|
|
|
description = "Open-source KVM software";
|
|
|
|
longDescription = ''
|
|
|
|
Barrier is KVM software forked from Symless's synergy 1.9 codebase.
|
|
|
|
Synergy was a commercialized reimplementation of the original
|
|
|
|
CosmoSynergy written by Chris Schoeneman.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/debauchee/barrier";
|
|
|
|
downloadPage = "https://github.com/debauchee/barrier/releases";
|
2018-05-30 21:57:35 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.phryneas ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|