From 9c1e72507b70c847abf2330dcf6e73137d8fccf2 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Thu, 18 Nov 2021 12:15:01 +0100 Subject: [PATCH] nixopsUnstable: Sort plugins --- pkgs/applications/networking/cluster/nixops/default.nix | 6 +++--- pkgs/applications/networking/cluster/nixops/pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/cluster/nixops/default.nix b/pkgs/applications/networking/cluster/nixops/default.nix index 87c4c2d6b2c8..1fd2e590de22 100644 --- a/pkgs/applications/networking/cluster/nixops/default.nix +++ b/pkgs/applications/networking/cluster/nixops/default.nix @@ -61,12 +61,12 @@ let ).python; pkg = interpreter.pkgs.nixops.withPlugins(ps: [ - ps.nixops-encrypted-links - ps.nixops-hercules-ci - ps.nixops-virtd ps.nixops-aws + ps.nixops-encrypted-links ps.nixops-gcp + ps.nixops-hercules-ci ps.nixopsvbox + ps.nixops-virtd ]) // rec { # Workaround for https://github.com/NixOS/nixpkgs/issues/119407 # TODO after #1199407: Use .overrideAttrs(pkg: old: { passthru.tests = .....; }) diff --git a/pkgs/applications/networking/cluster/nixops/pyproject.toml b/pkgs/applications/networking/cluster/nixops/pyproject.toml index 3cd3025b1fa5..3ee44623a6cd 100644 --- a/pkgs/applications/networking/cluster/nixops/pyproject.toml +++ b/pkgs/applications/networking/cluster/nixops/pyproject.toml @@ -8,10 +8,10 @@ authors = ["Adam Hoese "] python = "^3.8" nixops = {git = "https://github.com/NixOS/nixops.git"} nixops-aws = {git = "https://github.com/NixOS/nixops-aws.git"} -nixops-gcp = {git = "https://github.com/nix-community/nixops-gce.git"} -nixopsvbox = {git = "https://github.com/nix-community/nixops-vbox.git"} nixops-encrypted-links = {git = "https://github.com/nix-community/nixops-encrypted-links.git"} +nixops-gcp = {git = "https://github.com/nix-community/nixops-gce.git"} nixops-hercules-ci = {git = "https://github.com/hercules-ci/nixops-hercules-ci.git"} +nixopsvbox = {git = "https://github.com/nix-community/nixops-vbox.git"} nixops-virtd = {git = "https://github.com/nix-community/nixops-libvirtd.git"} [tool.poetry.dev-dependencies]