Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Darwin devdisk commands and put them in unixtools #38880

Merged
merged 7 commits into from Apr 13, 2018

Conversation

matthewbauer
Copy link
Member

Motivation for this change

Some new packages, cleanups, etc.

modprobe only exists in Linux kernel. Just use kmod if it's needed.
- Adds ifconfig to nettools
- Adds top to procps
- Adds fsck, fdisk, mount, umount, quota to utillinux
@GrahamcOfBorg GrahamcOfBorg added the 6.topic: darwin Running or building packages on Darwin label Apr 12, 2018
@hedning
Copy link
Contributor

hedning commented Apr 13, 2018

I think this (specifically 8287ba1) broke something. unixtools.utillinux won't build on linux due to missing quota: https://hydra.nixos.org/build/72827257

@hedning
Copy link
Contributor

hedning commented Apr 13, 2018

I'm guessing the problem is the quota binary living in pkgs.quota not pkgs.utillinux. This makes it build for me on linux at least:

modified   pkgs/top-level/unix-tools.nix
@@ -92,7 +92,7 @@ in rec {
     darwin = pkgs.darwin.ps;
   };
   quota = singleBinary "quota" {
-    linux = pkgs.utillinux;
+    linux = pkgs.quota;
     darwin = pkgs.darwin.diskdev_cmds;
   };
   route = singleBinary "route" {

@matthewbauer matthewbauer deleted the darwin-devdisk branch February 22, 2019 04:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants