2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, cmake, curl, xorg, avahi, qtbase, mkDerivation,
|
2019-12-18 01:32:32 +00:00
|
|
|
openssl, wrapGAppsHook,
|
2018-05-30 20:57:35 +01:00
|
|
|
avahiWithLibdnssdCompat ? avahi.override { withLibdnssdCompat = true; }
|
|
|
|
}:
|
|
|
|
|
2019-07-23 09:36:46 +01:00
|
|
|
mkDerivation rec {
|
|
|
|
pname = "barrier";
|
2020-10-03 18:51:51 +01:00
|
|
|
version = "2.3.3";
|
2018-05-30 20:57:35 +01:00
|
|
|
|
2019-07-23 09:36:46 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "debauchee";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-10-03 18:51:51 +01:00
|
|
|
sha256 = "11vqkzpcjiv3pq6ps022223j6skgm1d23dj18n4a5nsf53wsvvp4";
|
|
|
|
fetchSubmodules = true;
|
2019-07-23 09:36:46 +01:00
|
|
|
};
|
2018-05-30 20:57:35 +01:00
|
|
|
|
2019-12-18 01:32:32 +00:00
|
|
|
buildInputs = [ curl xorg.libX11 xorg.libXext xorg.libXtst avahiWithLibdnssdCompat qtbase ];
|
|
|
|
nativeBuildInputs = [ cmake wrapGAppsHook ];
|
2018-07-01 16:52:28 +01:00
|
|
|
|
2018-05-30 20:57:35 +01:00
|
|
|
postFixup = ''
|
2018-07-01 16:52:28 +01:00
|
|
|
substituteInPlace "$out/share/applications/barrier.desktop" --replace "Exec=barrier" "Exec=$out/bin/barrier"
|
|
|
|
'';
|
2018-05-30 20:57:35 +01:00
|
|
|
|
2019-12-18 01:32:32 +00:00
|
|
|
qtWrapperArgs = [
|
2021-01-15 05:42:41 +00:00
|
|
|
''--prefix PATH : ${lib.makeBinPath [ openssl ]}''
|
2019-12-18 01:32:32 +00:00
|
|
|
];
|
|
|
|
|
2018-05-30 20:57:35 +01: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 02:11:51 +01:00
|
|
|
homepage = "https://github.com/debauchee/barrier";
|
|
|
|
downloadPage = "https://github.com/debauchee/barrier/releases";
|
2021-01-15 05:42:41 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = [ lib.maintainers.phryneas ];
|
|
|
|
platforms = lib.platforms.linux;
|
2018-05-30 20:57:35 +01:00
|
|
|
};
|
|
|
|
}
|