nixpkgs/pkgs/os-specific/linux/firmware/fwupd/default.nix

91 lines
3.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, gtk-doc, pkgconfig, gobjectIntrospection, intltool
, 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-02-14 15:18:23 +00:00
, fwupdate, libyaml, valgrind, meson, libuuid, colord, docbook_xml_dtd_43, docbook_xsl
, ninja, gcab, gnutls, python3, wrapGAppsHook, json-glib
, shared-mime-info, umockdev
2017-02-27 13:38:49 +00:00
}:
2017-09-18 13:14:21 +00:00
let
# Updating? Keep $out/etc synchronized with passthru.filesInstalledToEtc
2018-02-17 00:49:49 +00:00
version = "1.0.5";
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 ]);
2017-09-18 13:14:21 +00:00
in stdenv.mkDerivation {
name = "fwupd-${version}";
src = fetchurl {
url = "https://people.freedesktop.org/~hughsient/releases/fwupd-${version}.tar.xz";
2018-02-17 00:49:49 +00:00
sha256 = "0wm195vkf6x1kg1dz0sbfwpdcn9f6638l7vyzplcfrb3v07pqxpq";
2017-09-18 13:14:21 +00:00
};
2018-02-14 15:39:07 +00:00
outputs = [ "out" "devdoc" "man" "installedTests" ];
2018-02-14 02:06:38 +00:00
2017-09-18 13:14:21 +00:00
nativeBuildInputs = [
meson ninja gtk-doc pkgconfig gobjectIntrospection intltool glibcLocales shared-mime-info
2018-02-14 15:39:07 +00:00
valgrind gcab docbook_xml_dtd_43 docbook_xsl help2man libxslt python wrapGAppsHook
2017-09-18 13:14:21 +00:00
];
buildInputs = [
2018-02-14 01:08:53 +00:00
polkit appstream-glib gusb sqlite libarchive libsoup elfutils libsmbios fwupdate libyaml
libgudev colord gpgme libuuid gnutls glib-networking efivar json-glib umockdev
2017-09-18 13:14:21 +00:00
];
LC_ALL = "en_US.UTF-8"; # For po/make-images
patches = [
./fix-missing-deps.patch
2018-02-14 02:06:38 +00:00
(fetchpatch {
2018-02-17 00:49:49 +00:00
url = https://github.com/hughsie/fwupd/commit/767210e4b1401d5d5bb7ac1e7c052a60b6529d88.patch;
sha256 = "00adfabxpgdg74jx7i6jihhh8njjk2r7v3fxqs4scj3vn06k5fmw";
2018-02-14 04:03:20 +00:00
})
2017-09-18 13:14:21 +00:00
];
2018-02-14 04:03:20 +00:00
2017-09-18 13:14:21 +00: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 13:14:21 +00: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 13:14:21 +00:00
'';
2018-02-14 02:06:38 +00:00
doCheck = true;
2018-02-10 04:23:17 +00:00
preFixup = ''
gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared-mime-info}/share")
2018-02-10 04:23:17 +00:00
'';
2017-09-18 13:14:21 +00:00
mesonFlags = [
2018-02-14 04:03:20 +00:00
"-Dplugin_dummy=true"
2017-12-17 08:16:38 +00:00
"-Dbootdir=/boot"
"-Dudevdir=lib/udev"
"-Dsystemdunitdir=lib/systemd/system"
2017-09-18 13:14:21 +00:00
"--localstatedir=/var"
];
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
'';
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"
"pki/fwupd/GPG-KEY-Linux-Vendor-Firmware-Service"
"pki/fwupd/LVFS-CA.pem"
"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 13:14:21 +00: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 13:14:21 +00:00
};
}