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}";
|
2017-11-08 15:24:38 +00:00
|
|
|
version = "20171106";
|
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";
|
2017-11-08 15:24:38 +00:00
|
|
|
sha256 = "0pbmq95gdkp66cljwklv4gzh8lvl30l4k77hfwvrxz5mfqia6qdd";
|
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
|
|
|
}
|