2021-09-19 19:09:45 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, c-ares, openssl ? null }:
|
2016-02-09 22:46:05 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "sipsak";
|
2016-02-09 22:46:05 +01:00
|
|
|
version = "4.1.2.1";
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
openssl
|
|
|
|
c-ares
|
|
|
|
];
|
|
|
|
|
2016-04-15 19:30:09 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "--std=gnu89";
|
|
|
|
|
2021-09-19 19:09:45 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sipwise";
|
|
|
|
repo = "sipsak";
|
|
|
|
rev = "mr${version}";
|
|
|
|
hash = "sha256-y9P6t3xjazRNT6lDZAx+CttdyXruC6Q14b8XF9loeU4=";
|
2016-02-09 22:46:05 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/sipwise/sipsak";
|
2016-02-09 22:46:05 +01:00
|
|
|
description = "SIP Swiss army knife";
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.gpl2;
|
2016-03-16 02:44:44 +01:00
|
|
|
maintainers = with maintainers; [ sheenobu ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with platforms; unix;
|
2016-02-09 22:46:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|