3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/unifi/default.nix
2017-11-08 09:01:44 +01:00

38 lines
749 B
Nix

{ stdenv
, dpkg
, fetchurl
, unzip
}:
stdenv.mkDerivation rec {
name = "unifi-controller-${version}";
version = "5.6.20";
src = fetchurl {
url = "https://dl.ubnt.com/unifi/${version}/unifi_sysvinit_all.deb";
sha256 = "0dqkyg9lpjgj2qwbm8blh7hvlm8656d6gihyxr37dx6ja8qlzcjl";
};
buildInputs = [ dpkg ];
unpackPhase = ''
dpkg-deb -x ${src} ./
'';
doConfigure = false;
installPhase = ''
mkdir -p $out
cd ./usr/lib/unifi
cp -ar dl lib webapps $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 ];
};
}