Unverified Commit becb1154 authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

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

parents 7706e991 445e2046
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
{
  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;