unifi-testing: init at 5.8.14

Also:
 - Instead of using a boolean flag to determine which package to build, use a
   generic builder
 - Add a few missing pre/post hooks
This commit is contained in:
Peter Hoeg 2018-04-30 11:31:44 +08:00 committed by Robin Gloster
parent 63666bf1d5
commit 187e223773
2 changed files with 55 additions and 44 deletions

View File

@ -1,53 +1,61 @@
{ stdenv { stdenv, dpkg, fetchurl }:
, dpkg
, fetchurl
, unzip
, useLTS ? false
}:
let let
versions = { generic = { version, sha256, suffix ? "" }:
stable = { stdenv.mkDerivation rec {
version = "5.7.20"; name = "unifi-controller-${version}";
sha256 = "1ylj4i5mcv6z9n32275ccdf1rqk74zilqsih3r6xzhm30pxrd8dd";
};
lts = {
version = "5.6.36";
sha256 = "075q7vm56fdsjwh72y2cb1pirl2pxdkvqnhvd3bf1c2n64mvp6bi";
};
};
selectedVersion =
let attr = if useLTS then "lts" else "stable";
in versions."${attr}";
in
stdenv.mkDerivation { src = fetchurl {
name = "unifi-controller-${selectedVersion.version}"; url = "https://dl.ubnt.com/unifi/${version}${suffix}/unifi_sysvinit_all.deb";
src = with selectedVersion; fetchurl {
url = "https://dl.ubnt.com/unifi/${version}/unifi_sysvinit_all.deb";
inherit sha256; inherit sha256;
}; };
buildInputs = [ dpkg ]; nativeBuildInputs = [ dpkg ];
unpackPhase = '' unpackPhase = ''
runHook preUnpack
dpkg-deb -x $src ./ dpkg-deb -x $src ./
runHook postUnpack
''; '';
doConfigure = false; doConfigure = false;
installPhase = '' installPhase = ''
runHook preInstall
mkdir -p $out mkdir -p $out
cd ./usr/lib/unifi cd ./usr/lib/unifi
cp -ar dl lib webapps $out cp -ar dl lib webapps $out
runHook postInstall
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.ubnt.com/; homepage = http://www.ubnt.com/;
description = "Controller for Ubiquiti UniFi accesspoints"; description = "Controller for Ubiquiti UniFi access points";
license = licenses.unfree; license = licenses.unfree;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ]; maintainers = with maintainers; [ wkennington ];
}; };
};
in rec {
# https://help.ubnt.com/hc/en-us/articles/115000441548-UniFi-Current-Controller-Versions
unifiLTS = generic {
version = "5.6.36";
sha256 = "075q7vm56fdsjwh72y2cb1pirl2pxdkvqnhvd3bf1c2n64mvp6bi";
};
unifiStable = generic {
version = "5.7.20";
sha256 = "1ylj4i5mcv6z9n32275ccdf1rqk74zilqsih3r6xzhm30pxrd8dd";
};
unifiTesting = generic {
version = "5.8.14";
suffix = "-7ef9535d1b";
sha256 = "09gr7zkck6npjhhmd27c9ymyna6anwj3w9v9zjicz9skbrddkccq";
};
} }

View File

@ -12921,8 +12921,11 @@ with pkgs;
axis2 = callPackage ../servers/http/tomcat/axis2 { }; axis2 = callPackage ../servers/http/tomcat/axis2 { };
unifi = callPackage ../servers/unifi { }; inherit (callPackages ../servers/unifi { })
unifiLTS = callPackage ../servers/unifi { useLTS=true; }; unifiLTS
unifiStable
unifiTesting;
unifi = unifiStable;
virtuoso6 = callPackage ../servers/sql/virtuoso/6.x.nix { }; virtuoso6 = callPackage ../servers/sql/virtuoso/6.x.nix { };