nm-file-secret-agent: v1.0.1 -> v1.1.0 (#398189)

This commit is contained in:
jopejoe1
2025-04-14 19:02:31 +02:00
committed by GitHub
@@ -1,6 +1,6 @@
{
lib,
fetchFromGitHub,
fetchFromGitea,
rustPlatform,
dbus,
networkmanager,
@@ -9,16 +9,17 @@
}:
rustPlatform.buildRustPackage rec {
name = "nm-file-secret-agent";
version = "1.0.1";
version = "1.1.0";
src = fetchFromGitHub {
owner = "lilioid";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "lilly";
repo = "nm-file-secret-agent";
rev = "v${version}";
hash = "sha256-xQWgNxrbpHOfnKXa57cV1F3JmtJcvQsqUfgwfWg5Ni4=";
hash = "sha256-FZef9qMJeQkoLvCHcsGMqr0riC98WVXntQtbt76Iev4=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-Q2RQ6pWYKOr/6nD7PLpTonVldOfyUu2lvwNRAc8zkLg=";
cargoHash = "sha256-HYyL0r9YrDL22uQdypJQ7Xep9Uqt4b16bhl0D9kRByU=";
buildInputs = [ dbus ];
nativeBuildInputs = [ pkg-config ];
@@ -27,7 +28,7 @@ rustPlatform.buildRustPackage rec {
meta = {
description = "NetworkManager secret agent that responds with the content of preconfigured files";
mainProgram = "nm-file-secret-agent";
homepage = "https://github.com/lilioid/nm-file-secret-agent/";
homepage = "https://codeberg.org/lilly/nm-file-secret-agent";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lilioid ];
platforms = lib.lists.intersectLists dbus.meta.platforms networkmanager.meta.platforms;