2009-05-25 19:41:03 +02:00
|
|
|
# This module defines the packages that appear in
|
2012-07-16 17:27:59 +02:00
|
|
|
# /run/current-system/sw.
|
2009-05-25 19:41:03 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-05-25 19:41:03 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2009-05-25 19:41:03 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2009-05-29 15:15:31 +02:00
|
|
|
requiredPackages =
|
2013-10-28 16:28:04 +01:00
|
|
|
[ config.nix.package
|
2009-05-25 19:41:03 +02:00
|
|
|
pkgs.acl
|
|
|
|
pkgs.attr
|
|
|
|
pkgs.bashInteractive # bash with ncurses support
|
|
|
|
pkgs.bzip2
|
|
|
|
pkgs.coreutils
|
|
|
|
pkgs.cpio
|
|
|
|
pkgs.curl
|
2009-06-12 13:12:46 +02:00
|
|
|
pkgs.diffutils
|
2009-05-25 19:41:03 +02:00
|
|
|
pkgs.findutils
|
2009-06-12 13:12:46 +02:00
|
|
|
pkgs.gawk
|
2009-05-25 19:41:03 +02:00
|
|
|
pkgs.glibc # for ldd, getent
|
|
|
|
pkgs.gnugrep
|
2009-06-12 13:12:46 +02:00
|
|
|
pkgs.gnupatch
|
2009-05-25 19:41:03 +02:00
|
|
|
pkgs.gnused
|
2012-03-04 16:47:44 +01:00
|
|
|
pkgs.gnutar
|
2009-05-25 19:41:03 +02:00
|
|
|
pkgs.gzip
|
2013-01-30 15:01:31 +01:00
|
|
|
pkgs.xz
|
2009-05-25 19:41:03 +02:00
|
|
|
pkgs.less
|
|
|
|
pkgs.libcap
|
|
|
|
pkgs.nano
|
|
|
|
pkgs.ncurses
|
|
|
|
pkgs.netcat
|
2015-06-27 02:09:58 +02:00
|
|
|
config.programs.ssh.package
|
2009-05-25 19:41:03 +02:00
|
|
|
pkgs.perl
|
|
|
|
pkgs.procps
|
|
|
|
pkgs.strace
|
2014-04-05 20:41:23 +02:00
|
|
|
pkgs.su
|
2009-05-25 19:41:03 +02:00
|
|
|
pkgs.time
|
2015-08-17 18:04:16 +02:00
|
|
|
pkgs.texinfoInteractive
|
2012-12-17 19:09:05 +01:00
|
|
|
pkgs.utillinux
|
2016-05-11 11:36:21 +02:00
|
|
|
pkgs.which # 88K size
|
2009-09-28 20:26:18 +02:00
|
|
|
];
|
2009-06-05 14:57:44 +02:00
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
in
|
2009-05-25 19:41:03 +02:00
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
{
|
2009-05-25 19:41:03 +02:00
|
|
|
options = {
|
|
|
|
|
|
|
|
environment = {
|
|
|
|
|
|
|
|
systemPackages = mkOption {
|
2015-02-09 21:49:01 +01:00
|
|
|
type = types.listOf types.package;
|
2009-09-28 20:26:18 +02:00
|
|
|
default = [];
|
2014-08-27 22:44:56 +02:00
|
|
|
example = literalExample "[ pkgs.firefox pkgs.thunderbird ]";
|
2009-05-25 19:41:03 +02:00
|
|
|
description = ''
|
|
|
|
The set of packages that appear in
|
2012-07-16 17:27:59 +02:00
|
|
|
/run/current-system/sw. These packages are
|
2009-05-25 19:41:03 +02:00
|
|
|
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-30 16:19:58 +01:00
|
|
|
<filename>/nix/var/nix/profiles/default</filename>.
|
2009-05-25 19:41:03 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
pathsToLink = mkOption {
|
2013-10-30 14:18:41 +01:00
|
|
|
type = types.listOf types.str;
|
2010-04-15 17:46:55 +02:00
|
|
|
# Note: We need `/lib' to be among `pathsToLink' for NSS modules
|
|
|
|
# to work.
|
2010-04-16 07:09:10 +02:00
|
|
|
default = [];
|
2009-05-25 19:41:03 +02:00
|
|
|
example = ["/"];
|
2015-10-30 14:13:47 +01:00
|
|
|
description = "List of directories to be symlinked in <filename>/run/current-system/sw</filename>.";
|
2009-05-25 19:41:03 +02:00
|
|
|
};
|
2015-10-30 14:13:47 +01:00
|
|
|
|
2016-03-14 12:19:37 +01:00
|
|
|
extraOutputsToInstall = mkOption {
|
2015-10-30 14:13:47 +01:00
|
|
|
type = types.listOf types.str;
|
2015-11-27 14:49:54 +01:00
|
|
|
default = [ ];
|
2016-09-01 11:07:23 +02:00
|
|
|
example = [ "doc" "info" "devdoc" ];
|
2016-01-28 11:24:18 +01:00
|
|
|
description = "List of additional package outputs to be symlinked into <filename>/run/current-system/sw</filename>.";
|
2009-05-25 19:41:03 +02:00
|
|
|
};
|
2015-10-30 14:13:47 +01:00
|
|
|
|
2009-05-25 19:41:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
system = {
|
|
|
|
|
|
|
|
path = mkOption {
|
2013-10-23 16:59:33 +02:00
|
|
|
internal = true;
|
2009-05-25 19:41:03 +02:00
|
|
|
description = ''
|
|
|
|
The packages you want in the boot environment.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-05-25 19:41:03 +02:00
|
|
|
};
|
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
config = {
|
2009-05-25 19:41:03 +02:00
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
environment.systemPackages = requiredPackages;
|
2009-05-25 19:41:03 +02:00
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
environment.pathsToLink =
|
|
|
|
[ "/bin"
|
|
|
|
"/etc/xdg"
|
2016-04-04 11:11:20 +02:00
|
|
|
"/etc/gtk-2.0"
|
|
|
|
"/etc/gtk-3.0"
|
2013-09-04 13:05:09 +02:00
|
|
|
"/info"
|
2015-10-30 15:16:48 +01:00
|
|
|
"/lib" # FIXME: remove and update debug-info.nix
|
2015-04-01 22:46:40 +02:00
|
|
|
"/sbin"
|
2015-09-03 00:31:34 +02:00
|
|
|
"/share/applications"
|
|
|
|
"/share/desktop-directories"
|
2014-10-18 11:30:31 +02:00
|
|
|
"/share/doc"
|
2013-09-04 13:05:09 +02:00
|
|
|
"/share/emacs"
|
2015-09-03 00:31:34 +02:00
|
|
|
"/share/icons"
|
2013-09-04 13:05:09 +02:00
|
|
|
"/share/info"
|
2015-09-03 00:31:34 +02:00
|
|
|
"/share/menus"
|
|
|
|
"/share/mime"
|
2014-10-18 11:30:31 +02:00
|
|
|
"/share/nano"
|
|
|
|
"/share/org"
|
|
|
|
"/share/terminfo"
|
2015-09-03 00:31:34 +02:00
|
|
|
"/share/themes"
|
2014-10-18 11:30:31 +02:00
|
|
|
"/share/vim-plugins"
|
2013-09-04 13:05:09 +02:00
|
|
|
];
|
|
|
|
|
2013-10-23 16:34:38 +02:00
|
|
|
system.path = pkgs.buildEnv {
|
|
|
|
name = "system-path";
|
2016-03-14 12:15:58 +01:00
|
|
|
paths = config.environment.systemPackages;
|
2016-03-14 12:19:37 +01:00
|
|
|
inherit (config.environment) pathsToLink extraOutputsToInstall;
|
2013-10-23 16:34:38 +02:00
|
|
|
ignoreCollisions = true;
|
|
|
|
# !!! Hacky, should modularise.
|
2016-01-28 11:24:18 +01:00
|
|
|
# outputs TODO: note that the tools will often not be linked by default
|
2013-10-23 16:34:38 +02:00
|
|
|
postBuild =
|
|
|
|
''
|
2015-12-17 13:10:16 +01:00
|
|
|
if [ -x $out/bin/update-mime-database -a -w $out/share/mime ]; then
|
2013-10-30 18:36:16 +01:00
|
|
|
XDG_DATA_DIRS=$out/share $out/bin/update-mime-database -V $out/share/mime > /dev/null
|
2013-10-23 16:34:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -x $out/bin/gtk-update-icon-cache -a -f $out/share/icons/hicolor/index.theme ]; then
|
|
|
|
$out/bin/gtk-update-icon-cache $out/share/icons/hicolor
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -x $out/bin/glib-compile-schemas -a -w $out/share/glib-2.0/schemas ]; then
|
|
|
|
$out/bin/glib-compile-schemas $out/share/glib-2.0/schemas
|
|
|
|
fi
|
2014-04-12 16:30:29 +02:00
|
|
|
|
|
|
|
if [ -x $out/bin/update-desktop-database -a -w $out/share/applications ]; then
|
|
|
|
$out/bin/update-desktop-database $out/share/applications
|
|
|
|
fi
|
2015-08-17 18:04:16 +02:00
|
|
|
|
|
|
|
if [ -x $out/bin/install-info -a -w $out/share/info ]; then
|
|
|
|
shopt -s nullglob
|
|
|
|
for i in $out/share/info/*.info $out/share/info/*.info.gz; do
|
|
|
|
$out/bin/install-info $i $out/share/info/dir
|
|
|
|
done
|
|
|
|
fi
|
2013-10-23 16:34:38 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
};
|
2009-05-25 19:41:03 +02:00
|
|
|
}
|