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 ? "" }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "unifi-controller-${version}";
|
|
|
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
|
|
|
doConfigure = false;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p $out
|
|
|
|
cd ./usr/lib/unifi
|
|
|
|
cp -ar dl lib webapps $out
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.ubnt.com/;
|
|
|
|
description = "Controller for Ubiquiti UniFi access points";
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = platforms.unix;
|
2019-01-27 16:24:40 +00:00
|
|
|
maintainers = with maintainers; [ erictapen ];
|
2018-03-25 21:49:54 +01:00
|
|
|
};
|
|
|
|
};
|
2014-08-05 22:00:10 +01:00
|
|
|
|
2018-04-30 04:31:44 +01:00
|
|
|
in rec {
|
2014-08-05 22:00:10 +01:00
|
|
|
|
2018-04-30 04:31:44 +01:00
|
|
|
# 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 {
|
2018-08-21 02:33:40 +01:00
|
|
|
version = "5.6.39";
|
|
|
|
sha256 = "025qq517j32r1pnabg2q8lhy65c6qsk17kzw3aijhrc2gpgj2pa7";
|
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 {
|
2019-03-07 22:11:43 +00:00
|
|
|
version = "5.10.19";
|
|
|
|
sha256 = "01ylf11z4f86qrw9x0fn1mnxkb8iw0p2kslp7vgxgjp0i3mg3f2q";
|
2014-08-05 22:00:10 +01:00
|
|
|
};
|
2018-10-17 07:53:39 +01:00
|
|
|
|
|
|
|
unifiTesting = unifiStable;
|
2014-08-05 22:00:10 +01:00
|
|
|
}
|