summary refs log tree commit diff
path: root/pkgs/tools/misc/grub
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-01-25 22:04:03 +0000
committerLudovic Courtès <ludo@gnu.org>2010-01-25 22:04:03 +0000
commitcf3b87d747af85aa6b51ca3bc280cf88ee7aa837 (patch)
treeb22d2597e9c5f8efb2e479f1f47bf72ec6a83b7d /pkgs/tools/misc/grub
parentbb0a18daac7492a44e338d19ca004b679b211caf (diff)
downloadnixlib-cf3b87d747af85aa6b51ca3bc280cf88ee7aa837.tar
nixlib-cf3b87d747af85aa6b51ca3bc280cf88ee7aa837.tar.gz
nixlib-cf3b87d747af85aa6b51ca3bc280cf88ee7aa837.tar.bz2
nixlib-cf3b87d747af85aa6b51ca3bc280cf88ee7aa837.tar.lz
nixlib-cf3b87d747af85aa6b51ca3bc280cf88ee7aa837.tar.xz
nixlib-cf3b87d747af85aa6b51ca3bc280cf88ee7aa837.tar.zst
nixlib-cf3b87d747af85aa6b51ca3bc280cf88ee7aa837.zip
GNU GRUB 1.97.2.
svn path=/nixpkgs/trunk/; revision=19656
Diffstat (limited to 'pkgs/tools/misc/grub')
-rw-r--r--pkgs/tools/misc/grub/1.9x.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/misc/grub/1.9x.nix b/pkgs/tools/misc/grub/1.9x.nix
index 87235a60eea3..b57a98dd5baf 100644
--- a/pkgs/tools/misc/grub/1.9x.nix
+++ b/pkgs/tools/misc/grub/1.9x.nix
@@ -7,11 +7,11 @@ let unifont_bdf = fetchurl {
 in
 
 stdenv.mkDerivation rec {
-  name = "grub-1.97.1";
+  name = "grub-1.97.2";
 
   src = fetchurl {
     url = "ftp://alpha.gnu.org/gnu/grub/${name}.tar.gz";
-    sha256 = "1grpz4jphrhlmjr0ai4vi5rs1xknwfqgb376cq7hlwzblcblbw2i";
+    sha256 = "0j8wdaq9r0ayfsz25lbq2k3q0iasq5cyldlip8jyq2g87iid5hcq";
   };
 
   buildInputs = [ bison ncurses libusb freetype ];
@@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
          Unified Bootloader, which was originally designed and implemented by
          Erich Stefan Boleyn.
 
-         Briefly, boot loader is the first software program that runs when a
+         Briefly, the boot loader is the first software program that runs when a
          computer starts.  It is responsible for loading and transferring
          control to the operating system kernel software (such as the Hurd or
          the Linux).  The kernel, in turn, initializes the rest of the
@@ -54,5 +54,6 @@ stdenv.mkDerivation rec {
     license = "GPLv3+";
 
     maintainers = [ stdenv.lib.maintainers.ludo ];
+    platforms = stdenv.lib.platforms.gnu;
   };
 }