nixpkgs/pkgs/servers/unifi/default.nix
2014-08-05 21:48:19 -05:00

33 lines
699 B
Nix

{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "unifi-controller-${version}";
version = "3.2.1";
src = fetchurl {
url = "http://dl.ubnt.com/unifi/${version}/UniFi.unix.zip";
sha256 = "0x7s5k9wxkw0rcs4c2mdrmmjpcfmbh5pvvpj8brrwnkgx072n53c";
};
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;
maintainers = with maintainers; [ wkennington ];
};
}