mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
50 lines
1009 B
Nix
50 lines
1009 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
gitUpdater,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libloragw-2g4";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Lora-net";
|
|
repo = "gateway_2g4_hal";
|
|
rev = "refs/tags/V${finalAttrs.version}";
|
|
hash = "sha256-EvsYCkZ55nEdZXhxp7AjCw954+uUIoi2Fc3xhaIjZys=";
|
|
};
|
|
|
|
passthru.updateScript = gitUpdater { rev-prefix = "V"; };
|
|
|
|
makeFlags = [
|
|
"-e"
|
|
"-C"
|
|
"libloragw"
|
|
];
|
|
|
|
preBuild = ''
|
|
make -C libtools
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/{lib,include/libloragw-2g4}
|
|
cp libloragw/libloragw.a $out/lib/libloragw-2g4.a
|
|
cp libloragw/inc/* $out/include/libloragw-2g4
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "LoRa 2.4Ghz Gateway - Linux host Hardware Abstraction Layer, and tools (Packet Forwarder...)";
|
|
license = [
|
|
lib.licenses.bsd3
|
|
lib.licenses.mit
|
|
];
|
|
maintainers = [ lib.maintainers.stv0g ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|