nixpkgs/pkgs/servers/unifi/default.nix

38 lines
745 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}";
2017-10-26 02:43:31 +03:00
version = "5.6.19";
2014-08-06 01:00:10 +04:00
src = fetchurl {
2017-10-26 02:43:31 +03:00
url = "https://dl.ubnt.com/unifi/5.6.19/unifi_sysvinit_all.deb";
sha256 = "05xfm9k5r88j5hg4i80qxixs98rbmrsd1p1cdlczb18105lh5kxx";
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
};
}