libcotp: remove libbaseencode from buildInputs

libcotp 2.0 deprecated libbaseencode
This commit is contained in:
Mario Rodas 2023-01-14 04:20:00 +00:00
parent 32bb0b6f36
commit 24ad275200

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, libgcrypt, libbaseencode }:
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, libgcrypt }:
stdenv.mkDerivation rec {
pname = "libcotp";
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
--replace "add_link_options(-Wl," "# add_link_options(-Wl,"
'';
buildInputs = [ libbaseencode libgcrypt ];
buildInputs = [ libgcrypt ];
nativeBuildInputs = [ cmake pkg-config ];
meta = with lib; {