nixopsUnstable: Add nixops-hercules-ci

conduit-nginx
Robert Hensing 2021-10-06 13:31:06 +02:00
parent 21dbe75ffe
commit b4dcb690f3
4 changed files with 32 additions and 1 deletions

View File

@ -62,6 +62,7 @@ let
pkg = interpreter.pkgs.nixops.withPlugins(ps: [ pkg = interpreter.pkgs.nixops.withPlugins(ps: [
ps.nixops-encrypted-links ps.nixops-encrypted-links
ps.nixops-hercules-ci
ps.nixops-virtd ps.nixops-virtd
ps.nixops-aws ps.nixops-aws
ps.nixops-gcp ps.nixops-gcp

View File

@ -41,6 +41,16 @@ self: super: {
} }
); );
nixops-hercules-ci = super.nixops-hercules-ci.overridePythonAttrs (
_: {
src = pkgs.fetchgit {
url = "https://github.com/hercules-ci/nixops-hercules-ci.git";
rev = "e601d5baffd003fd5f22deeaea0cb96444b054dc";
sha256 = "0rcpv5hc6l9ia8lq8ivwa80b2pwssmdz8an25lhr4i2472mpx1p0";
};
}
);
nixops-virtd = super.nixops-virtd.overridePythonAttrs ( nixops-virtd = super.nixops-virtd.overridePythonAttrs (
_: { _: {
src = pkgs.fetchgit { src = pkgs.fetchgit {

View File

@ -269,6 +269,24 @@ url = "https://github.com/nix-community/nixops-gce.git"
reference = "master" reference = "master"
resolved_reference = "712453027486e62e087b9c91e4a8a171eebb6ddd" resolved_reference = "712453027486e62e087b9c91e4a8a171eebb6ddd"
[[package]]
name = "nixops-hercules-ci"
version = "0.1.0"
description = ""
category = "main"
optional = false
python-versions = "^3.8"
develop = false
[package.dependencies]
nixops = {git = "https://github.com/NixOS/nixops.git", branch = "master"}
[package.source]
type = "git"
url = "https://github.com/hercules-ci/nixops-hercules-ci.git"
reference = "master"
resolved_reference = "e601d5baffd003fd5f22deeaea0cb96444b054dc"
[[package]] [[package]]
name = "nixops-virtd" name = "nixops-virtd"
version = "1.0" version = "1.0"
@ -583,7 +601,7 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
[metadata] [metadata]
lock-version = "1.1" lock-version = "1.1"
python-versions = "^3.8" python-versions = "^3.8"
content-hash = "bd064837654a0d4a4691b3df01338b92c95a449ff400a9cd49fee843ab13ee92" content-hash = "8a294b2745b271983bac54258b4f3a2ab3b2e5b218440329fa7eea482c63774f"
[metadata.files] [metadata.files]
alabaster = [ alabaster = [
@ -756,6 +774,7 @@ nixops = []
nixops-aws = [] nixops-aws = []
nixops-encrypted-links = [] nixops-encrypted-links = []
nixops-gcp = [] nixops-gcp = []
nixops-hercules-ci = []
nixops-virtd = [] nixops-virtd = []
nixopsvbox = [] nixopsvbox = []
nixos-modules-contrib = [] nixos-modules-contrib = []

View File

@ -11,6 +11,7 @@ nixops-aws = {git = "https://github.com/NixOS/nixops-aws.git"}
nixops-gcp = {git = "https://github.com/nix-community/nixops-gce.git"} nixops-gcp = {git = "https://github.com/nix-community/nixops-gce.git"}
nixopsvbox = {git = "https://github.com/nix-community/nixops-vbox.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-encrypted-links = {git = "https://github.com/nix-community/nixops-encrypted-links.git"}
nixops-hercules-ci = {git = "https://github.com/hercules-ci/nixops-hercules-ci.git"}
nixops-virtd = {git = "https://github.com/nix-community/nixops-libvirtd.git"} nixops-virtd = {git = "https://github.com/nix-community/nixops-libvirtd.git"}
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]