default.nix (663B)
1 { 2 lib, 3 stdenv, 4 rustPlatform, 5 fetchFromGitHub, 6 }: 7 8 rustPlatform.buildRustPackage rec { 9 pname = "adsb_deku"; 10 version = "2024.09.02"; 11 12 src = fetchFromGitHub { 13 owner = "rsadsb"; 14 repo = "adsb_deku"; 15 tag = "v${version}"; 16 hash = "sha256-+WUG/CQ/j3muYow2FMFNUgWWhOCPZc0k+okoF1p1L5Y="; 17 }; 18 19 useFetchCargoVendor = true; 20 cargoHash = "sha256-E9WV4W2ycr4/EJDlvnLyyYOCOAgK26Kzmt48NUf9qJY="; 21 22 meta = { 23 description = "Rust ADS-B decoder + tui radar application"; 24 homepage = "https://github.com/rsadsb/adsb_deku"; 25 license = lib.licenses.mit; 26 maintainers = [ lib.maintainers.sikmir ]; 27 platforms = lib.platforms.unix; 28 }; 29 }