39d45a6b09
* Refactor the nix-channel unpacker a bit.
11 lines
222 B
Nix
11 lines
222 B
Nix
with import <nix/config.nix>;
|
|
|
|
{ system, inputs }:
|
|
|
|
derivation {
|
|
name = "channels";
|
|
builder = shell;
|
|
args = [ "-e" ./unpack-channel.sh ];
|
|
inherit system inputs bzip2 tar tr;
|
|
PATH = "${nixBinDir}:${coreutils}";
|
|
}
|