2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, c-ares, openssl ? null }:
|
2016-02-09 21:46:05 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sipsak";
|
2016-02-09 21:46:05 +00:00
|
|
|
version = "4.1.2.1";
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
openssl
|
|
|
|
c-ares
|
|
|
|
];
|
|
|
|
|
2016-04-15 18:30:09 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "--std=gnu89";
|
|
|
|
|
2016-02-09 21:46:05 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/sipwise/sipsak/archive/mr${version}.tar.gz";
|
|
|
|
sha256 = "769fe59966b1962b67aa35aad7beb9a2110ebdface36558072a05c6405fb5374";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/sipwise/sipsak";
|
2016-02-09 21:46:05 +00:00
|
|
|
description = "SIP Swiss army knife";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2;
|
2016-03-16 01:44:44 +00:00
|
|
|
maintainers = with maintainers; [ sheenobu ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2016-02-09 21:46:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|