mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
keama: init at 4.4.3-P1
This commit is contained in:
parent
4e37b4e55b
commit
4f3419afdf
2 changed files with 33 additions and 0 deletions
31
pkgs/tools/networking/keama/default.nix
Normal file
31
pkgs/tools/networking/keama/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ stdenv, lib, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "keama";
|
||||
version = "4.4.3-P1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://ftp.isc.org/isc/dhcp/${version}/dhcp-${version}.tar.gz";
|
||||
sha256 = "sha256-CsQWu1WZfKhjIXT9EHN/1hzbjbonUhYKM1d1vCHcc8c=";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
# The Kea Migration Assistant lives as a subdirectory of the
|
||||
# original ISC DHCP server source code.
|
||||
makeFlags = [ "-C" "keama" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Kea Migration Assistent";
|
||||
|
||||
longDescription = ''
|
||||
Kea migration assistant is an experimental tool that reads a ISC DHCP server
|
||||
configuration and produces a JSON configuration in Kea format.
|
||||
'';
|
||||
|
||||
homepage = "https://gitlab.isc.org/isc-projects/dhcp/-/wikis/kea-migration-assistant";
|
||||
license = licenses.mpl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ blitz ];
|
||||
};
|
||||
}
|
|
@ -9615,6 +9615,8 @@ with pkgs;
|
|||
|
||||
kea = callPackage ../tools/networking/kea { };
|
||||
|
||||
keama = callPackage ../tools/networking/keama { };
|
||||
|
||||
iredis = callPackage ../tools/admin/iredis { };
|
||||
|
||||
ispell = callPackage ../tools/text/ispell { };
|
||||
|
|
Loading…
Reference in a new issue