nixpkgs/pkgs/servers/unifi/default.nix

38 lines
760 B
Nix
Raw Normal View History

2017-05-01 21:00:09 +00:00
{ stdenv
, dpkg
, fetchurl
, unzip
}:
2014-08-05 21:00:10 +00:00
stdenv.mkDerivation rec {
name = "unifi-controller-${version}";
2017-08-01 06:26:07 +00:00
version = "5.5.20";
2014-08-05 21:00:10 +00:00
src = fetchurl {
2017-07-03 21:09:16 +00:00
url = "https://www.ubnt.com/downloads/unifi/${version}/unifi_sysvinit_all.deb";
2017-08-01 06:26:07 +00:00
sha256 = "14v38x46vgwm3wg28lzv4sz6kjgp6r1xkwxnxn6pzq2r7v6xkaz0";
2014-08-05 21:00:10 +00:00
};
2017-05-01 21:00:09 +00:00
buildInputs = [ dpkg ];
2014-08-05 21:00:10 +00:00
2017-05-01 21:00:09 +00:00
unpackPhase = ''
dpkg-deb -x ${src} ./
2014-08-05 21:00:10 +00:00
'';
2017-05-01 21:00:09 +00:00
doConfigure = false;
2014-08-05 21:00:10 +00:00
installPhase = ''
mkdir -p $out
2017-05-01 21:00:09 +00:00
cd ./usr/lib/unifi
cp -ar dl lib webapps $out
2014-08-05 21:00:10 +00: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 02:47:55 +00:00
maintainers = with maintainers; [ wkennington ];
2014-08-05 21:00:10 +00:00
};
}