2018-08-15 21:33:37 +01:00
|
|
|
|
{ stdenv, fetchurl, gtk-doc, pkgconfig, gobjectIntrospection, intltool
|
2018-02-25 02:23:58 +00:00
|
|
|
|
, libgudev, polkit, appstream-glib, gusb, sqlite, libarchive, glib-networking
|
2018-02-14 15:39:07 +00:00
|
|
|
|
, libsoup, help2man, gpgme, libxslt, elfutils, libsmbios, efivar, glibcLocales
|
2018-06-02 16:47:34 +01:00
|
|
|
|
, gnu-efi, libyaml, valgrind, meson, libuuid, colord, docbook_xml_dtd_43, docbook_xsl
|
|
|
|
|
, ninja, gcab, gnutls, python3, wrapGAppsHook, json-glib, bash-completion
|
|
|
|
|
, shared-mime-info, umockdev, vala, makeFontsConf, freefont_ttf
|
2017-02-27 13:38:49 +00:00
|
|
|
|
}:
|
2017-09-18 14:14:21 +01:00
|
|
|
|
let
|
2018-02-17 03:06:24 +00:00
|
|
|
|
# Updating? Keep $out/etc synchronized with passthru.filesInstalledToEtc
|
2018-08-15 21:33:37 +01:00
|
|
|
|
version = "1.1.1";
|
2018-02-14 04:03:20 +00:00
|
|
|
|
python = python3.withPackages (p: with p; [ pygobject3 pycairo pillow ]);
|
|
|
|
|
installedTestsPython = python3.withPackages (p: with p; [ pygobject3 requests ]);
|
2018-06-02 16:47:34 +01:00
|
|
|
|
|
|
|
|
|
fontsConf = makeFontsConf {
|
|
|
|
|
fontDirectories = [ freefont_ttf ];
|
|
|
|
|
};
|
2017-09-18 14:14:21 +01:00
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
|
name = "fwupd-${version}";
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://people.freedesktop.org/~hughsient/releases/fwupd-${version}.tar.xz";
|
2018-08-15 21:33:37 +01:00
|
|
|
|
sha256 = "0szakfnp6pl8vv3ivb40p5j8pxapfp724a55s2dr1qzzdlbjd08s";
|
2017-09-18 14:14:21 +01:00
|
|
|
|
};
|
|
|
|
|
|
2018-06-02 16:47:34 +01:00
|
|
|
|
outputs = [ "out" "lib" "dev" "devdoc" "man" "installedTests" ];
|
2018-02-14 02:06:38 +00:00
|
|
|
|
|
2017-09-18 14:14:21 +01:00
|
|
|
|
nativeBuildInputs = [
|
2018-02-25 02:23:58 +00:00
|
|
|
|
meson ninja gtk-doc pkgconfig gobjectIntrospection intltool glibcLocales shared-mime-info
|
2018-06-02 16:47:34 +01:00
|
|
|
|
valgrind gcab docbook_xml_dtd_43 docbook_xsl help2man libxslt python wrapGAppsHook vala
|
2017-09-18 14:14:21 +01:00
|
|
|
|
];
|
|
|
|
|
buildInputs = [
|
2018-06-02 16:47:34 +01:00
|
|
|
|
polkit appstream-glib gusb sqlite libarchive libsoup elfutils libsmbios gnu-efi libyaml
|
2018-02-25 02:23:58 +00:00
|
|
|
|
libgudev colord gpgme libuuid gnutls glib-networking efivar json-glib umockdev
|
2018-06-02 16:47:34 +01:00
|
|
|
|
bash-completion
|
2017-09-18 14:14:21 +01:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
LC_ALL = "en_US.UTF-8"; # For po/make-images
|
|
|
|
|
|
|
|
|
|
patches = [
|
2018-06-02 16:47:34 +01:00
|
|
|
|
./fix-paths.patch
|
2017-09-18 14:14:21 +01:00
|
|
|
|
];
|
2018-02-14 04:03:20 +00:00
|
|
|
|
|
2017-09-18 14:14:21 +01:00
|
|
|
|
postPatch = ''
|
2018-02-14 04:03:20 +00:00
|
|
|
|
# needs a different set of modules than po/make-images
|
|
|
|
|
escapedInterpreterLine=$(echo "${installedTestsPython}/bin/python3" | sed 's|\\|\\\\|g')
|
|
|
|
|
sed -i -e "1 s|.*|#\!$escapedInterpreterLine|" data/installed-tests/hardware.py
|
|
|
|
|
|
2017-09-18 14:14:21 +01:00
|
|
|
|
patchShebangs .
|
2018-02-14 02:06:38 +00:00
|
|
|
|
substituteInPlace data/installed-tests/fwupdmgr.test.in --subst-var-by installedtestsdir "$installedTests/share/installed-tests/fwupd"
|
2017-09-18 14:14:21 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2018-06-02 16:47:34 +01:00
|
|
|
|
# /etc/os-release not available in sandbox
|
|
|
|
|
# doCheck = true;
|
2018-02-14 02:06:38 +00:00
|
|
|
|
|
2018-02-10 04:23:17 +00:00
|
|
|
|
preFixup = ''
|
2018-02-25 02:23:58 +00:00
|
|
|
|
gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared-mime-info}/share")
|
2018-02-10 04:23:17 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2017-09-18 14:14:21 +01:00
|
|
|
|
mesonFlags = [
|
2018-02-14 04:03:20 +00:00
|
|
|
|
"-Dplugin_dummy=true"
|
2017-12-17 08:16:38 +00:00
|
|
|
|
"-Dudevdir=lib/udev"
|
|
|
|
|
"-Dsystemdunitdir=lib/systemd/system"
|
2018-06-02 16:47:34 +01:00
|
|
|
|
"-Defi-libdir=${gnu-efi}/lib"
|
|
|
|
|
"-Defi-ldsdir=${gnu-efi}/lib"
|
|
|
|
|
"-Defi-includedir=${gnu-efi}/include/efi"
|
2017-09-18 14:14:21 +01:00
|
|
|
|
"--localstatedir=/var"
|
|
|
|
|
];
|
|
|
|
|
|
2018-06-02 16:47:34 +01:00
|
|
|
|
# TODO: We need to be able to override the directory flags from meson setup hook
|
|
|
|
|
# better – declaring them multiple times might become an error.
|
|
|
|
|
preConfigure = ''
|
|
|
|
|
mesonFlagsArray+=("--libexecdir=$out/libexec")
|
|
|
|
|
'';
|
|
|
|
|
|
2018-02-14 02:06:38 +00:00
|
|
|
|
postInstall = ''
|
|
|
|
|
moveToOutput share/installed-tests "$installedTests"
|
2018-02-14 04:03:20 +00:00
|
|
|
|
wrapProgram $installedTests/share/installed-tests/fwupd/hardware.py \
|
|
|
|
|
--prefix GI_TYPELIB_PATH : "$out/lib/girepository-1.0:${libsoup}/lib/girepository-1.0"
|
2018-02-14 02:06:38 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2018-06-02 16:47:34 +01:00
|
|
|
|
FONTCONFIG_FILE = fontsConf; # Fontconfig error: Cannot load default config file
|
|
|
|
|
|
|
|
|
|
# /etc/fwupd/uefi.conf is created by the services.hardware.fwupd NixOS module
|
2018-02-17 03:06:24 +00:00
|
|
|
|
passthru = {
|
|
|
|
|
filesInstalledToEtc = [
|
|
|
|
|
"fwupd/remotes.d/fwupd.conf"
|
|
|
|
|
"fwupd/remotes.d/lvfs-testing.conf"
|
|
|
|
|
"fwupd/remotes.d/lvfs.conf"
|
|
|
|
|
"fwupd/remotes.d/vendor.conf"
|
|
|
|
|
"pki/fwupd/GPG-KEY-Hughski-Limited"
|
2018-06-02 16:47:34 +01:00
|
|
|
|
"pki/fwupd/GPG-KEY-Linux-Foundation-Metadata"
|
2018-02-17 03:06:24 +00:00
|
|
|
|
"pki/fwupd/GPG-KEY-Linux-Vendor-Firmware-Service"
|
|
|
|
|
"pki/fwupd/LVFS-CA.pem"
|
2018-06-02 16:47:34 +01:00
|
|
|
|
"pki/fwupd-metadata/GPG-KEY-Linux-Foundation-Metadata"
|
2018-02-17 03:06:24 +00:00
|
|
|
|
"pki/fwupd-metadata/GPG-KEY-Linux-Vendor-Firmware-Service"
|
|
|
|
|
"pki/fwupd-metadata/LVFS-CA.pem"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
2018-02-14 02:06:38 +00:00
|
|
|
|
meta = with stdenv.lib; {
|
2017-09-18 14:14:21 +01:00
|
|
|
|
homepage = https://fwupd.org/;
|
2018-02-14 02:06:38 +00:00
|
|
|
|
maintainers = with maintainers; [];
|
|
|
|
|
license = [ licenses.gpl2 ];
|
|
|
|
|
platforms = platforms.linux;
|
2017-09-18 14:14:21 +01:00
|
|
|
|
};
|
|
|
|
|
}
|