2017-05-01 23:00:09 +02:00
|
|
|
{ stdenv
|
|
|
|
, dpkg
|
|
|
|
, fetchurl
|
|
|
|
, unzip
|
|
|
|
}:
|
2014-08-05 23:00:10 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "unifi-controller-${version}";
|
2018-03-19 00:17:44 +01:00
|
|
|
version = "5.6.36";
|
2014-08-05 23:00:10 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-11-08 08:28:38 +01:00
|
|
|
url = "https://dl.ubnt.com/unifi/${version}/unifi_sysvinit_all.deb";
|
2018-03-19 00:17:44 +01:00
|
|
|
sha256 = "075q7vm56fdsjwh72y2cb1pirl2pxdkvqnhvd3bf1c2n64mvp6bi";
|
2014-08-05 23:00:10 +02:00
|
|
|
};
|
|
|
|
|
2017-05-01 23:00:09 +02:00
|
|
|
buildInputs = [ dpkg ];
|
2014-08-05 23:00:10 +02:00
|
|
|
|
2017-05-01 23:00:09 +02:00
|
|
|
unpackPhase = ''
|
|
|
|
dpkg-deb -x ${src} ./
|
2014-08-05 23:00:10 +02:00
|
|
|
'';
|
|
|
|
|
2017-05-01 23:00:09 +02:00
|
|
|
doConfigure = false;
|
|
|
|
|
2014-08-05 23:00:10 +02:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
2017-05-01 23:00:09 +02:00
|
|
|
cd ./usr/lib/unifi
|
|
|
|
cp -ar dl lib webapps $out
|
2014-08-05 23:00:10 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.ubnt.com/;
|
|
|
|
description = "Controller for Ubiquiti UniFi accesspoints";
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = platforms.unix;
|
2014-08-06 04:47:55 +02:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2014-08-05 23:00:10 +02:00
|
|
|
};
|
|
|
|
}
|