Merge pull request #183154 from mweinelt/kea-2.2.0

This commit is contained in:
ajs124 2022-07-28 13:21:39 +02:00 committed by GitHub
commit 8b56c85a9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,8 @@
import ./make-test-python.nix ({ pkgs, lib, ...}: {
meta.maintainers = with lib.maintainers; [ hexa ];
name = "kea";
nodes = {
router = { config, pkgs, ... }: {
virtualisation.vlans = [ 1 ];

View file

@ -14,11 +14,11 @@
stdenv.mkDerivation rec {
pname = "kea";
version = "2.0.2"; # only even minor versions are stable
version = "2.2.0"; # only even minor versions are stable
src = fetchurl {
url = "https://ftp.isc.org/isc/${pname}/${version}/${pname}-${version}.tar.gz";
sha256 = "sha256-jSghO9yOK7hwo4OzCsHlPVTh66Q9L4blFRsItmqmzzI=";
sha256 = "sha256-2n2QymKncmAtrG535QcxkDhCKJWtaO6xQvFIfWfVMdI=";
};
patches = [ ./dont-create-var.patch ];