mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
unifi: Add derivation
This commit is contained in:
parent
beddd36c95
commit
0652ee16e4
2 changed files with 33 additions and 0 deletions
31
pkgs/servers/unifi/default.nix
Normal file
31
pkgs/servers/unifi/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
|
@ -7015,6 +7015,8 @@ let
|
|||
|
||||
axis2 = callPackage ../servers/http/tomcat/axis2 { };
|
||||
|
||||
unifi = callPackage ../servers/unifi { };
|
||||
|
||||
virtuoso6 = callPackage ../servers/sql/virtuoso/6.x.nix { };
|
||||
|
||||
virtuoso7 = callPackage ../servers/sql/virtuoso/7.x.nix { };
|
||||
|
|
Loading…
Reference in a new issue