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