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

23 lines
617 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
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";
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";
};
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
'';
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;
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;
};
}