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
342 B
Nix
Raw Permalink Normal View History

2021-11-10 00:30:02 +01:00
{ buildPythonApplication, fetchFromGitHub }:
buildPythonApplication rec {
pname = "mlat-client";
version = "unstable-2023-12-22";
2021-11-10 00:30:02 +01:00
src = fetchFromGitHub {
owner = "adsbxchange";
repo = "mlat-client";
rev = "fabefdc3543702c6ef950111b94981162c45147d";
hash = "sha256-7FgyoZ08hGoMJWb1O/duIfiVb0udt8jwSoRSDTQ1Y+g=";
2021-11-10 00:30:02 +01:00
};
}