dablin: apply nixfmt

This commit is contained in:
Markus Kowalewski 2024-09-26 23:29:01 +02:00
parent 3392b91350
commit bd1ce053f2
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -1,6 +1,15 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
, mpg123, SDL2, gtkmm3, faad2, pcre
} :
{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
mpg123,
SDL2,
gtkmm3,
faad2,
pcre,
}:
stdenv.mkDerivation rec {
pname = "dablin";
@ -13,16 +22,27 @@ stdenv.mkDerivation rec {
sha256 = "sha256-1rjL0dSEgF7FF72KiT6Tyj7/wbRc24LzyzmM1IGdglc=";
};
nativeBuildInputs = [ cmake pkg-config ];
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [ faad2 mpg123 SDL2 gtkmm3 pcre ];
buildInputs = [
faad2
mpg123
SDL2
gtkmm3
pcre
];
meta = {
description = "Play DAB/DAB+ from ETI-NI aligned stream";
homepage = "https://github.com/Opendigitalradio/dablin";
license = with lib.licenses; [ gpl3Plus lgpl21Only ];
license = with lib.licenses; [
gpl3Plus
lgpl21Only
];
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.markuskowa ];
};
}