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
907 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
faad2,
fftwFloat,
zlib,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "dab_lib";
version = "unstable-2023-03-02";
src = fetchFromGitHub {
owner = "JvanKatwijk";
repo = "dab-cmdline";
rev = "d615e2ba085f91dc7764cc28dfc4c9df49ee1a93";
hash = "sha256-KSkOg0a5iq+13kClQqj+TaEP/PsLUrm8bMmiJEAZ+C4=";
};
sourceRoot = "${finalAttrs.src.name}/library";
cmakeFlags = [ (lib.cmakeFeature "CMAKE_POLICY_VERSION_MINIMUM" "3.10") ];
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
faad2
fftwFloat
zlib
];
meta = {
description = "DAB/DAB+ decoding library";
homepage = "https://github.com/JvanKatwijk/dab-cmdline";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [
aciceri
alexwinter
];
platforms = lib.platforms.unix;
};
})