2018-04-30 06:31:44 +03:00
|
|
|
{ stdenv, dpkg, fetchurl }:
|
2014-08-06 01:00:10 +04:00
|
|
|
|
2018-03-25 23:49:54 +03:00
|
|
|
let
|
2018-04-30 06:31:44 +03:00
|
|
|
generic = { version, sha256, suffix ? "" }:
|
2019-08-14 00:52:01 +03:00
|
|
|
stdenv.mkDerivation {
|
2019-08-14 00:52:01 +03:00
|
|
|
pname = "unifi-controller";
|
|
|
|
inherit version;
|
2018-04-30 06:31:44 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://dl.ubnt.com/unifi/${version}${suffix}/unifi_sysvinit_all.deb";
|
|
|
|
inherit sha256;
|
2018-03-25 23:49:54 +03:00
|
|
|
};
|
2018-04-30 06:31:44 +03:00
|
|
|
|
|
|
|
nativeBuildInputs = [ dpkg ];
|
|
|
|
|
|
|
|
unpackPhase = ''
|
|
|
|
runHook preUnpack
|
|
|
|
dpkg-deb -x $src ./
|
|
|
|
runHook postUnpack
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p $out
|
|
|
|
cd ./usr/lib/unifi
|
|
|
|
cp -ar dl lib webapps $out
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://www.ubnt.com/";
|
2018-04-30 06:31:44 +03:00
|
|
|
description = "Controller for Ubiquiti UniFi access points";
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = platforms.unix;
|
2020-10-19 19:42:34 +03:00
|
|
|
maintainers = with maintainers; [ erictapen globin patryk27 ];
|
2018-03-25 23:49:54 +03:00
|
|
|
};
|
|
|
|
};
|
2014-08-06 01:00:10 +04:00
|
|
|
|
2019-08-14 00:52:01 +03:00
|
|
|
in {
|
2014-08-06 01:00:10 +04:00
|
|
|
|
2019-08-23 14:02:22 +03:00
|
|
|
# https://community.ui.com/releases / https://www.ui.com/download/unifi
|
|
|
|
# Outdated FAQ: https://help.ubnt.com/hc/en-us/articles/115000441548-UniFi-Current-Controller-Versions
|
2014-08-06 01:00:10 +04:00
|
|
|
|
2018-04-30 06:31:44 +03:00
|
|
|
unifiLTS = generic {
|
2019-05-06 16:32:21 +03:00
|
|
|
version = "5.6.42";
|
2019-08-20 12:49:50 +03:00
|
|
|
sha256 = "0wxkv774pw43c15jk0sg534l5za4j067nr85r5fw58iar3w2l84x";
|
2018-04-30 06:31:44 +03:00
|
|
|
};
|
2017-05-02 00:00:09 +03:00
|
|
|
|
2018-04-30 06:31:44 +03:00
|
|
|
unifiStable = generic {
|
2020-09-06 22:45:07 +03:00
|
|
|
version = "5.14.23";
|
|
|
|
sha256 = "1aar05yjm3z5a30x505w4kakbyz35i7mk7xyg0wm4ml6h94d84pv";
|
2014-08-06 01:00:10 +04:00
|
|
|
};
|
2020-10-19 19:42:34 +03:00
|
|
|
|
|
|
|
unifiBeta = generic {
|
2020-11-05 00:45:11 +03:00
|
|
|
version = "6.0.28";
|
|
|
|
sha256 = "14q8r4mcqx0v3sh8zwqg4cc3iszqn5201q5r4c20cwqdd4ivf97q";
|
2020-10-19 19:42:34 +03:00
|
|
|
};
|
2014-08-06 01:00:10 +04:00
|
|
|
}
|