2009-05-25 18:41:03 +01:00
|
|
|
# This module defines the packages that appear in
|
|
|
|
# /var/run/current-system/sw.
|
|
|
|
|
|
|
|
{pkgs, config, ...}:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2010-04-16 06:09:10 +01:00
|
|
|
cfg = config.environment;
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-05-29 14:15:31 +01:00
|
|
|
requiredPackages =
|
2009-05-25 18:41:03 +01:00
|
|
|
[ config.system.sbin.modprobe # must take precedence over module_init_tools
|
|
|
|
config.system.sbin.mount # must take precedence over util-linux
|
2009-11-06 09:36:35 +00:00
|
|
|
config.system.build.upstart
|
2009-05-25 18:41:03 +01:00
|
|
|
config.environment.nix
|
|
|
|
pkgs.acl
|
|
|
|
pkgs.attr
|
|
|
|
pkgs.bashInteractive # bash with ncurses support
|
|
|
|
pkgs.bzip2
|
|
|
|
pkgs.coreutils
|
|
|
|
pkgs.cpio
|
|
|
|
pkgs.curl
|
2009-06-12 12:12:46 +01:00
|
|
|
pkgs.diffutils
|
2009-09-26 19:57:34 +01:00
|
|
|
pkgs.eject # HAL depends on it anyway
|
2009-05-25 18:41:03 +01:00
|
|
|
pkgs.findutils
|
2009-06-12 12:12:46 +01:00
|
|
|
pkgs.gawk
|
2009-05-25 18:41:03 +01:00
|
|
|
pkgs.glibc # for ldd, getent
|
|
|
|
pkgs.gnugrep
|
2009-06-12 12:12:46 +01:00
|
|
|
pkgs.gnupatch
|
2009-05-25 18:41:03 +01:00
|
|
|
pkgs.gnused
|
|
|
|
pkgs.gnutar
|
|
|
|
pkgs.gzip
|
|
|
|
pkgs.less
|
|
|
|
pkgs.libcap
|
|
|
|
pkgs.man
|
|
|
|
pkgs.module_init_tools
|
|
|
|
pkgs.nano
|
|
|
|
pkgs.ncurses
|
|
|
|
pkgs.netcat
|
|
|
|
pkgs.ntp
|
|
|
|
pkgs.openssh
|
|
|
|
pkgs.pciutils
|
|
|
|
pkgs.perl
|
|
|
|
pkgs.procps
|
|
|
|
pkgs.rsync
|
|
|
|
pkgs.seccure
|
|
|
|
pkgs.strace
|
|
|
|
pkgs.sysklogd
|
|
|
|
pkgs.sysvtools
|
|
|
|
pkgs.time
|
|
|
|
pkgs.udev
|
|
|
|
pkgs.usbutils
|
|
|
|
pkgs.utillinux
|
2009-09-28 19:26:18 +01:00
|
|
|
];
|
2009-06-05 13:57:44 +01:00
|
|
|
|
2009-05-25 18:41:03 +01:00
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
environment = {
|
|
|
|
|
|
|
|
systemPackages = mkOption {
|
2009-09-28 19:26:18 +01:00
|
|
|
default = [];
|
2010-05-28 12:24:41 +01:00
|
|
|
example = "[ pkgs.icecat3 pkgs.thunderbird ]";
|
2009-05-25 18:41:03 +01:00
|
|
|
description = ''
|
|
|
|
The set of packages that appear in
|
|
|
|
/var/run/current-system/sw. These packages are
|
|
|
|
automatically available to all users, and are
|
|
|
|
automatically updated every time you rebuild the system
|
|
|
|
configuration. (The latter is the main difference with
|
|
|
|
installing them in the default profile,
|
2011-10-29 22:03:57 +01:00
|
|
|
<filename>${config.nixpkgs.config.nix.stateDir}/nix/profiles/default</filename>.
|
2009-05-25 18:41:03 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
pathsToLink = mkOption {
|
2010-04-15 16:46:55 +01:00
|
|
|
# Note: We need `/lib' to be among `pathsToLink' for NSS modules
|
|
|
|
# to work.
|
2010-04-16 06:09:10 +01:00
|
|
|
default = [];
|
2009-05-25 18:41:03 +01:00
|
|
|
example = ["/"];
|
|
|
|
description = "
|
|
|
|
Lists directories to be symlinked in `/var/run/current-system/sw'.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
system = {
|
|
|
|
|
|
|
|
path = mkOption {
|
2010-04-16 06:09:10 +01:00
|
|
|
default = cfg.systemPackages;
|
2009-05-25 18:41:03 +01:00
|
|
|
description = ''
|
|
|
|
The packages you want in the boot environment.
|
|
|
|
'';
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-05-25 18:41:03 +01:00
|
|
|
apply = list: pkgs.buildEnv {
|
|
|
|
name = "system-path";
|
|
|
|
paths = list;
|
2010-04-16 06:09:10 +01:00
|
|
|
inherit (cfg) pathsToLink;
|
2009-05-25 18:41:03 +01:00
|
|
|
ignoreCollisions = true;
|
2010-08-09 22:59:34 +01:00
|
|
|
# !!! Hacky, should modularise.
|
2010-07-08 13:55:18 +01:00
|
|
|
postBuild =
|
|
|
|
''
|
2011-02-05 06:58:15 +00:00
|
|
|
if [ -x $out/bin/update-mime-database -a -w $out/share/mime/packages ]; then
|
2010-07-08 13:55:18 +01:00
|
|
|
$out/bin/update-mime-database -V $out/share/mime
|
|
|
|
fi
|
2010-08-09 22:59:34 +01:00
|
|
|
|
2010-08-11 16:10:17 +01:00
|
|
|
if [ -x $out/bin/gtk-update-icon-cache -a -f $out/share/icons/hicolor/index.theme ]; then
|
2010-08-09 22:59:34 +01:00
|
|
|
$out/bin/gtk-update-icon-cache $out/share/icons/hicolor
|
|
|
|
fi
|
2010-07-08 13:55:18 +01:00
|
|
|
'';
|
2009-05-25 18:41:03 +01:00
|
|
|
};
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-05-25 18:41:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-05-25 18:41:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
require = [options];
|
2009-05-29 14:15:31 +01:00
|
|
|
|
|
|
|
environment.systemPackages = requiredPackages;
|
2010-08-16 09:00:18 +01:00
|
|
|
environment.pathsToLink = ["/bin" "/sbin" "/lib" "/share/man" "/share/info" "/share/emacs" "/man" "/info" "/etc/xdg"];
|
2009-05-25 18:41:03 +01:00
|
|
|
}
|