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
···
1
1
+
{
2
2
+
stdenv,
3
3
+
lib,
4
4
+
fetchFromGitHub,
5
5
+
cmake,
6
6
+
}:
7
7
+
stdenv.mkDerivation rec {
8
8
+
pname = "libacars";
9
9
+
version = "2.2.0";
10
10
+
11
11
+
src = fetchFromGitHub {
12
12
+
owner = "szpajder";
13
13
+
repo = "libacars";
14
14
+
tag = "v${version}";
15
15
+
hash = "sha256-2n1tuKti8Zn5UzQHmRdvW5Q+x4CXS9QuPHFQ+DFriiE=";
16
16
+
};
17
17
+
18
18
+
nativeBuildInputs = [
19
19
+
cmake
20
20
+
];
21
21
+
22
22
+
cmakeFlags = [
23
23
+
"-DCMAKE_INSTALL_LIBDIR=lib"
24
24
+
];
25
25
+
26
26
+
meta = with lib; {
27
27
+
homepage = "https://github.com/szpajder/libacars";
28
28
+
description = "Aircraft Communications Addressing and Reporting System (ACARS) message decoder";
29
29
+
license = licenses.mit;
30
30
+
platforms = platforms.unix;
31
31
+
maintainers = [ maintainers.mafo ];
32
32
+
};
33
33
+
}