nixpkgs/pkgs/servers/unifi/default.nix

56 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, dpkg, fetchurl }:
2014-08-05 22:00:10 +01:00
let
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;
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;
maintainers = with maintainers; [ erictapen globin ];
};
};
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
unifiLTS = generic {
2019-05-06 14:32:21 +01:00
version = "5.6.42";
2019-08-20 10:49:50 +01:00
sha256 = "0wxkv774pw43c15jk0sg534l5za4j067nr85r5fw58iar3w2l84x";
};
2017-05-01 22:00:09 +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
};
}