From 7deabb8c8d6f4c7e58e2b16548b8a1895795963b Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 7 Apr 2021 14:34:13 +0200 Subject: chore(3p): Bump channels to 2021-04-09 Fixes included: * exposed gtest in the package set, required for protobuf * pinned SBCL to version 2.0.8: The channel moved it to >2.1, and a bunch of warnings seemed to be killing our builds - we should investigate this later. * removed kernel patches from //users/tazjin/frog: this machine is currently out of service anyways, not worth fixing while it's offline * removed steam & lutris from frog (they're currently broken) * removed Haskell overrides for hedgehog-classes & hgeometry-combinatorial * use gRPC sources from upstream and inject Abseil via Nix instead * fix for renamed grpc import in //third_party/nix * use libfprint-tod from upstream nixpkgs in glittershark/yeren and delete glittershark/pkgs/fprintd entirely, since all of the patches used there are available and working from upstream now (and stopped working here after the bump) Change-Id: Ia90e6f774f7b88bc9e60d28351b900ca43ee2695 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2901 Reviewed-by: glittershark Reviewed-by: tazjin Reviewed-by: sterni Reviewed-by: lukegb Tested-by: BuildkiteCI --- .../pkgs/fprintd/libfprint-tod-clean.nix | 81 ---------------------- 1 file changed, 81 deletions(-) delete mode 100644 users/glittershark/pkgs/fprintd/libfprint-tod-clean.nix (limited to 'users/glittershark/pkgs/fprintd/libfprint-tod-clean.nix') diff --git a/users/glittershark/pkgs/fprintd/libfprint-tod-clean.nix b/users/glittershark/pkgs/fprintd/libfprint-tod-clean.nix deleted file mode 100644 index d8e64f3cc1c9..000000000000 --- a/users/glittershark/pkgs/fprintd/libfprint-tod-clean.nix +++ /dev/null @@ -1,81 +0,0 @@ -{ stdenv -, pkgs -, fetchFromGitLab -, fetchurl -, pkgconfig -, meson -, ninja -, libusb -, gusb -, pixman -, gobject-introspection -, glib -, nss -, gtk3 -, python3 -, umockdev -, coreutils -, gtk-doc -, docbook_xsl -, docbook_xml_dtd_43 -}: - -stdenv.mkDerivation rec { - pname = "libfprint-tod-clean"; - version = "1.90.2"; - outputs = [ "out" "devdoc" ]; - - src = fetchFromGitLab { - domain = "gitlab.freedesktop.org"; - owner = "3v1n0"; - repo = "libfprint"; - rev = "0e123d0752538d834ee2cca8b471373369ad5e89"; - sha256 = "11yl3nikdyykamafqf3ys1wg7zx3rb81lf11ndd8sf9rkwwfgpn6"; - }; - - checkInputs = [ (python3.withPackages (ps: with ps; [ pycairo gobject ])) umockdev ]; - - nativeBuildInputs = [ - pkgconfig - meson - gobject-introspection - ninja - gtk-doc - docbook_xsl - docbook_xml_dtd_43 - ]; - - buildInputs = [ - libusb - gusb - pixman - glib - nss - gtk3 - ]; - - mesonFlags = [ - "-Dudev_rules_dir=${placeholder "out"}/lib/udev/rules.d" - "-Dx11-examples=false" - ]; - - doChecks = true; - - checkPhase = '' - meson test -C build --print-errorlogs - ''; - - postPatch = '' - substituteInPlace libfprint/meson.build \ - --replace /bin/echo ${coreutils}/bin/echo - ''; - - - meta = with stdenv.lib; { - homepage = https://fprint.freedesktop.org/; - description = "A library designed to make it easy to add support for consumer fingerprint readers"; - license = licenses.lgpl21; - platforms = platforms.linux; - maintainers = with maintainers; [ jobojeha ]; - }; -} -- cgit 1.4.1