uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
101
pkgs/tools/security/fprintd/default.nix
Normal file
101
pkgs/tools/security/fprintd/default.nix
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
{ lib, stdenv
|
||||
, fetchFromGitLab
|
||||
, pkg-config
|
||||
, gobject-introspection
|
||||
, meson
|
||||
, ninja
|
||||
, perl
|
||||
, gettext
|
||||
, cairo
|
||||
, gtk-doc
|
||||
, libxslt
|
||||
, docbook-xsl-nons
|
||||
, docbook_xml_dtd_412
|
||||
, fetchurl
|
||||
, glib
|
||||
, gusb
|
||||
, dbus
|
||||
, polkit
|
||||
, nss
|
||||
, pam
|
||||
, systemd
|
||||
, libfprint
|
||||
, python3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fprintd";
|
||||
version = "1.94.2";
|
||||
outputs = [ "out" "devdoc" ];
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.freedesktop.org";
|
||||
owner = "libfprint";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-ePhcIZyXoGr8XlBuzKjpibU9D/44iCXYBlpVR9gcswQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
meson
|
||||
ninja
|
||||
perl # for pod2man
|
||||
gettext
|
||||
gtk-doc
|
||||
libxslt
|
||||
dbus
|
||||
docbook-xsl-nons
|
||||
docbook_xml_dtd_412
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
polkit
|
||||
nss
|
||||
pam
|
||||
systemd
|
||||
libfprint
|
||||
];
|
||||
|
||||
checkInputs = with python3.pkgs; [
|
||||
gobject-introspection # for setup hook
|
||||
python-dbusmock
|
||||
dbus-python
|
||||
pygobject3
|
||||
pycairo
|
||||
pypamtest
|
||||
gusb # Required by libfprint’s typelib
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
"-Dgtk_doc=true"
|
||||
"-Dpam_modules_dir=${placeholder "out"}/lib/security"
|
||||
"-Dsysconfdir=${placeholder "out"}/etc"
|
||||
"-Ddbus_service_dir=${placeholder "out"}/share/dbus-1/system-services"
|
||||
"-Dsystemd_system_unit_dir=${placeholder "out"}/lib/systemd/system"
|
||||
];
|
||||
|
||||
PKG_CONFIG_DBUS_1_INTERFACES_DIR = "${placeholder "out"}/share/dbus-1/interfaces";
|
||||
PKG_CONFIG_POLKIT_GOBJECT_1_POLICYDIR = "${placeholder "out"}/share/polkit-1/actions";
|
||||
PKG_CONFIG_DBUS_1_DATADIR = "${placeholder "out"}/share";
|
||||
|
||||
# FIXME: Ugly hack for tests to find libpam_wrapper.so
|
||||
LIBRARY_PATH = lib.makeLibraryPath [ python3.pkgs.pypamtest ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs \
|
||||
po/check-translations.sh \
|
||||
tests/unittest_inspector.py
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://fprint.freedesktop.org/";
|
||||
description = "D-Bus daemon that offers libfprint functionality over the D-Bus interprocess communication bus";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar elyhaka ];
|
||||
};
|
||||
}
|
||||
21
pkgs/tools/security/fprintd/tod.nix
Normal file
21
pkgs/tools/security/fprintd/tod.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ fetchFromGitLab
|
||||
, fprintd
|
||||
, libfprint-tod
|
||||
}:
|
||||
|
||||
(fprintd.override { libfprint = libfprint-tod; }).overrideAttrs (oldAttrs:
|
||||
let
|
||||
pname = "fprintd-tod";
|
||||
version = "1.90.9";
|
||||
in
|
||||
{
|
||||
inherit pname version;
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.freedesktop.org";
|
||||
owner = "libfprint";
|
||||
repo = "${oldAttrs.pname}";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-rOTVThHOY/Q2IIu2RGiv26UE2V/JFfWWnfKZQfKl5Mg=";
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue