2018-04-30 05:31:44 +02:00
|
|
|
{ stdenv, dpkg, fetchurl }:
|
2014-08-05 23:00:10 +02:00
|
|
|
|
2018-03-25 22:49:54 +02:00
|
|
|
let
|
2018-04-30 05:31:44 +02: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 22:49:54 +02:00
|
|
|
};
|
2018-04-30 05:31:44 +02: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;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2018-03-25 22:49:54 +02:00
|
|
|
};
|
|
|
|
};
|
2014-08-05 23:00:10 +02:00
|
|
|
|
2018-04-30 05:31:44 +02:00
|
|
|
in rec {
|
2014-08-05 23:00:10 +02:00
|
|
|
|
2018-04-30 05:31:44 +02:00
|
|
|
# https://help.ubnt.com/hc/en-us/articles/115000441548-UniFi-Current-Controller-Versions
|
2014-08-05 23:00:10 +02:00
|
|
|
|
2018-04-30 05:31:44 +02:00
|
|
|
unifiLTS = generic {
|
2018-08-21 03:33:40 +02:00
|
|
|
version = "5.6.39";
|
|
|
|
sha256 = "025qq517j32r1pnabg2q8lhy65c6qsk17kzw3aijhrc2gpgj2pa7";
|
2018-04-30 05:31:44 +02:00
|
|
|
};
|
2017-05-01 23:00:09 +02:00
|
|
|
|
2018-04-30 05:31:44 +02:00
|
|
|
unifiStable = generic {
|
2018-10-01 21:29:33 +02:00
|
|
|
version = "5.9.29";
|
|
|
|
sha256 = "0djdjh7lwaa5nvhvz2yh6dn07iad5nq4jpab7rc909sljl6wvwvx";
|
2014-08-05 23:00:10 +02:00
|
|
|
};
|
2018-10-17 08:53:39 +02:00
|
|
|
|
|
|
|
unifiTesting = unifiStable;
|
2014-08-05 23:00:10 +02:00
|
|
|
}
|