nixpkgs/pkgs/applications/misc/authenticator/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.4 KiB
Nix
Raw Normal View History

2021-05-02 18:23:40 +00:00
{ lib
, stdenv
, fetchFromGitLab
, appstream-glib
2022-04-26 04:05:16 +00:00
, clang
2021-05-02 18:23:40 +00:00
, desktop-file-utils
, meson
, ninja
, pkg-config
, rustPlatform
2022-05-18 05:17:43 +00:00
, wrapGAppsHook4
2021-05-02 18:23:40 +00:00
, gdk-pixbuf
, glib
, gst_all_1
, gtk4
, libadwaita
2022-04-26 04:05:16 +00:00
, libclang
2021-05-02 18:23:40 +00:00
, openssl
2022-04-26 04:05:16 +00:00
, pipewire
2021-05-02 18:23:40 +00:00
, sqlite
, wayland
, zbar
}:
stdenv.mkDerivation rec {
pname = "authenticator";
2022-06-14 19:26:25 +00:00
version = "4.1.6";
2021-05-02 18:23:40 +00:00
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "Authenticator";
rev = version;
2022-06-14 19:26:25 +00:00
hash = "sha256-fv7Np3haRCJABlJocKuu+1jevHYrdo+VyiQBpRmHs2g=";
2021-05-02 18:23:40 +00:00
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
2022-06-14 19:26:25 +00:00
hash = "sha256-8GddlDM1lU365GXdrKNhO331/y1p3Om5uZfVLy8TBGI=";
2021-05-02 18:23:40 +00:00
};
nativeBuildInputs = [
appstream-glib
desktop-file-utils
meson
ninja
pkg-config
2022-05-18 05:17:43 +00:00
wrapGAppsHook4
2021-05-02 18:23:40 +00:00
] ++ (with rustPlatform; [
cargoSetupHook
rust.cargo
rust.rustc
bindgenHook
2021-05-02 18:23:40 +00:00
]);
buildInputs = [
gdk-pixbuf
glib
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
2021-05-03 10:27:54 +00:00
(gst_all_1.gst-plugins-bad.override { enableZbar = true; })
2021-05-02 18:23:40 +00:00
gtk4
libadwaita
openssl
2022-04-26 04:05:16 +00:00
pipewire
2021-05-02 18:23:40 +00:00
sqlite
wayland
zbar
];
2022-04-26 04:05:16 +00:00
meta = {
2021-05-02 18:23:40 +00:00
description = "Two-factor authentication code generator for GNOME";
homepage = "https://gitlab.gnome.org/World/Authenticator";
2022-04-26 04:05:16 +00:00
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ dotlambda ];
platforms = lib.platforms.linux;
2021-05-02 18:23:40 +00:00
};
}