summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-05-31 16:34:17 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-05-31 17:02:56 +0200
commita00e564e04833263767fb2fda1d52120c1d3ab11 (patch)
treefe46f91398bad26ef171efe8dc7476f1e65ac47a /pkgs/tools
parentf222689aba0b0f5c7c06c77406d33538d9f40cb9 (diff)
downloadnixpkgs-a00e564e04833263767fb2fda1d52120c1d3ab11.tar
nixpkgs-a00e564e04833263767fb2fda1d52120c1d3ab11.tar.gz
nixpkgs-a00e564e04833263767fb2fda1d52120c1d3ab11.tar.bz2
nixpkgs-a00e564e04833263767fb2fda1d52120c1d3ab11.tar.lz
nixpkgs-a00e564e04833263767fb2fda1d52120c1d3ab11.tar.xz
nixpkgs-a00e564e04833263767fb2fda1d52120c1d3ab11.tar.zst
nixpkgs-a00e564e04833263767fb2fda1d52120c1d3ab11.zip
gummiboot: Remove
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/gummiboot/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/tools/misc/gummiboot/default.nix b/pkgs/tools/misc/gummiboot/default.nix
deleted file mode 100644
index 9d9b7700c90..00000000000
--- a/pkgs/tools/misc/gummiboot/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ stdenv, fetchurl, gnu-efi, unzip, pkgconfig, utillinux, libxslt, docbook_xsl, docbook_xml_dtd_42 }:
-
-stdenv.mkDerivation rec {
-  name = "gummiboot-48";
-
-  buildInputs = [ gnu-efi pkgconfig libxslt utillinux ];
-
-  # Sigh, gummiboot should be able to find this in buildInputs
-  configureFlags = [
-    "--with-efi-includedir=${gnu-efi}/include"
-    "--with-efi-libdir=${gnu-efi}/lib"
-    "--with-efi-ldsdir=${gnu-efi}/lib"
-  ];
-
-  src = fetchurl {
-    url = http://pkgs.fedoraproject.org/repo/pkgs/gummiboot/gummiboot-48.tar.xz/05ef3951e8322b76c31f2fd14efdc185/gummiboot-48.tar.xz;
-    sha256 = "1bzygyglgglhb3aj77w2qcb0dz9sxgb7lq5krxf6417431h198rg";
-  };
-
-  meta = {
-    description = "A simple UEFI boot manager which executes configured EFI images";
-
-    homepage = http://freedesktop.org/wiki/Software/gummiboot;
-
-    license = stdenv.lib.licenses.lgpl21Plus;
-
-    platforms = [ "x86_64-linux" "i686-linux" ];
-  };
-}