about summary refs log blame commit diff
path: root/corepkgs/unpack-channel.nix
blob: 170f3ab07c77c76df06a3c31a9050e8adb5f3975 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             
                           

            
                                  

                                      
                                            

                                     
with import <nix/config.nix>;

{ name, channelName, src }:

derivation {
  system = builtins.currentSystem;
  builder = shell;
  args = [ "-e" ./unpack-channel.sh ];
  inherit name channelName src bzip2 tar tr;
  PATH = "${nixBinDir}:${coreutils}";
}