mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
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}";
|
|
}
|