blob: eba957dff4e7d4e37b6be9826e5cb0b70443d4ba (
plain) (
tree)
|
|
with import <nix/config.nix>;
{ name, src }:
derivation {
system = builtins.currentSystem;
builder = shell;
args = [ "-e" ./unpack-channel.sh ];
inherit name src bzip2 tar tr;
PATH = "${nixBinDir}:${coreutils}";
}
|