nixpkgs/pkgs/servers/unifi/default.nix

33 lines
700 B
Nix
Raw Normal View History

2014-08-05 21:00:10 +00:00
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "unifi-controller-${version}";
2016-10-07 19:27:50 +00:00
version = "5.2.9";
2014-08-05 21:00:10 +00:00
src = fetchurl {
url = "https://dl.ubnt.com/unifi/${version}/UniFi.unix.zip";
2016-10-07 19:27:50 +00:00
sha256 = "1521c5jdk5s4r57i7ajzdfq2l4fmvylqlhvddnxllqm6s4yij7fk";
2014-08-05 21:00:10 +00:00
};
buildInputs = [ unzip ];
doConfigure = false;
buildPhase = ''
rm -rf bin conf readme.txt
'';
installPhase = ''
mkdir -p $out
cp -ar * $out
'';
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
};
}