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

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

79 lines
1.4 KiB
Nix
Raw Normal View History

2021-05-02 18:23:40 +00:00
{ lib
, stdenv
, fetchFromGitLab
, appstream-glib
, cargo
2021-05-02 18:23:40 +00:00
, desktop-file-utils
, meson
, ninja
, pkg-config
, rustPlatform
, rustc
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
, 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";
2023-04-20 23:28:03 +00:00
version = "4.3.0";
2021-05-02 18:23:40 +00:00
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "Authenticator";
rev = version;
2023-04-20 23:28:03 +00:00
hash = "sha256-WR5gXGry4wti2M4D/IQvwI7OSak1p+O+XAhr01hdv2Q=";
2021-05-02 18:23:40 +00:00
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
2023-04-20 23:28:03 +00:00
hash = "sha256-ZVDKTJojblVCbbdtnqcL+UVW1vkmu99AXCbgyCGNHCM=";
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
rustPlatform.cargoSetupHook
cargo
rustc
rustPlatform.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; [ austinbutler ];
2022-04-26 04:05:16 +00:00
platforms = lib.platforms.linux;
2021-05-02 18:23:40 +00:00
};
}