tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nixopsUnstable: Sort plugins
Robert Hensing
4 years ago
9c1e7250
6aabe7f7
+5
-5
2 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
cluster
nixops
default.nix
pyproject.toml
+3
-3
pkgs/applications/networking/cluster/nixops/default.nix
···
61
61
).python;
62
62
63
63
pkg = interpreter.pkgs.nixops.withPlugins(ps: [
64
64
-
ps.nixops-encrypted-links
65
65
-
ps.nixops-hercules-ci
66
66
-
ps.nixops-virtd
67
64
ps.nixops-aws
65
65
+
ps.nixops-encrypted-links
68
66
ps.nixops-gcp
67
67
+
ps.nixops-hercules-ci
69
68
ps.nixopsvbox
69
69
+
ps.nixops-virtd
70
70
]) // rec {
71
71
# Workaround for https://github.com/NixOS/nixpkgs/issues/119407
72
72
# TODO after #1199407: Use .overrideAttrs(pkg: old: { passthru.tests = .....; })
+2
-2
pkgs/applications/networking/cluster/nixops/pyproject.toml
···
8
8
python = "^3.8"
9
9
nixops = {git = "https://github.com/NixOS/nixops.git"}
10
10
nixops-aws = {git = "https://github.com/NixOS/nixops-aws.git"}
11
11
-
nixops-gcp = {git = "https://github.com/nix-community/nixops-gce.git"}
12
12
-
nixopsvbox = {git = "https://github.com/nix-community/nixops-vbox.git"}
13
11
nixops-encrypted-links = {git = "https://github.com/nix-community/nixops-encrypted-links.git"}
12
12
+
nixops-gcp = {git = "https://github.com/nix-community/nixops-gce.git"}
14
13
nixops-hercules-ci = {git = "https://github.com/hercules-ci/nixops-hercules-ci.git"}
14
14
+
nixopsvbox = {git = "https://github.com/nix-community/nixops-vbox.git"}
15
15
nixops-virtd = {git = "https://github.com/nix-community/nixops-libvirtd.git"}
16
16
17
17
[tool.poetry.dev-dependencies]