blob: 031648200c884a3a54fffa70cdf6c93f6b662f67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{ buildAll ? false }:
{ protobuf
, pkg-config
, h2o
, openssl
, eigen
, ncurses5
, zstd
, zlib
, curl
, gitMinimal
, stdenv
, fetchFromGitHub
, lib
}:
let
core = "ubxtool rtcmtool navrecv navnexus navparse";
noncore = if buildAll then "navdump navcat reporter rinreport galmonmon navdisplay" else "";
in
stdenv.mkDerivation {
pname = "galmon";
version = "git-master";
src = fetchFromGitHub {
owner = "berthubert";
repo = "galmon";
rev = "refs/heads/master";
sha256 = "sha256-QDluII9Ry3smMup5yOkAQZi35Phdf8m3fsQLDT8JFGc=";
fetchSubmodules = true;
};
buildInputs = [
protobuf pkg-config h2o openssl eigen ncurses5 zstd zlib curl gitMinimal
];
buildPhase = ''
make ${core} ${noncore}
'';
installPhase = ''
mkdir -p $out/bin
mv ${core} ${noncore} $out/bin
# avoid collision with gpsd's ubxtool
mv $out/bin/ubxtool $out/bin/galmon-ubxtool
${lib.optionalString buildAll "cp -r html $out/"}
'';
}
|