2018-04-30 04:31:44 +01:00
|
|
|
{ stdenv, dpkg, fetchurl }:
|
2014-08-05 22:00:10 +01:00
|
|
|
|
2018-03-25 21:49:54 +01:00
|
|
|
let
|
2018-04-30 04:31:44 +01:00
|
|
|
generic = { version, sha256, suffix ? "" }:
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "unifi-controller";
|
|
|
|
inherit version;
|
2018-04-30 04:31:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://dl.ubnt.com/unifi/${version}${suffix}/unifi_sysvinit_all.deb";
|
|
|
|
inherit sha256;
|
2018-03-25 21:49:54 +01:00
|
|
|
};
|
2018-04-30 04:31:44 +01: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 02:11:51 +01:00
|
|
|
homepage = "http://www.ubnt.com/";
|
2018-04-30 04:31:44 +01:00
|
|
|
description = "Controller for Ubiquiti UniFi access points";
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = platforms.unix;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ erictapen globin ];
|
2018-03-25 21:49:54 +01:00
|
|
|
};
|
|
|
|
};
|
2014-08-05 22:00:10 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
in {
|
2014-08-05 22:00:10 +01:00
|
|
|
|
2019-08-23 12:02:22 +01: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-05 22:00:10 +01:00
|
|
|
|
2018-04-30 04:31:44 +01:00
|
|
|
unifiLTS = generic {
|
2019-05-06 14:32:21 +01:00
|
|
|
version = "5.6.42";
|
2019-08-20 10:49:50 +01:00
|
|
|
sha256 = "0wxkv774pw43c15jk0sg534l5za4j067nr85r5fw58iar3w2l84x";
|
2018-04-30 04:31:44 +01:00
|
|
|
};
|
2017-05-01 22:00:09 +01:00
|
|
|
|
2018-04-30 04:31:44 +01:00
|
|
|
unifiStable = generic {
|
2020-03-30 13:15:58 +01:00
|
|
|
version = "5.12.66";
|
|
|
|
sha256 = "119jdwk2ys3vzg9wa4h25rwgl6sjly6v52k1g1ycrq0bspzxdhm2";
|
2014-08-05 22:00:10 +01:00
|
|
|
};
|
|
|
|
}
|