2006-12-09 01:54:11 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2009-05-28 14:42:41 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-03-19 11:57:24 +01:00
|
|
|
name = "iana-etc-${version}";
|
2018-04-07 09:26:53 +02:00
|
|
|
version = "20180405";
|
2006-12-09 01:54:11 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-03-19 11:57:24 +01:00
|
|
|
url = "https://github.com/Mic92/iana-etc/releases/download/${version}/iana-etc-${version}.tar.gz";
|
2018-04-07 09:26:53 +02:00
|
|
|
sha256 = "0x6i95arrc4lcq2il3r05hbnd9vsi87z4yc8s3agkvbj74d6hfhj";
|
2006-12-09 01:54:11 +01:00
|
|
|
};
|
|
|
|
|
2017-03-19 11:57:24 +01:00
|
|
|
installPhase = ''
|
2017-11-08 16:24:38 +01:00
|
|
|
install -D -t $out/etc services protocols
|
2017-03-19 11:57:24 +01:00
|
|
|
'';
|
2009-05-28 14:42:41 +02:00
|
|
|
|
2017-04-19 08:27:04 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-03-19 11:57:24 +01:00
|
|
|
homepage = https://github.com/Mic92/iana-etc;
|
2009-05-28 14:42:41 +02:00
|
|
|
description = "IANA protocol and port number assignments (/etc/protocols and /etc/services)";
|
2017-04-19 08:27:04 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit;
|
2009-05-28 14:42:41 +02:00
|
|
|
};
|
2006-12-09 01:57:16 +01:00
|
|
|
}
|