1 { stdenv, lib, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "https://ftp.isc.org/isc/dhcp/${version}/dhcp-${version}.tar.gz";
9 sha256 = "sha256-CsQWu1WZfKhjIXT9EHN/1hzbjbonUhYKM1d1vCHcc8c=";
12 enableParallelBuilding = true;
14 # The Kea Migration Assistant lives as a subdirectory of the
15 # original ISC DHCP server source code.
16 makeFlags = [ "-C" "keama" ];
19 description = "Kea Migration Assistent";
22 Kea migration assistant is an experimental tool that reads a ISC DHCP server
23 configuration and produces a JSON configuration in Kea format.
26 homepage = "https://gitlab.isc.org/isc-projects/dhcp/-/wikis/kea-migration-assistant";
27 license = licenses.mpl20;
28 platforms = platforms.unix;
29 maintainers = with maintainers; [ blitz ];
30 mainProgram = "keama";