mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{ stdenv, dpkg, fetchurl }:
|
|
|
|
let
|
|
generic = { version, sha256, suffix ? "" }:
|
|
stdenv.mkDerivation {
|
|
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 ];
|
|
};
|
|
};
|
|
|
|
in {
|
|
|
|
# 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
|
|
|
|
unifiLTS = generic {
|
|
version = "5.6.42";
|
|
sha256 = "0wxkv774pw43c15jk0sg534l5za4j067nr85r5fw58iar3w2l84x";
|
|
};
|
|
|
|
unifiStable = generic {
|
|
version = "5.13.29";
|
|
sha256 = "0j1spid9q41l57gyphg8smn92iy52z4x4wy236a2a15p731gllh8";
|
|
};
|
|
}
|