nixpkgs/pkgs/servers/unifi/default.nix

65 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, dpkg, fetchurl }:
2014-08-05 21:00:10 +00:00
let
generic = { version, sha256, suffix ? "" }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "unifi-controller";
inherit version;
src = fetchurl {
url = "https://dl.ubnt.com/unifi/${version}${suffix}/unifi_sysvinit_all.deb";
inherit sha256;
};
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; [ erictapen globin ];
};
};
2014-08-05 21:00:10 +00:00
2019-08-13 21:52:01 +00:00
in {
2014-08-05 21:00:10 +00:00
2019-08-23 11:02:22 +00: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 21:00:10 +00:00
unifiLTS = generic {
2019-05-06 13:32:21 +00:00
version = "5.6.42";
2019-08-20 09:49:50 +00:00
sha256 = "0wxkv774pw43c15jk0sg534l5za4j067nr85r5fw58iar3w2l84x";
};
2017-05-01 21:00:09 +00:00
unifiStable = generic {
2019-08-23 11:02:22 +00:00
version = "5.11.39";
sha256 = "0v1gnvdazxa3bcbq8hl6796yw0mxzki2xn4s5im5k5ngmfmnswyj";
2014-08-05 21:00:10 +00:00
};
2018-10-17 06:53:39 +00:00
2019-08-23 11:02:22 +00:00
# TODO: update as it is outdated
2019-05-06 13:23:33 +00:00
unifiTesting = generic {
version = "5.11.18";
suffix = "-996baf2ca5";
sha256 = "14yyfn39ix8bnn0cb6bn0ly6pqxg81lvy83y40bk0y8vxfg6maqc";
};
2014-08-05 21:00:10 +00:00
}