2021-10-06 13:57:05 +00:00
|
|
|
{ lib, fetchzip, stdenvNoCC, writeText }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-04-15 01:41:22 +00:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
pname = "iana-etc";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "20240318";
|
2022-10-21 18:38:19 +00:00
|
|
|
|
2021-10-06 13:57:05 +00:00
|
|
|
src = fetchzip {
|
|
|
|
url = "https://github.com/Mic92/iana-etc/releases/download/${version}/iana-etc-${version}.tar.gz";
|
2024-04-21 15:54:59 +00:00
|
|
|
sha256 = "sha256-t/VOTFDdAH+EdzofdMyUO9Yvl5qdMjdPl9ebYtBC388=";
|
2021-10-06 13:57:05 +00:00
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-10-06 13:57:05 +00:00
|
|
|
installPhase = ''
|
2020-04-24 23:36:52 +00:00
|
|
|
install -D -m0644 -t $out/etc services protocols
|
|
|
|
'';
|
|
|
|
|
2021-10-06 13:57:05 +00:00
|
|
|
setupHook = writeText "setup-hook" ''
|
|
|
|
export NIX_ETC_PROTOCOLS=@out@/etc/protocols
|
|
|
|
export NIX_ETC_SERVICES=@out@/etc/services
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/Mic92/iana-etc";
|
|
|
|
description = "IANA protocol and port number assignments (/etc/protocols and /etc/services)";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|