Files
Ihar HrachyshkaandWolfgang Walther 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

48 lines
1021 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
libusb1,
rtl-sdr,
fftw,
}:
stdenv.mkDerivation {
pname = "dabtools";
version = "20180405";
src = fetchFromGitHub {
owner = "Opendigitalradio";
repo = "dabtools";
rev = "8b0b2258b02020d314efd4d0d33a56c8097de0d1";
sha256 = "18nkdybgg2w6zh56g6xwmg49sifalvraz4rynw8w5d8cqi3dm9sm";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
rtl-sdr
fftw
libusb1
];
# CMake 4 is no longer retro compatible with versions < 3.5
postPatch = ''
substituteInPlace CMakeLists.txt src/CMakeLists.txt --replace-fail \
"cmake_minimum_required(VERSION 2.8)" \
"cmake_minimum_required(VERSION 3.5)"
'';
meta = {
description = "Commandline tools for DAB and DAB+ digital radio broadcasts";
homepage = "https://github.com/Opendigitalradio/dabtools";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.markuskowa ];
};
}