evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / au / authenticator / package.nix
blob57e8b76207314c20613fc61b960a64682729e25b
1 { lib
2 , stdenv
3 , fetchFromGitLab
4 , appstream-glib
5 , cargo
6 , desktop-file-utils
7 , meson
8 , ninja
9 , pkg-config
10 , rustPlatform
11 , rustc
12 , wrapGAppsHook4
13 , gdk-pixbuf
14 , glib
15 , gst_all_1
16 , gtk4
17 , libadwaita
18 , openssl
19 , pipewire
20 , sqlite
21 , wayland
22 , zbar
25 stdenv.mkDerivation rec {
26   pname = "authenticator";
27   version = "4.4.0";
29   src = fetchFromGitLab {
30     domain = "gitlab.gnome.org";
31     owner = "World";
32     repo = "Authenticator";
33     rev = version;
34     hash = "sha256-LNYhUDV5nM46qx29xXE6aCEdBo7VnwT61YgAW0ZXW30=";
35   };
37   cargoDeps = rustPlatform.fetchCargoTarball {
38     inherit src;
39     name = "${pname}-${version}";
40     hash = "sha256-ntkKH4P3Ui2NZSVy87hGAsRA1GDRwoK9UnA/nFjyLnA=";
41   };
43   nativeBuildInputs = [
44     appstream-glib
45     desktop-file-utils
46     meson
47     ninja
48     pkg-config
49     wrapGAppsHook4
50     rustPlatform.cargoSetupHook
51     cargo
52     rustc
53     rustPlatform.bindgenHook
54   ];
56   buildInputs = [
57     gdk-pixbuf
58     glib
59     gst_all_1.gstreamer
60     gst_all_1.gst-plugins-base
61     (gst_all_1.gst-plugins-bad.override { enableZbar = true; })
62     gtk4
63     libadwaita
64     openssl
65     pipewire
66     sqlite
67     wayland
68     zbar
69   ];
71   meta = {
72     description = "Two-factor authentication code generator for GNOME";
73     mainProgram = "authenticator";
74     homepage = "https://gitlab.gnome.org/World/Authenticator";
75     license = lib.licenses.gpl3Plus;
76     maintainers = with lib.maintainers; [ austinbutler ];
77     platforms = lib.platforms.linux;
78   };