remove 19.03 and 19.09 channels

Those are not receiving any more updates. Fix Nix invocations.
This commit is contained in:
zimbatm 2020-07-07 12:21:47 +02:00
parent 061bb32ed2
commit a720d8ee4f
No known key found for this signature in database
GPG key ID: 71BAF6D40C1D63D7
6 changed files with 35 additions and 51 deletions

View file

@ -112,11 +112,13 @@ let
"PAGER=less"
"PATH=/nix/var/nix/profiles/default/bin"
"SSL_CERT_FILE=/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt"
]
++ lib.optional
(channel != "")
"NIX_PATH=nixpkgs=channel:${channel}"
;
(
if channel != "" then
"NIX_PATH=nixpkgs=channel:${channel}"
else
"NIX_PATH=nixpkgs=${../nix/fake_nixpkgs}"
)
];
Labels = {
# https://github.com/microscaling/microscaling/blob/55a2d7b91ce7513e07f8b1fd91bbed8df59aed5a/Dockerfile#L22-L33
"org.label-schema.vcs-ref" = "master";