nixpkgs/pkgs/servers/unifi/default.nix

56 lines
1.3 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
'';
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;
2020-10-19 16:42:34 +00:00
maintainers = with maintainers; [ erictapen globin patryk27 ];
};
};
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 {
2020-12-28 12:37:33 +00:00
version = "6.0.43";
sha256 = "1d9pw4f20pr4jb1xb43p7ycafv13ld1h40r05qg82029ml1s7jky";
2020-10-19 16:42:34 +00:00
};
2014-08-05 21:00:10 +00:00
}