nixpkgs/pkgs/servers/unifi/default.nix

62 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, dpkg, fetchurl }:
2014-08-05 23:00:10 +02:00
let
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;
};
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 ];
};
};
2014-08-05 23:00:10 +02:00
in rec {
2014-08-05 23:00:10 +02:00
# https://help.ubnt.com/hc/en-us/articles/115000441548-UniFi-Current-Controller-Versions
2014-08-05 23:00:10 +02:00
unifiLTS = generic {
2019-05-06 15:32:21 +02:00
version = "5.6.42";
sha256 = "0wxkv774pw43c15jk0sg534l5za4j067nr85r5fw58iar3w2l84x";
};
2017-05-01 23:00:09 +02:00
unifiStable = generic {
2019-07-30 13:53:21 +02:00
version = "5.10.25";
sha256 = "1v03r7qd09s6lz37wwlsrqiy1jcwxnvj1q87jwpmhdipjprcjfdx";
2014-08-05 23:00:10 +02:00
};
2018-10-17 08:53:39 +02:00
2019-05-06 15:23:33 +02:00
unifiTesting = generic {
version = "5.11.18";
suffix = "-996baf2ca5";
sha256 = "14yyfn39ix8bnn0cb6bn0ly6pqxg81lvy83y40bk0y8vxfg6maqc";
};
2014-08-05 23:00:10 +02:00
}