12 lines
205 B
Nix
12 lines
205 B
Nix
{ ... }:
|
|
res: pkgs: super:
|
|
|
|
with pkgs;
|
|
{
|
|
memstream = callPackage ./. { };
|
|
memstreamHook = makeSetupHook {
|
|
name = "memstream-hook";
|
|
propagatedBuildInputs = [ memstream ];
|
|
} ./setup-hook.sh;
|
|
}
|