Commit f1fb3651 authored by Matthew Bauer's avatar Matthew Bauer
Browse files

quota: get from unixtools

parent 47fdc26c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3491,6 +3491,8 @@ with pkgs;
  limesurvey = callPackage ../servers/limesurvey { };
  linuxquota = callPackage ../tools/misc/linuxquota { };
  localtime = callPackage ../tools/system/localtime { };
  logcheck = callPackage ../tools/system/logcheck {
@@ -4512,7 +4514,7 @@ with pkgs;
  quilt = callPackage ../development/tools/quilt { };
  linuxquota = callPackage ../tools/misc/linuxquota { };
  quota = if stdenv.isLinux then linuxquota else unixtools.quota;
  wiggle = callPackage ../development/tools/wiggle { };
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ in rec {
    darwin = pkgs.darwin.ps;
  };
  quota = singleBinary "quota" {
    linux = pkgs.utillinux;
    linux = pkgs.linuxquota;
    darwin = pkgs.darwin.diskdev_cmds;
  };
  route = singleBinary "route" {