2014-08-05 22:00:10 +01:00
|
|
|
{ stdenv, fetchurl, unzip }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "unifi-controller-${version}";
|
2016-06-02 13:35:30 +01:00
|
|
|
version = "5.0.6";
|
2014-08-05 22:00:10 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-03-20 03:08:58 +00:00
|
|
|
url = "https://dl.ubnt.com/unifi/${version}/UniFi.unix.zip";
|
2016-06-02 13:35:30 +01:00
|
|
|
sha256 = "0splrxgh1ppxnf4nynawbn8mwywqsvaib7m60wgnz4inpxhp3pp8";
|
2014-08-05 22:00:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2014-08-06 03:47:55 +01:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2014-08-05 22:00:10 +01:00
|
|
|
};
|
|
|
|
}
|