1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/corepkgs/nar/unnar.nix

8 lines
146 B
Nix
Raw Normal View History

2003-11-22 15:39:51 -05:00
{system, narFile, outPath}: derivation {
name = "unnar";
builder = ./unnar.sh;
system = system;
narFile = narFile;
outPath = outPath;
}