Skip to content

Commit 7e8f272

Browse files
committed
nix package
1 parent fc40216 commit 7e8f272

8 files changed

+56
-9
lines changed

.github/workflows/main.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ jobs:
2828
- name: Install
2929
run: |
3030
sudo apt-get -qq update
31-
sudo apt-get -y --no-install-recommends install build-essential automake ncurses-dev cmake libcmocka0 git pkg-config autoconf libterm-ui-perl libasound2-dev libalsaplayer-dev openssl libssl-dev apt-utils xterm
32-
sudo apt-get -y install curl ncurses-dev libsctp-dev libpcap-dev ca-certificates sip-tester
33-
git clone -b 2.7.x --depth 1 https://github.com/pjsip/pjproject.git
34-
cd pjproject && ./configure --prefix=/usr && make dep && make && sudo make install
31+
sudo apt-get -y --no-install-recommends install build-essential automake ncurses-dev cmake libcmocka0 zip pkg-config autoconf libterm-ui-perl libasound2-dev libalsaplayer-dev openssl libssl-dev apt-utils xterm
32+
sudo apt-get -y install curl ncurses-dev libsctp-dev libpcap-dev ca-certificates sip-tester wget
33+
wget https://github.com/pjsip/pjproject/archive/refs/tags/2.14.1.zip
34+
unzip 2.14.1.zip
35+
cd pjproject-2.14.1 && ./configure --prefix=/usr && make dep && make && sudo make install
3536
3637
- name: Build
3738
run: make

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
build/
2+
dist/nix/result
23

34
CMakeCache.txt
45
CMakeFiles

README.md

+21-5
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Can be useful for SIP administrators and developers.
1414
<img src="https://github.com/staskobzar/sippak/blob/master/sippak.png?raw=true" width="600"/>
1515
</p>
1616

17-
### Usage examples
18-
> Ping remote server with SIP NOTIFY message
17+
## Usage examples
18+
> Ping remote server with SIP OPTIONS message
1919
```
2020
sippak --color PING sip:1001@DOMAIN_OR_IP
2121
```
@@ -60,15 +60,22 @@ sippak notify --event=check-sync sip:1000@192.168.1.148 --color
6060
sippak MESSAGE --body="Hello there" --header="X-Token: f7c0265e" --color sip:1001@DOMAIN_OR_IP
6161
```
6262

63-
### Install
63+
## Install
6464

65+
### make
6566
Requires pjproject library and CMake 3.
6667

6768
```
6869
make
6970
sudo make install
7071
```
72+
CMake will require pkg-config path to libpjproject. If it has custom path
73+
it can be provided with PKG_CONFIG_PATH variable. For example:
74+
```
75+
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig make
76+
```
7177

78+
### Ubuntu
7279
Also, packages (rpm, deb and tgz) are available in "[dist](https://github.com/staskobzar/sippak/tree/master/dist)" directory.
7380

7481
Here is step by step install example for Ubuntu. Note version 2.7.x of pjproject. This will install everything for deployement and development. "make test" is optional.
@@ -88,7 +95,16 @@ $ make test
8895
$ make install
8996
```
9097

91-
### Try with docker without installing
98+
### nix package
99+
Nix package is available in ```dist/nix/```. Inside this folder run
100+
101+
``` sh
102+
nix-build
103+
```
104+
105+
binary file will be available in ```result/bin```
106+
107+
## Try with docker without installing
92108

93109
```
94110
docker pull staskobzar/sippak
@@ -103,7 +119,7 @@ docker run -ti sippak sippak --help
103119
```
104120

105121

106-
### Usage
122+
## Usage
107123

108124
```
109125
sippak [COMMAND] [OPTIONS] [DESTINATION]

dist/nix/default.nix

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
let
2+
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
3+
pkgs = import nixpkgs {
4+
config = { };
5+
overlays = [ ];
6+
};
7+
in { sippak = pkgs.callPackage ./sippak.nix { }; }

dist/nix/sippak.nix

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{ stdenv, lib, fetchzip, cmake, pjsip, cmocka, dbus, pkg-config, }:
2+
3+
stdenv.mkDerivation {
4+
pname = "sippak";
5+
version = "1.1.0";
6+
7+
src = fetchzip {
8+
url = "https://github.com/staskobzar/sippak/archive/refs/tags/v1.1.0.zip";
9+
sha256 = "sha256-B9aANfpdYzUN5hm4NvPNcXi/iSQSTjNfLoKUpyNvTKk=";
10+
};
11+
12+
buildInputs = [ pjsip cmocka cmake dbus ];
13+
14+
nativeBuildInputs = [ pkg-config ];
15+
16+
buildPhase = ''
17+
runHook preInstall
18+
make
19+
make install
20+
runHook postInstall
21+
'';
22+
}

dist/sippak-1.1.0-beta-Linux.deb

-216 Bytes
Binary file not shown.

dist/sippak-1.1.0-beta-Linux.rpm

-152 Bytes
Binary file not shown.

dist/sippak-1.1.0-beta-Linux.tar.gz

-218 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)