siproxd: 0.8.2 -> 0.8.3
Among other things fixes build failure against upstream gcc-10: ld: accessctl.o:/build/siproxd-0.8.2/src/accessctl.c:37: multiple definition of `configuration'; siproxd.o:/build/siproxd-0.8.2/src/siproxd.c:46: first defined here Changelog: https://github.com/hb9xar/siproxd/blob/master/ChangeLog
This commit is contained in:
parent
0831857a14
commit
62a65320ae
1 changed files with 4 additions and 4 deletions
|
@ -1,17 +1,17 @@
|
|||
{ lib, stdenv, fetchurl, libosip }:
|
||||
{ lib, stdenv, fetchurl, libosip, sqlite }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "siproxd";
|
||||
version = "0.8.2";
|
||||
version = "0.8.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/siproxd/siproxd-${version}.tar.gz";
|
||||
sha256 = "1l6cyxxhra825jiiw9npa7jrbfgbyfpk4966cqkrw66cn28y8v2j";
|
||||
sha256 = "0dkpl3myxz3gvj2n2qpqrd19dip9il0vf7qybdvn5wgznrmplvcs";
|
||||
};
|
||||
|
||||
patches = [ ./cheaders.patch ];
|
||||
|
||||
buildInputs = [ libosip ];
|
||||
buildInputs = [ libosip sqlite ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://siproxd.sourceforge.net/";
|
||||
|
|
Loading…
Reference in a new issue