11 lines
132 B
Nix
11 lines
132 B
Nix
|
{ ... }:
|
||
|
res: pkgs: super:
|
||
|
|
||
|
with pkgs;
|
||
|
{
|
||
|
procps =
|
||
|
if stdenv.isLinux
|
||
|
then callPackage ./. { }
|
||
|
else unixtools.procps;
|
||
|
}
|