1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-26 11:41:15 +02:00

<nix/fetchurl.nix>: Support xz-compressed NARs

This commit is contained in:
Eelco Dolstra 2015-10-30 12:33:40 +01:00
parent dae5dc7ade
commit 1f735a3440
7 changed files with 80 additions and 2 deletions

View file

@ -0,0 +1,9 @@
#pragma once
#include <string>
namespace nix {
std::string decompressXZ(const std::string & in);
}