summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-05-02 09:17:54 -0500
committerWilliam A. Kennington III <william@wkennington.com>2014-08-28 13:35:36 -0700
commit2ea1433b77755b954df979307525fa6578f241b8 (patch)
tree31562403151ec0d0dda5e9a551687bda821e6d51 /pkgs
parent940c57e4e86f14cbc25bd63949ef27cc96856425 (diff)
downloadnixpkgs-2ea1433b77755b954df979307525fa6578f241b8.tar
nixpkgs-2ea1433b77755b954df979307525fa6578f241b8.tar.gz
nixpkgs-2ea1433b77755b954df979307525fa6578f241b8.tar.bz2
nixpkgs-2ea1433b77755b954df979307525fa6578f241b8.tar.lz
nixpkgs-2ea1433b77755b954df979307525fa6578f241b8.tar.xz
nixpkgs-2ea1433b77755b954df979307525fa6578f241b8.tar.zst
nixpkgs-2ea1433b77755b954df979307525fa6578f241b8.zip
grub: Fetch from alpha.gnu.org instead of git
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/grub/2.0x.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/grub/2.0x.nix b/pkgs/tools/misc/grub/2.0x.nix
index 04971b68a84..2c150f8ec96 100644
--- a/pkgs/tools/misc/grub/2.0x.nix
+++ b/pkgs/tools/misc/grub/2.0x.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchgit, autogen, flex, bison, python, autoconf, automake
+{ stdenv, fetchurl, autogen, flex, bison, python, autoconf, automake
 , gettext, ncurses, libusb, freetype, qemu, devicemapper
 , linuxPackages ? null
 , EFIsupport ? false
@@ -23,10 +23,10 @@ in
 stdenv.mkDerivation rec {
   name = "${prefix}-${version}";
 
-  src = fetchgit {
-    url = "git://git.sv.gnu.org/grub.git";
-    rev = "refs/tags/grub-2.02-beta2";
-    sha256 = "157bknkcxibmvq19pagphlwfxd9xny7002gcanfzhjzcjpfz4scy";
+  src = fetchurl {
+    name = "grub-2.02-beta2.tar.xz";
+    url = "http://alpha.gnu.org/gnu/grub/grub-2.02~beta2.tar.xz";
+    sha256 = "13a13fhc0wf473dn73zhga15mjvkg6vqp4h25dxg4n7am2r05izn";
   };
 
   nativeBuildInputs = [ autogen flex bison python autoconf automake ];