Merge pull request #12901 from sheenobu/pkgs/new/sipsak
sipsak - init at 4.1.2.1
This commit is contained in:
commit
ef4ea6d673
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchurl, autoreconfHook, c-ares, openssl ? null }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sipsak-${version}";
|
||||
version = "4.1.2.1";
|
||||
|
||||
buildInputs = [
|
||||
autoreconfHook
|
||||
openssl
|
||||
c-ares
|
||||
];
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/sipwise/sipsak/archive/mr${version}.tar.gz";
|
||||
sha256 = "769fe59966b1962b67aa35aad7beb9a2110ebdface36558072a05c6405fb5374";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/sipwise/sipsak;
|
||||
description = "SIP Swiss army knife";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
@ -3151,6 +3151,8 @@ let
|
|||
|
||||
simplescreenrecorder = callPackage ../applications/video/simplescreenrecorder { };
|
||||
|
||||
sipsak = callPackage ../tools/networking/sipsak { };
|
||||
|
||||
skippy-xd = callPackage ../tools/X11/skippy-xd {};
|
||||
|
||||
skydns = goPackages.skydns.bin // { outputs = [ "bin" ]; };
|
||||
|
|
Loading…
Reference in New Issue