2009-05-25 18:41:03 +01:00
|
|
|
# This module defines the packages that appear in
|
2012-07-16 16:27:59 +01:00
|
|
|
# /run/current-system/sw.
|
2009-05-25 18:41:03 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-05-25 18:41:03 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2009-05-25 18:41:03 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2009-05-29 14:15:31 +01:00
|
|
|
requiredPackages =
|
2013-10-28 15:28:04 +00:00
|
|
|
[ config.nix.package
|
2009-05-25 18:41:03 +01:00
|
|
|
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-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
|
2012-03-04 15:47:44 +00:00
|
|
|
pkgs.gnutar
|
2009-05-25 18:41:03 +01:00
|
|
|
pkgs.gzip
|
2013-01-30 14:01:31 +00:00
|
|
|
pkgs.xz
|
2009-05-25 18:41:03 +01:00
|
|
|
pkgs.less
|
|
|
|
pkgs.libcap
|
|
|
|
pkgs.nano
|
|
|
|
pkgs.ncurses
|
|
|
|
pkgs.netcat
|
2015-06-27 01:09:58 +01:00
|
|
|
config.programs.ssh.package
|
2009-05-25 18:41:03 +01:00
|
|
|
pkgs.perl
|
|
|
|
pkgs.procps
|
|
|
|
pkgs.rsync
|
|
|
|
pkgs.strace
|
2014-04-05 19:41:23 +01:00
|
|
|
pkgs.su
|
2009-05-25 18:41:03 +01:00
|
|
|
pkgs.time
|
2015-08-17 17:04:16 +01:00
|
|
|
pkgs.texinfoInteractive
|
2012-12-17 18:09:05 +00:00
|
|
|
pkgs.utillinux
|
2009-09-28 19:26:18 +01:00
|
|
|
];
|
2009-06-05 13:57:44 +01:00
|
|
|
|
2013-09-04 12:05:09 +01:00
|
|
|
in
|
2009-05-25 18:41:03 +01:00
|
|
|
|
2013-09-04 12:05:09 +01:00
|
|
|
{
|
2009-05-25 18:41:03 +01:00
|
|
|
options = {
|
|
|
|
|
|
|
|
environment = {
|
|
|
|
|
|
|
|
systemPackages = mkOption {
|
2015-02-09 20:49:01 +00:00
|
|
|
type = types.listOf types.package;
|
2009-09-28 19:26:18 +01:00
|
|
|
default = [];
|
2014-08-27 21:44:56 +01:00
|
|
|
example = literalExample "[ pkgs.firefox pkgs.thunderbird ]";
|
2009-05-25 18:41:03 +01:00
|
|
|
description = ''
|
|
|
|
The set of packages that appear in
|
2012-07-16 16:27:59 +01:00
|
|
|
/run/current-system/sw. These packages are
|
2009-05-25 18:41:03 +01: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 15:19:58 +00:00
|
|
|
<filename>/nix/var/nix/profiles/default</filename>.
|
2009-05-25 18:41:03 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
pathsToLink = mkOption {
|
2013-10-30 13:18:41 +00:00
|
|
|
type = types.listOf types.str;
|
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 = ["/"];
|
2015-10-30 13:13:47 +00:00
|
|
|
description = "List of directories to be symlinked in <filename>/run/current-system/sw</filename>.";
|
2009-05-25 18:41:03 +01:00
|
|
|
};
|
2015-10-30 13:13:47 +00:00
|
|
|
|
|
|
|
outputsToLink = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
example = [ "doc" ];
|
|
|
|
description = "List of package outputs to be symlinked into <filename>/run/current-system/sw</filename>.";
|
2009-05-25 18:41:03 +01:00
|
|
|
};
|
2015-10-30 13:13:47 +00:00
|
|
|
|
2009-05-25 18:41:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
system = {
|
|
|
|
|
|
|
|
path = mkOption {
|
2013-10-23 15:59:33 +01:00
|
|
|
internal = true;
|
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
|
|
|
};
|
|
|
|
|
2013-09-04 12:05:09 +01:00
|
|
|
config = {
|
2009-05-25 18:41:03 +01:00
|
|
|
|
2013-09-04 12:05:09 +01:00
|
|
|
environment.systemPackages = requiredPackages;
|
2009-05-25 18:41:03 +01:00
|
|
|
|
2013-09-04 12:05:09 +01:00
|
|
|
environment.pathsToLink =
|
|
|
|
[ "/bin"
|
|
|
|
"/etc/xdg"
|
|
|
|
"/info"
|
2015-10-30 14:16:48 +00:00
|
|
|
"/lib" # FIXME: remove and update debug-info.nix
|
2015-04-01 21:46:40 +01:00
|
|
|
"/sbin"
|
2015-09-02 23:31:34 +01:00
|
|
|
"/share/applications"
|
|
|
|
"/share/desktop-directories"
|
2014-10-18 10:30:31 +01:00
|
|
|
"/share/doc"
|
2013-09-04 12:05:09 +01:00
|
|
|
"/share/emacs"
|
2015-09-02 23:31:34 +01:00
|
|
|
"/share/icons"
|
2013-09-04 12:05:09 +01:00
|
|
|
"/share/info"
|
2015-09-02 23:31:34 +01:00
|
|
|
"/share/menus"
|
|
|
|
"/share/mime"
|
2014-10-18 10:30:31 +01:00
|
|
|
"/share/nano"
|
|
|
|
"/share/org"
|
|
|
|
"/share/terminfo"
|
2015-09-02 23:31:34 +01:00
|
|
|
"/share/themes"
|
2014-10-18 10:30:31 +01:00
|
|
|
"/share/vim-plugins"
|
2013-09-04 12:05:09 +01:00
|
|
|
];
|
|
|
|
|
2013-10-23 15:34:38 +01:00
|
|
|
system.path = pkgs.buildEnv {
|
|
|
|
name = "system-path";
|
2015-05-05 10:35:11 +01:00
|
|
|
paths = let
|
2015-10-30 13:13:47 +00:00
|
|
|
inherit (config.environment) pathsToLink outputsToLink;
|
2015-11-20 13:32:58 +00:00
|
|
|
#outputs TODO: some code already merged by Eelco? make it user-customizable?
|
2015-05-05 10:35:11 +01:00
|
|
|
pkgOutputFun = pkg: lib.filter (p: p!=null) [
|
|
|
|
(pkg.bin or (pkg.out or pkg))
|
|
|
|
(pkg.man or null)
|
|
|
|
(pkg.info or null)
|
|
|
|
(pkg.doc or null)
|
|
|
|
];
|
|
|
|
in lib.concatMap pkgOutputFun config.environment.systemPackages;
|
2013-10-23 15:34:38 +01:00
|
|
|
ignoreCollisions = true;
|
|
|
|
# !!! Hacky, should modularise.
|
|
|
|
postBuild =
|
|
|
|
''
|
|
|
|
if [ -x $out/bin/update-mime-database -a -w $out/share/mime/packages ]; then
|
2013-10-30 17:36:16 +00:00
|
|
|
XDG_DATA_DIRS=$out/share $out/bin/update-mime-database -V $out/share/mime > /dev/null
|
2013-10-23 15:34:38 +01: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 15:30:29 +01: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 17:04:16 +01: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 15:34:38 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-09-04 12:05:09 +01:00
|
|
|
};
|
2009-05-25 18:41:03 +01:00
|
|
|
}
|