nix-config/overlays/mlat-client.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
299 B
Nix
Raw Normal View History

2021-11-10 00:30:02 +01:00
{ buildPythonApplication, fetchFromGitHub }:
buildPythonApplication rec {
pname = "mlat-client";
2023-06-05 22:09:14 +02:00
version = "0.4.2";
2021-11-10 00:30:02 +01:00
src = fetchFromGitHub {
owner = "adsbxchange";
repo = "mlat-client";
rev = "v${version}";
2023-06-05 22:09:14 +02:00
hash = "sha256-V//LpYmBXtT8haX1aZ4XldzzyUY2YN7x3lTpQ2csTmw=";
2021-11-10 00:30:02 +01:00
};
}