forked from mirrors/nixpkgs
quota: get from unixtools
This commit is contained in:
parent
47fdc26c26
commit
f1fb3651d8
|
@ -3491,6 +3491,8 @@ with pkgs;
|
||||||
|
|
||||||
limesurvey = callPackage ../servers/limesurvey { };
|
limesurvey = callPackage ../servers/limesurvey { };
|
||||||
|
|
||||||
|
linuxquota = callPackage ../tools/misc/linuxquota { };
|
||||||
|
|
||||||
localtime = callPackage ../tools/system/localtime { };
|
localtime = callPackage ../tools/system/localtime { };
|
||||||
|
|
||||||
logcheck = callPackage ../tools/system/logcheck {
|
logcheck = callPackage ../tools/system/logcheck {
|
||||||
|
@ -4512,7 +4514,7 @@ with pkgs;
|
||||||
|
|
||||||
quilt = callPackage ../development/tools/quilt { };
|
quilt = callPackage ../development/tools/quilt { };
|
||||||
|
|
||||||
linuxquota = callPackage ../tools/misc/linuxquota { };
|
quota = if stdenv.isLinux then linuxquota else unixtools.quota;
|
||||||
|
|
||||||
wiggle = callPackage ../development/tools/wiggle { };
|
wiggle = callPackage ../development/tools/wiggle { };
|
||||||
|
|
||||||
|
|
|
@ -92,7 +92,7 @@ in rec {
|
||||||
darwin = pkgs.darwin.ps;
|
darwin = pkgs.darwin.ps;
|
||||||
};
|
};
|
||||||
quota = singleBinary "quota" {
|
quota = singleBinary "quota" {
|
||||||
linux = pkgs.utillinux;
|
linux = pkgs.linuxquota;
|
||||||
darwin = pkgs.darwin.diskdev_cmds;
|
darwin = pkgs.darwin.diskdev_cmds;
|
||||||
};
|
};
|
||||||
route = singleBinary "route" {
|
route = singleBinary "route" {
|
||||||
|
|
Loading…
Reference in a new issue