mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
ffado: Format expression
This commit is contained in:
parent
7d7111ffdb
commit
16f2eaa158
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user