diff options
author | Vincent Ambo <mail@tazj.in> | 2021-04-07T12·34+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-04-11T22·13+0000 |
commit | 7deabb8c8d6f4c7e58e2b16548b8a1895795963b (patch) | |
tree | c7b55b5ec32d9c1e45ca3b4f33ef14d2cf82265f /users/glittershark/pkgs/fprintd/libfprint-tod-goodix.nix | |
parent | 9073ac18c48f2bcefc736839d6faf76a462bf433 (diff) |
chore(3p): Bump channels to 2021-04-09 r/2481
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 <grfn@gws.fyi> Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: lukegb <lukegb@tvl.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'users/glittershark/pkgs/fprintd/libfprint-tod-goodix.nix')
-rw-r--r-- | users/glittershark/pkgs/fprintd/libfprint-tod-goodix.nix | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/users/glittershark/pkgs/fprintd/libfprint-tod-goodix.nix b/users/glittershark/pkgs/fprintd/libfprint-tod-goodix.nix deleted file mode 100644 index f6d7d4ea98c9..000000000000 --- a/users/glittershark/pkgs/fprintd/libfprint-tod-goodix.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ stdenv -, pkgs -, fetchgit -, libfprint-tod ? (pkgs.callPackage ./libfprint-tod-clean.nix {}) -, git -, autoPatchelfHook -, libusb -, glibc -, -}: -stdenv.mkDerivation rec { - pname = "libfprint-2-tod1-xps9300-bin"; - version = "0.0.6"; - - src = fetchgit { - url = "git://git.launchpad.net/~oem-solutions-engineers/libfprint-2-tod1-goodix/+git/libfprint-2-tod1-goodix/"; - rev = "882735c6366fbe30149eea5cfd6d0ddff880f0e4"; - sha256 = "1x9h5x027s2avdhjhnfmmhdpgyf9x79fz8skcjd3rm3phnpr3zsj"; - }; - - buildInputs = [ - libfprint-tod - git - libusb - autoPatchelfHook - glibc - ]; - - installPhase = '' - install -dm 755 "$out/lib/udev/rules.d/" - install -dm 755 "$out/usr/lib/libfprint-2/tod-1/" - - sed -n -r '/Shenzhen/,/^\s*$/p' debian/copyright > LICENSE - install -Dm644 LICENSE "$out/usr/share/licenses/libfprint-2-tod1-xps9300-bin/LICENSE" - - install -Dm 755 usr/lib/x86_64-linux-gnu/libfprint-2/tod-1/libfprint-tod-goodix-53xc-0.0.6.so "$out/usr/lib/libfprint-2/tod-1/" - install -Dm 0755 lib/udev/rules.d/60-libfprint-2-tod1-goodix.rules "$out/lib/udev/rules.d/" - ''; - - meta = with stdenv.lib; { - homepage = "https://git.launchpad.net/~oem-solutions-engineers/libfprint-2-tod1-goodix/+git/libfprint-2-tod1-goodix"; - description = "Goodix driver module for libfprint-2 Touch OEM Driver"; - license = licenses.unfreeRedistributable; - platforms = platforms.linux; - maintainers = with maintainers; [ jobojeha ]; - }; -} |