nixpkgs/pkgs/os-specific/linux/ffado/default.nix

69 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, scons, pkgconfig, which, makeWrapper, python3
, libraw1394, libconfig, libavc1394, libiec61883, libxmlxx3
, glibmm
, dbus, dbus_cplusplus
2015-04-26 05:14:28 +02:00
}:
let
inherit (python3.pkgs) pyqt5 dbus-python;
python = python3.withPackages (pkgs: with pkgs; [ pyqt5 dbus-python ]);
in stdenv.mkDerivation rec {
pname = "ffado";
version = "2.4.1";
src = fetchurl {
2015-04-26 05:14:28 +02:00
url = "http://www.ffado.org/files/libffado-${version}.tgz";
sha256 = "0byr3kv58d1ryy60vr69fd868zlfkvl2gq9hl94dqdn485l9pq9y";
};
patches = [
# fix installing metainfo file
./fix-build.patch
];
outputs = [ "out" "bin" "dev" ];
nativeBuildInputs = [ scons pkgconfig which makeWrapper python pyqt5 ];
prefixKey = "PREFIX=";
sconsFlags = [
"DEBUG=False"
"ENABLE_ALL=True"
"BUILD_TESTS=False"
"WILL_DEAL_WITH_XDG_MYSELF=True"
"BUILD_MIXER=True"
"UDEVDIR=${placeholder "out"}/lib/udev/rules.d"
"PYPKGDIR=${placeholder "out"}/${python3.sitePackages}"
"BINDIR=${placeholder "bin"}/bin"
"INCLUDEDIR=${placeholder "dev"}/include"
"PYTHON_INTERPRETER=${python.interpreter}"
2015-04-26 05:14:28 +02:00
];
buildInputs = [
libraw1394
libconfig
libavc1394
libiec61883
dbus
dbus_cplusplus
libxmlxx3
python
glibmm
];
enableParallelBuilding = true;
postInstall = ''
# prevent build tools from leaking into closure
echo 'See `nix-store --query --tree ${placeholder "out"}`.' > $out/lib/libffado/static_info.txt
'';
meta = with stdenv.lib; {
homepage = http://www.ffado.org;
description = "FireWire audio drivers";
license = licenses.gpl3;
maintainers = with maintainers; [ goibhniu ];
platforms = platforms.linux;
};
}