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
1 changed files with 5 additions and 4 deletions

View File

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