mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
* Change system name to i686-linux.
* A helper Nix expression used to populate the cache on losser. svn path=/nixpkgs/trunk/; revision=558
This commit is contained in:
parent
256aec2e56
commit
2dc967e656
|
@ -44,7 +44,7 @@
|
|||
|
||||
# Select the right instantiation.
|
||||
body =
|
||||
if system == "i686-suse-linux"
|
||||
if system == "i686-linux"
|
||||
then stdenvLinuxPkgs
|
||||
else stdenvNixPkgs;
|
||||
}
|
||||
|
|
1
pkgs/system/i686-linux.nix
Normal file
1
pkgs/system/i686-linux.nix
Normal file
|
@ -0,0 +1 @@
|
|||
(import ./all-packages.nix) {system = "i686-linux"}
|
|
@ -1 +0,0 @@
|
|||
(import ./all-packages.nix) {system = "i686-suse-linux"}
|
4
pkgs/system/populate-cache.nix
Normal file
4
pkgs/system/populate-cache.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
let {
|
||||
pkgs = import ./i686-linux.nix;
|
||||
body = [pkgs.subversion pkgs.pan pkgs.sylpheed pkgs.MPlayer];
|
||||
}
|
Loading…
Reference in a new issue