about summary refs log tree commit diff
path: root/corepkgs/nar/unnar.nix
blob: a18e499b24f7a20c259bda6d7f7ca9de86edd024 (plain) (blame)
1
2
3
4
5
6
7
{system, narFile, outPath}: derivation {
  name = "unnar";
  builder = ./unnar.sh;
  system = system;
  narFile = narFile;
  outPath = outPath;
}