mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
module-init-tools: disable on Darwin to fix evaluation error
This commit is contained in:
parent
1fae9a36aa
commit
5ec07e4bf3
1 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
{ stdenv, fetchurl, docbook2x, docbook_sgml_dtd_41 }:
|
||||
|
||||
assert (stdenv.lib.elem stdenv.system stdenv.lib.platforms.linux);
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "module-init-tools-3.16";
|
||||
|
||||
|
@ -31,5 +33,6 @@ stdenv.mkDerivation {
|
|||
meta = {
|
||||
homepage = http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/;
|
||||
description = "Tools for loading and managing Linux kernel modules";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue