summary refs log tree commit diff
path: root/pkgs/servers/mfi/default.nix
blob: e431ca993a900a8c6d4fe3c4fa96db9130436f34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation rec {
  name = "mfi-controller-${version}";
  version = "2.1.11";

  src = fetchurl {
    url = "https://dl.ubnt.com/mfi/${version}/mFi.unix.zip";
    sha256 = "0b9q6025zf9zjzq8dcmcyai8rslx67g52j41gacxsk9i5dspmw90";
  };

  buildInputs = [ unzip ];

  dontBuild = true;

  installPhase = ''
    mkdir -p $out
    cp -ar conf data dl lib webapps $out
  '';

  meta = with stdenv.lib; {
    homepage = http://www.ubnt.com/;
    description = "Controller for Ubiquiti mFi devices";
    license = licenses.unfree;
    platforms = platforms.unix;
    maintainers = with maintainers; [ elitak ];
  };
}