Merge branch 'origin/master' into stdenv-updates.

This commit is contained in:
Peter Simons 2013-10-27 10:58:24 +01:00
commit 9eea6c64fb
10 changed files with 83 additions and 33 deletions

View File

@ -59,6 +59,7 @@
vcunat = "Vladimír Čunát <vcunat@gmail.com>"; vcunat = "Vladimír Čunát <vcunat@gmail.com>";
viric = "Lluís Batlle i Rossell <viric@viric.name>"; viric = "Lluís Batlle i Rossell <viric@viric.name>";
vizanto = "Danny Wilson <danny@prime.vc>"; vizanto = "Danny Wilson <danny@prime.vc>";
vlstill = "Vladimír Štill <xstill@fi.muni.cz>";
winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>"; winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>";
z77z = "Marco Maggesi <maggesi@math.unifi.it>"; z77z = "Marco Maggesi <maggesi@math.unifi.it>";
zef = "Zef Hemel <zef@zef.me>"; zef = "Zef Hemel <zef@zef.me>";

View File

@ -30,12 +30,11 @@ or
$ mkdir -p <replaceable>/my/sources</replaceable> $ mkdir -p <replaceable>/my/sources</replaceable>
$ cd <replaceable>/my/sources</replaceable> $ cd <replaceable>/my/sources</replaceable>
$ nix-env -i git $ nix-env -i git
$ git clone git://github.com/NixOS/nixos.git
$ git clone git://github.com/NixOS/nixpkgs.git $ git clone git://github.com/NixOS/nixpkgs.git
</screen> </screen>
This will check out the latest NixOS sources to This will check out the latest NixOS sources to
<filename><replaceable>/my/sources</replaceable>/nixos</filename> and <filename><replaceable>/my/sources</replaceable>/nixpkgs/nixos</filename> and
the Nixpkgs sources to the Nixpkgs sources to
<filename><replaceable>/my/sources</replaceable>/nixpkgs</filename>. <filename><replaceable>/my/sources</replaceable>/nixpkgs</filename>.
If you want to rebuild your system using your (modified) sources, you If you want to rebuild your system using your (modified) sources, you
@ -43,7 +42,7 @@ need to tell <command>nixos-rebuild</command> about them using the
<option>-I</option> flag: <option>-I</option> flag:
<screen> <screen>
$ nixos-rebuild switch -I <replaceable>/my/sources</replaceable> $ nixos-rebuild switch -I <replaceable>/my/sources</replaceable>/nixpkgs
</screen> </screen>
</para> </para>
@ -250,7 +249,7 @@ let
in in
{ {
imports = [ /etc/nixos/nixos/modules/services/scheduling/cron.nix ]; imports = [ /path/to/nixpkgs/nixos/modules/services/scheduling/cron.nix ];
options = { options = {
services.locate = { services.locate = {
@ -307,10 +306,10 @@ in
<para> <para>
<screen> <screen>
$ nix-build /etc/nixos/nixos -A <replaceable>attr</replaceable></screen> $ nix-build /path/to/nixpkgs/nixos -A <replaceable>attr</replaceable></screen>
where <replaceable>attr</replaceable> is an attribute in where <replaceable>attr</replaceable> is an attribute in
<filename>/etc/nixos/nixos/default.nix</filename>. Attributes of interest include: <filename>/path/to/nixpkgs/nixos/default.nix</filename>. Attributes of interest include:
<variablelist> <variablelist>
@ -344,7 +343,7 @@ Most parts of NixOS can be built through the <varname>config</varname>
attribute set. This attribute set allows you to have a view of the merged attribute set. This attribute set allows you to have a view of the merged
option definitions and all its derivations. Important derivations are store option definitions and all its derivations. Important derivations are store
inside the option <option>system.build</option> and can be listed with the inside the option <option>system.build</option> and can be listed with the
command <command>nix-instantiate --xml --eval-only /etc/nixos/nixos -A command <command>nix-instantiate --xml --eval-only /path/to/nixpkgs/nixos -A
config.system.build</command> config.system.build</command>
</para> </para>
@ -368,8 +367,8 @@ you have to set <envar>NIXOS_CONFIG</envar> before
running <command>nix-build</command> to build the ISO. running <command>nix-build</command> to build the ISO.
<screen> <screen>
$ export NIXOS_CONFIG=/etc/nixos/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix $ export NIXOS_CONFIG=/path/to/nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix
$ nix-build /etc/nixos/nixos -A config.system.build.isoImage</screen> $ nix-build /path/to/nixpkgs/nixos -A config.system.build.isoImage</screen>
</para> </para>
@ -413,8 +412,8 @@ tedious, so here is a quick way to see if the installer works
properly: properly:
<screen> <screen>
$ export NIXOS_CONFIG=/etc/nixos/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix $ export NIXOS_CONFIG=/path/to/nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix
$ nix-build /etc/nixos/nixos -A config.system.build.nixos-install $ nix-build /path/to/nixpkgs/nixos -A config.system.build.nixos-install
$ dd if=/dev/zero of=diskimage seek=2G count=0 bs=1 $ dd if=/dev/zero of=diskimage seek=2G count=0 bs=1
$ yes | mke2fs -j diskimage $ yes | mke2fs -j diskimage
$ mount -o loop diskimage /mnt $ mount -o loop diskimage /mnt
@ -437,8 +436,8 @@ boot correctly is to use QEMUs <option>-kernel</option> and
<option>-initrd</option> options: <option>-initrd</option> options:
<screen> <screen>
$ nix-build /etc/nixos/nixos -A config.system.build.initialRamdisk -o initrd $ nix-build /path/to/nixpkgs/nixos -A config.system.build.initialRamdisk -o initrd
$ nix-build /etc/nixos/nixos -A config.system.build.kernel -o kernel $ nix-build /path/to/nixpkgs/nixos -A config.system.build.kernel -o kernel
$ qemu-system-x86_64 -kernel ./kernel/bzImage -initrd ./initrd/initrd -hda /dev/null $ qemu-system-x86_64 -kernel ./kernel/bzImage -initrd ./initrd/initrd -hda /dev/null
</screen> </screen>

View File

@ -120,10 +120,10 @@ Declared by:
/mnt/data/nix-sources/nixos/modules/services/hardware/udev.nix /mnt/data/nix-sources/nixos/modules/services/hardware/udev.nix
Defined by: Defined by:
/etc/nixos/nixos/modules/system/boot/kernel.nix /path/to/nixpkgs/nixos/modules/system/boot/kernel.nix
/etc/nixos/nixos/modules/hardware/network/rt73.nix /path/to/nixpkgs/nixos/modules/hardware/network/rt73.nix
/etc/nixos/nixos/modules/hardware/network/intel-3945abg.nix /path/to/nixpkgs/nixos/modules/hardware/network/intel-3945abg.nix
/etc/nixos/nixos/modules/hardware/network/intel-2200bg.nix</screen></para> /path/to/nixpkgs/nixos/modules/hardware/network/intel-2200bg.nix</screen></para>
</refsection> </refsection>

View File

@ -106,7 +106,7 @@ desired operation. It must be one of the following:
points to the output of the top-level “system” derivation. This points to the output of the top-level “system” derivation. This
is essentially the same as doing is essentially the same as doing
<screen> <screen>
$ nix-build /etc/nixos/nixos -A system $ nix-build /path/to/nixpkgs/nixos -A system
</screen> </screen>
Note that you do not need to be <literal>root</literal> to run Note that you do not need to be <literal>root</literal> to run
<command>nixos-rebuild build</command>.</para> <command>nixos-rebuild build</command>.</para>

View File

@ -0,0 +1,21 @@
{ stdenv, fetchurl, intltool, pkgconfig, gtk2 }:
stdenv.mkDerivation {
name = "gpicview-0.2.4";
src = fetchurl {
url = "mirror://sourceforge/lxde/gpicview-0.2.4.tar.gz";
sha256 = "1svcy1c8bgk0pl12yhyv16h2fl52x5vzzcv57z6qdcv5czgvgglr";
};
meta = with stdenv.lib; {
description = "A simple and fast image viewer for X";
homepage = http://lxde.sourceforge.net/gpicview/;
repositories.git = git://lxde.git.sourceforge.net/gitroot/lxde/gpicview;
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};
buildInputs = [ intltool pkgconfig gtk2 ];
}

View File

@ -1,18 +1,34 @@
{ fetchurl, stdenv, { fetchurl, stdenv, libX11, libXrandr, libXxf86vm, libxcb, pkgconfig, python
libX11, libXrandr, libXxf86vm, libxcb, pkgconfig, python, , randrproto, xcbutil, xf86vidmodeproto, autoconf, automake, gettext, glib
randrproto, xcbutil, xf86vidmodeproto }: , GConf, dbus, dbus_glib, makeWrapper, gtk, pygtk, pyxdg }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "redshift"; version = "1.8";
version = "1.7"; name = "redshift-${version}";
name = "${pname}-${version}";
src = fetchurl { src = fetchurl {
url = "http://launchpad.net/${pname}/trunk/${version}/+download/${pname}-${version}.tar.bz2"; url = "https://github.com/jonls/redshift/archive/v${version}.tar.gz";
sha256 = "1j0hs0vnlic90cf4bryn11n4ani1x2s5l8z6ll3fmrlw98ykrylv"; sha256 = "1srj2dwy32h71iqikb4ysv5ipclym80i9lys2ns8vjmclg7hj3vi";
}; };
buildInputs = [ libX11 libXrandr libXxf86vm libxcb pkgconfig python buildInputs = [
randrproto xcbutil xf86vidmodeproto ]; libX11 libXrandr libXxf86vm libxcb pkgconfig python randrproto xcbutil
xf86vidmodeproto autoconf automake gettext glib GConf dbus dbus_glib
makeWrapper gtk pygtk pyxdg
# TODO:
# geoclue
];
preConfigure = ''
./bootstrap
'';
preInstall = ''
substituteInPlace src/redshift-gtk/redshift-gtk python --replace "/usr/bin/env python" "${python}/bin/${python.executable}"
'';
postInstall = ''
wrapProgram "$out/bin/redshift-gtk" --prefix PYTHONPATH : $PYTHONPATH:${pygtk}/lib/${python.libPrefix}/site-packages/gtk-2.0:${pyxdg}/lib/${python.libPrefix}/site-packages/pyxdg:$out/lib/${python.libPrefix}/site-packages
'';
meta = { meta = {
description = "changes the color temperature of your screen gradually"; description = "changes the color temperature of your screen gradually";

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, ghc, perl, gmp, ncurses }: { stdenv, fetchurl, ghc, perl, gmp, ncurses }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "7.7.20130816"; version = "7.7.20130828";
name = "ghc-${version}"; name = "ghc-${version}";
src = fetchurl { src = fetchurl {
url = "http://darcs.haskell.org/ghcBuilder/uploads/tn23/${name}-src.tar.bz2"; url = "http://darcs.haskell.org/ghcBuilder/uploads/tn23/${name}-src.tar.bz2";
sha256 = "0w636gfjn3xigrlj31z4hy9kv44svyifsqcshrq95qxijx396j5m"; sha256 = "180nkd77kz3mv4g7yq8ipx34p5q8k714l0z2527y49lghy118jzv";
}; };
buildInputs = [ ghc perl gmp ncurses ]; buildInputs = [ ghc perl gmp ncurses ];

View File

@ -1,13 +1,13 @@
{ stdenv, fetchurl, microcode2ucode }: { stdenv, fetchurl, microcode2ucode }:
let version = "20130808"; in let version = "20130906"; in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "microcode-intel-${version}"; name = "microcode-intel-${version}";
src = fetchurl { src = fetchurl {
url = "http://downloadmirror.intel.com/23082/eng/microcode-${version}.tgz"; url = "http://downloadmirror.intel.com/23166/eng/microcode-${version}.tgz";
sha256 = "19v0059v6dxv7ly57wgqy9nkjjnmprgwz4s94khdf213k5vikpfm"; sha256 = "11k327icvijadq2zkgkc3sqwzraip9cviqm25566g09523ds0svv";
}; };
buildInputs = [ microcode2ucode ]; buildInputs = [ microcode2ucode ];

View File

@ -7810,6 +7810,8 @@ let
goldendict = callPackage ../applications/misc/goldendict { }; goldendict = callPackage ../applications/misc/goldendict { };
gpicview = callPackage ../applications/graphics/gpicview { };
grass = import ../applications/misc/grass { grass = import ../applications/misc/grass {
inherit (xlibs) libXmu libXext libXp libX11 libXt libSM libICE libXpm inherit (xlibs) libXmu libXext libXp libX11 libXt libSM libICE libXpm
libXaw libXrender; libXaw libXrender;
@ -9638,6 +9640,8 @@ let
redshift = callPackage ../applications/misc/redshift { redshift = callPackage ../applications/misc/redshift {
inherit (xorg) libX11 libXrandr libxcb randrproto libXxf86vm inherit (xorg) libX11 libXrandr libxcb randrproto libXxf86vm
xf86vidmodeproto; xf86vidmodeproto;
inherit (gnome) GConf;
inherit (pythonPackages) pyxdg;
}; };
oxygen_gtk = callPackage ../misc/themes/gtk2/oxygen-gtk { }; oxygen_gtk = callPackage ../misc/themes/gtk2/oxygen-gtk { };

View File

@ -3396,6 +3396,15 @@ rec {
propagatedBuildInputs = [ HTTPDate ]; propagatedBuildInputs = [ HTTPDate ];
}; };
FileMimeInfo = buildPerlPackage {
name = "File-MimeInfo-0.20";
src = fetchurl {
url = "http://search.cpan.org/CPAN/authors/id/M/MI/MICHIELB/File-MimeInfo-0.20.tar.gz";
sha256 = "1738yi3a0xcbvffqymjb6cyh999q4pryalfwbkmdbjdks2y0bxz0";
};
propagatedBuildInputs = [ FileBaseDir FileDesktopEntry ];
};
FileModified = buildPerlPackage { FileModified = buildPerlPackage {
name = "File-Modified-0.07"; name = "File-Modified-0.07";
src = fetchurl { src = fetchurl {