dablin: apply nixfmt
This commit is contained in:
parent
3392b91350
commit
bd1ce053f2
@ -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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "dablin";
|
pname = "dablin";
|
||||||
@ -13,16 +22,27 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "sha256-1rjL0dSEgF7FF72KiT6Tyj7/wbRc24LzyzmM1IGdglc=";
|
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 = {
|
meta = {
|
||||||
description = "Play DAB/DAB+ from ETI-NI aligned stream";
|
description = "Play DAB/DAB+ from ETI-NI aligned stream";
|
||||||
homepage = "https://github.com/Opendigitalradio/dablin";
|
homepage = "https://github.com/Opendigitalradio/dablin";
|
||||||
license = with lib.licenses; [ gpl3Plus lgpl21Only ];
|
license = with lib.licenses; [
|
||||||
|
gpl3Plus
|
||||||
|
lgpl21Only
|
||||||
|
];
|
||||||
platforms = lib.platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
maintainers = [ lib.maintainers.markuskowa ];
|
maintainers = [ lib.maintainers.markuskowa ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user