iana-etc: 20170328 -> 20170417

This commit is contained in:
Jörg Thalheim 2017-04-19 08:27:04 +02:00
parent b017935103
commit 024cbbd520
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "iana-etc-${version}";
version = "20170328";
version = "20170417";
src = fetchurl {
url = "https://github.com/Mic92/iana-etc/releases/download/${version}/iana-etc-${version}.tar.gz";
sha256 = "0c0zgijmh035wan3pvz8ykkmkdbraml4b9kx36b4j1lj9fhgy1yk";
sha256 = "0gzv8ldyf3g70m4k3m50p2gbqwvxa343v2q4xcnl1jqfgw9db5wf";
};
installPhase = ''
@ -14,9 +14,10 @@ stdenv.mkDerivation rec {
cp services protocols $out/etc/
'';
meta = {
meta = with stdenv.lib; {
homepage = https://github.com/Mic92/iana-etc;
description = "IANA protocol and port number assignments (/etc/protocols and /etc/services)";
platforms = stdenv.lib.platforms.unix;
platforms = platforms.unix;
license = licenses.mit;
};
}