rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / keama / default.nix
blobc00f7d63f1f91b8e6499994fb18520c242bb1c8b
1 { stdenv, lib, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "keama";
5   version = "4.4.3-P1";
7   src = fetchurl {
8     url = "https://ftp.isc.org/isc/dhcp/${version}/dhcp-${version}.tar.gz";
9     sha256 = "sha256-CsQWu1WZfKhjIXT9EHN/1hzbjbonUhYKM1d1vCHcc8c=";
10   };
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" ];
18   meta = with lib; {
19     description = "Kea Migration Assistent";
21     longDescription = ''
22       Kea migration assistant is an experimental tool that reads a ISC DHCP server
23       configuration and produces a JSON configuration in Kea format.
24     '';
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";
31   };