98 lines
2.2 KiB
Nix
98 lines
2.2 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
wrapQtAppsHook,
|
|
dpkg,
|
|
autoPatchelfHook,
|
|
qtserialport,
|
|
qtwebsockets,
|
|
openssl,
|
|
libredirect,
|
|
makeWrapper,
|
|
gzip,
|
|
gnutar,
|
|
nixosTests,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "deconz";
|
|
version = "2.28.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://deconz.dresden-elektronik.de/ubuntu/beta/deconz-${version}-qt5.deb";
|
|
sha256 = "sha256-uHbo0XerUx81o7gXK570iJKiotkQ0aCXUVcyYelMu4k=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
dpkg
|
|
autoPatchelfHook
|
|
makeWrapper
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtserialport
|
|
qtwebsockets
|
|
openssl
|
|
];
|
|
|
|
unpackPhase = ''
|
|
runHook preUnpack
|
|
|
|
dpkg -x $src ./deconz-src
|
|
|
|
runHook postUnpack
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out"
|
|
cp -r deconz-src/* "$out"
|
|
|
|
# Flatten /usr and manually merge lib/ and usr/lib/, since mv refuses to.
|
|
mv "$out/lib" "$out/orig_lib"
|
|
mv "$out/usr/"* "$out/"
|
|
mkdir -p "$out/lib/systemd/system/"
|
|
mv "$out/orig_lib/systemd/system/"* "$out/lib/systemd/system/"
|
|
rmdir "$out/orig_lib/systemd/system"
|
|
rmdir "$out/orig_lib/systemd"
|
|
rmdir "$out/orig_lib"
|
|
rmdir "$out/usr"
|
|
|
|
for f in "$out/lib/systemd/system/"*.service \
|
|
"$out/share/applications/"*.desktop; do
|
|
substituteInPlace "$f" \
|
|
--replace "/usr/" "$out/"
|
|
done
|
|
|
|
for p in "$out/bin/deCONZ" "$out/bin/GCFFlasher_internal.bin"; do
|
|
wrapProgram "$p" \
|
|
--set LD_PRELOAD "${libredirect}/lib/libredirect.so" \
|
|
--set NIX_REDIRECTS "/usr/share=$out/share:/usr/bin=$out/bin" \
|
|
--prefix PATH : "${
|
|
lib.makeBinPath [
|
|
gzip
|
|
gnutar
|
|
]
|
|
}"
|
|
done
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
tests = { inherit (nixosTests) deconz; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Manage Zigbee network with ConBee, ConBee II or RaspBee hardware";
|
|
homepage = "https://www.dresden-elektronik.com/wireless/software/deconz.html";
|
|
license = licenses.unfree;
|
|
platforms = with platforms; [ "x86_64-linux" ];
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
mainProgram = "deCONZ";
|
|
};
|
|
}
|