nixpkgs/pkgs/data/misc/iana-etc/default.nix

23 lines
617 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
2017-03-19 03:57:24 -07:00
name = "iana-etc-${version}";
2018-01-13 01:45:51 -08:00
version = "20180108";
src = fetchurl {
2017-03-19 03:57:24 -07:00
url = "https://github.com/Mic92/iana-etc/releases/download/${version}/iana-etc-${version}.tar.gz";
2018-01-13 01:45:51 -08:00
sha256 = "1x4jacrvjwcsan88rg2wf2a8bajsglg6w4396vbr18zh0sya84a2";
};
2017-03-19 03:57:24 -07:00
installPhase = ''
2017-11-08 07:24:38 -08:00
install -D -t $out/etc services protocols
2017-03-19 03:57:24 -07:00
'';
2017-04-18 23:27:04 -07:00
meta = with stdenv.lib; {
2017-03-19 03:57:24 -07:00
homepage = https://github.com/Mic92/iana-etc;
description = "IANA protocol and port number assignments (/etc/protocols and /etc/services)";
2017-04-18 23:27:04 -07:00
platforms = platforms.unix;
license = licenses.mit;
};
}