5330df8984
Previous version (4.8.14) is no longer available to download.
33 lines
701 B
Nix
33 lines
701 B
Nix
{ stdenv, fetchurl, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "unifi-controller-${version}";
|
|
version = "4.8.15";
|
|
|
|
src = fetchurl {
|
|
url = "https://dl.ubnt.com/unifi/${version}/UniFi.unix.zip";
|
|
sha256 = "1p77l2186mw32l59inyd79rpachcs634z891k1vqcwn9gm7a39r2";
|
|
};
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
doConfigure = false;
|
|
|
|
buildPhase = ''
|
|
rm -rf bin conf readme.txt
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -ar * $out
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.ubnt.com/;
|
|
description = "Controller for Ubiquiti UniFi accesspoints";
|
|
license = licenses.unfree;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|