nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at devShellTools-shell 39 lines 943 B view raw
1{ 2 stdenv, 3 lib, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "keama"; 9 version = "4.4.3-P1"; 10 11 src = fetchurl { 12 url = "https://ftp.isc.org/isc/dhcp/${version}/dhcp-${version}.tar.gz"; 13 sha256 = "sha256-CsQWu1WZfKhjIXT9EHN/1hzbjbonUhYKM1d1vCHcc8c="; 14 }; 15 16 enableParallelBuilding = true; 17 18 # The Kea Migration Assistant lives as a subdirectory of the 19 # original ISC DHCP server source code. 20 makeFlags = [ 21 "-C" 22 "keama" 23 ]; 24 25 meta = with lib; { 26 description = "Kea Migration Assistent"; 27 28 longDescription = '' 29 Kea migration assistant is an experimental tool that reads a ISC DHCP server 30 configuration and produces a JSON configuration in Kea format. 31 ''; 32 33 homepage = "https://gitlab.isc.org/isc-projects/dhcp/-/wikis/kea-migration-assistant"; 34 license = licenses.mpl20; 35 platforms = platforms.unix; 36 maintainers = with maintainers; [ blitz ]; 37 mainProgram = "keama"; 38 }; 39}