ffado: Format expression

This commit is contained in:
Jan Tojnar 2024-04-23 21:46:26 +02:00 committed by Jörg Thalheim
parent 7d7111ffdb
commit 16f2eaa158

View File

@ -1,32 +1,44 @@
{ lib
, stdenv
, mkDerivation
, argp-standalone
, dbus
, dbus_cplusplus
, desktop-file-utils
, fetchurl
, fetchpatch
, glibmm
, libavc1394
, libconfig
, libiec61883
, libraw1394
, libxmlxx3
, pkg-config
, python3
, scons
, which
, wrapQtAppsHook
{
lib,
stdenv,
mkDerivation,
argp-standalone,
dbus,
dbus_cplusplus,
desktop-file-utils,
fetchurl,
fetchpatch,
glibmm,
libavc1394,
libconfig,
libiec61883,
libraw1394,
libxmlxx3,
pkg-config,
python3,
scons,
which,
wrapQtAppsHook,
}:
let
python = python3.withPackages (pkgs: with pkgs; [ pyqt5 dbus-python ]);
python = python3.withPackages (
pkgs: with pkgs; [
pyqt5
dbus-python
]
);
in
mkDerivation rec {
pname = "ffado";
version = "2.4.8";
outputs = [
"out"
"bin"
"dev"
];
src = fetchurl {
url = "http://www.ffado.org/files/libffado-${version}.tgz";
hash = "sha256-0iFXYyGctOoHCdc232Ud80/wV81tiS7ItiS0uLKyq2Y=";
@ -49,8 +61,6 @@ mkDerivation rec {
})
];
outputs = [ "out" "bin" "dev" ];
nativeBuildInputs = [
desktop-file-utils
scons
@ -114,7 +124,10 @@ mkDerivation rec {
homepage = "http://www.ffado.org";
description = "FireWire audio drivers";
license = licenses.gpl3;
maintainers = with maintainers; [ goibhniu michojel ];
maintainers = with maintainers; [
goibhniu
michojel
];
platforms = platforms.linux;
};
}