libacars: init at 2.2.0 (#402348)

authored by Arne Keller and committed by GitHub af4a10cd e2f8b6bf

+33
+33
pkgs/by-name/li/libacars/package.nix
··· 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 + }