iana-etc: fixed output derivation (#44607)
This commit is contained in:
parent
53df81926a
commit
a3e4a9c1e4
@ -1,16 +1,16 @@
|
|||||||
{stdenv, fetchurl}:
|
{ stdenv, fetchzip }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
name = "iana-etc-${version}";
|
|
||||||
version = "20180711";
|
version = "20180711";
|
||||||
|
in fetchzip {
|
||||||
|
name = "iana-etc-${version}";
|
||||||
|
|
||||||
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 = "0vbgk3paix2v4rlh90a8yh1l39s322awng06izqj44zcg704fjbj";
|
||||||
sha256 = "0xigkz6pcqx55px7fap7j6p3hz27agv056crbl5pgfcdix7y8z26";
|
|
||||||
};
|
|
||||||
|
|
||||||
installPhase = ''
|
postFetch = ''
|
||||||
install -D -t $out/etc services protocols
|
tar -xzvf $downloadedFile --strip-components=1
|
||||||
|
install -D -m0644 -t $out/etc services protocols
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user