diff --git a/pkgs/applications/radio/dablin/default.nix b/pkgs/applications/radio/dablin/default.nix index 6afd108fea2c..a86a6d505721 100644 --- a/pkgs/applications/radio/dablin/default.nix +++ b/pkgs/applications/radio/dablin/default.nix @@ -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 ]; }; } -