mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 01:51:24 +00:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
109 lines
2.4 KiB
Nix
109 lines
2.4 KiB
Nix
{ lib, stdenv
|
|
, mkDerivation
|
|
, dbus
|
|
, dbus_cplusplus
|
|
, desktop-file-utils
|
|
, fetchurl
|
|
, glibmm
|
|
, kernel
|
|
, libavc1394
|
|
, libconfig
|
|
, libiec61883
|
|
, libraw1394
|
|
, libxmlxx3
|
|
, pkg-config
|
|
, python3
|
|
, sconsPackages
|
|
, which
|
|
, wrapQtAppsHook
|
|
}:
|
|
|
|
let
|
|
inherit (python3.pkgs) pyqt5 dbus-python;
|
|
python = python3.withPackages (pkgs: with pkgs; [ pyqt5 dbus-python ]);
|
|
in
|
|
mkDerivation rec {
|
|
pname = "ffado";
|
|
version = "2.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.ffado.org/files/libffado-${version}.tgz";
|
|
sha256 = "08bygzv1k6ai0572gv66h7gfir5zxd9klfy74z2pxqp6s5hms58r";
|
|
};
|
|
|
|
prePatch = ''
|
|
substituteInPlace ./support/tools/ffado-diag.in \
|
|
--replace /lib/modules/ "/run/booted-system/kernel-modules/lib/modules/"
|
|
'';
|
|
|
|
patches = [
|
|
# fix installing metainfo file
|
|
./fix-build.patch
|
|
];
|
|
|
|
outputs = [ "out" "bin" "dev" ];
|
|
|
|
nativeBuildInputs = [
|
|
desktop-file-utils
|
|
sconsPackages.scons_3_1_2
|
|
pkg-config
|
|
which
|
|
python
|
|
pyqt5
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
prefixKey = "PREFIX=";
|
|
sconsFlags = [
|
|
"DEBUG=False"
|
|
"ENABLE_ALL=True"
|
|
"BUILD_TESTS=True"
|
|
"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}"
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus
|
|
dbus_cplusplus
|
|
glibmm
|
|
libavc1394
|
|
libconfig
|
|
libiec61883
|
|
libraw1394
|
|
libxmlxx3
|
|
python
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
dontWrapQtApps = true;
|
|
|
|
postInstall = ''
|
|
desktop="$bin/share/applications/ffado-mixer.desktop"
|
|
install -DT -m 444 support/xdg/ffado.org-ffadomixer.desktop $desktop
|
|
substituteInPlace "$desktop" \
|
|
--replace Exec=ffado-mixer "Exec=$bin/bin/ffado-mixer" \
|
|
--replace hi64-apps-ffado ffado-mixer
|
|
install -DT -m 444 support/xdg/hi64-apps-ffado.png "$bin/share/icons/hicolor/64x64/apps/ffado-mixer.png"
|
|
|
|
# prevent build tools from leaking into closure
|
|
echo 'See `nix-store --query --tree ${placeholder "out"}`.' > $out/lib/libffado/static_info.txt
|
|
'';
|
|
|
|
preFixup = ''
|
|
wrapQtApp $bin/bin/ffado-mixer
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.ffado.org";
|
|
description = "FireWire audio drivers";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ goibhniu michojel ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|