tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libacars: init at 2.2.0
MarcFontaine
9 months ago
62a10d9c
5297420b
+33
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
li
libacars
package.nix
+33
pkgs/by-name/li/libacars/package.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{
2
+
stdenv,
3
+
lib,
4
+
fetchFromGitHub,
5
+
cmake,
6
+
}:
7
+
stdenv.mkDerivation rec {
8
+
pname = "libacars";
9
+
version = "2.2.0";
10
+
11
+
src = fetchFromGitHub {
12
+
owner = "szpajder";
13
+
repo = "libacars";
14
+
tag = "v${version}";
15
+
hash = "sha256-2n1tuKti8Zn5UzQHmRdvW5Q+x4CXS9QuPHFQ+DFriiE=";
16
+
};
17
+
18
+
nativeBuildInputs = [
19
+
cmake
20
+
];
21
+
22
+
cmakeFlags = [
23
+
"-DCMAKE_INSTALL_LIBDIR=lib"
24
+
];
25
+
26
+
meta = with lib; {
27
+
homepage = "https://github.com/szpajder/libacars";
28
+
description = "Aircraft Communications Addressing and Reporting System (ACARS) message decoder";
29
+
license = licenses.mit;
30
+
platforms = platforms.unix;
31
+
maintainers = [ maintainers.mafo ];
32
+
};
33
+
}