10 lines
115 B
Nix
10 lines
115 B
Nix
|
{ ... }:
|
||
|
res: pkgs: super:
|
||
|
|
||
|
with pkgs;
|
||
|
{
|
||
|
zstd = callPackage ./. {
|
||
|
cmake = buildPackages.cmakeMinimal;
|
||
|
};
|
||
|
}
|