4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
28 lines
729 B
Nix
28 lines
729 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig
|
|
, libusb1, rtl-sdr, fftw
|
|
} :
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "dabtools";
|
|
version = "20180405";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Opendigitalradio";
|
|
repo = "dabtools";
|
|
rev = "8b0b2258b02020d314efd4d0d33a56c8097de0d1";
|
|
sha256 = "18nkdybgg2w6zh56g6xwmg49sifalvraz4rynw8w5d8cqi3dm9sm";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
buildInputs = [ rtl-sdr fftw libusb1 ];
|
|
|
|
meta = with lib; {
|
|
description = "Commandline tools for DAB and DAB+ digital radio broadcasts";
|
|
homepage = "https://github.com/Opendigitalradio/dabtools";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.markuskowa ];
|
|
};
|
|
}
|
|
|