nixpkgs/pkgs/servers/unifi/default.nix

38 lines
749 B
Nix
Raw Normal View History

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