about summary refs log blame commit diff
path: root/corepkgs/unpack-channel.nix
blob: b26bece30eae24665ddec8d1649688b3fc4e0a34 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

                             











                                               
                           

            
                                  
                  


                               
                                     
 

                                    


                                                                        
 
with import <nix/config.nix>;

let

  builder = builtins.toFile "unpack-channel.sh"
    ''
      mkdir $out
      cd $out
      ${bzip2} -d < $src | ${tar} xf -
      mv * $out/$channelName
    '';

in

{ name, channelName, src }:

derivation {
  system = builtins.currentSystem;
  builder = shell;
  args = [ "-e" builder ];
  inherit name channelName src;

  PATH = "${nixBinDir}:${coreutils}";

  # No point in doing this remotely.
  preferLocalBuild = true;

  # Don't build in a chroot because Nix's dependencies may not be there.
  __noChroot = true;
}