fix: fix deconz package

This commit is contained in:
Felix Schröter 2023-07-27 18:16:30 +02:00
parent ec7c430e11
commit 8ecbcf1a28
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
{ lib, stdenv, fetchurl, mkDerivation, dpkg, autoPatchelfHook, qtserialport { lib, stdenv, fetchurl, mkDerivation, dpkg, autoPatchelfHook, libxcrypt-legacy
, qtwebsockets, libredirect, makeWrapper, gzip, gnutar }: , qtserialport, qtwebsockets, libredirect, makeWrapper, gzip, gnutar }:
let let
version = "2.17.01"; version = "2.17.01";
@ -17,7 +17,7 @@ let
}; };
}; };
in mkDerivation rec { in mkDerivation {
pname = "deCONZ"; pname = "deCONZ";
inherit version; inherit version;
@ -25,7 +25,7 @@ in mkDerivation rec {
nativeBuildInputs = [ dpkg autoPatchelfHook makeWrapper ]; nativeBuildInputs = [ dpkg autoPatchelfHook makeWrapper ];
buildInputs = [ qtserialport qtwebsockets ]; buildInputs = [ libxcrypt-legacy qtserialport qtwebsockets ];
unpackPhase = "dpkg-deb -x $src ."; unpackPhase = "dpkg-deb -x $src .";

View file

@ -1,5 +1,5 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
deconz = pkgs.callPackage ./deconz { }; deconz = pkgs.qt5.callPackage ./deconz { };
} }