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

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

83 lines
1.5 KiB
Nix
Raw Normal View History

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