summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-02-17 02:18:40 +0100
committerJan Tojnar <jtojnar@gmail.com>2018-02-22 13:18:22 +0100
commit3b206f98f9f05031c907a1b9fbe301cd451b62e1 (patch)
tree12712af0f3c0c4e6ead33e3d47d6257697b628c4 /pkgs/tools/system
parent892740fe2f8b0b8e03e38f5cbe99abd547d86e1f (diff)
downloadnixlib-3b206f98f9f05031c907a1b9fbe301cd451b62e1.tar
nixlib-3b206f98f9f05031c907a1b9fbe301cd451b62e1.tar.gz
nixlib-3b206f98f9f05031c907a1b9fbe301cd451b62e1.tar.bz2
nixlib-3b206f98f9f05031c907a1b9fbe301cd451b62e1.tar.lz
nixlib-3b206f98f9f05031c907a1b9fbe301cd451b62e1.tar.xz
nixlib-3b206f98f9f05031c907a1b9fbe301cd451b62e1.tar.zst
nixlib-3b206f98f9f05031c907a1b9fbe301cd451b62e1.zip
efibootmgr: cleanup
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/efibootmgr/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/tools/system/efibootmgr/default.nix b/pkgs/tools/system/efibootmgr/default.nix
index 31be8ab63f41..08cdec72c5b9 100644
--- a/pkgs/tools/system/efibootmgr/default.nix
+++ b/pkgs/tools/system/efibootmgr/default.nix
@@ -5,26 +5,25 @@ stdenv.mkDerivation rec {
   version = "15";
 
   nativeBuildInputs = [ pkgconfig ];
-  
+
   buildInputs = [ efivar popt ];
 
   src = fetchFromGitHub {
-    owner = "rhinstaller";
+    owner = "rhboot";
     repo = "efibootmgr";
     rev = version;
     sha256 = "0z7h1dirp8za6lbbf4f3dzn7l1px891rdymhkbqc10yj6gi1jpqp";
   };
 
-  NIX_CFLAGS_COMPILE = "-I${efivar}/include/efivar";
-
   makeFlags = [ "EFIDIR=nixos" ];
 
   installFlags = [ "prefix=$(out)" ];
 
   meta = with stdenv.lib; {
     description = "A Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager";
-    homepage = https://github.com/rhinstaller/efibootmgr;
+    homepage = https://github.com/rhboot/efibootmgr;
     license = licenses.gpl2;
+    maintainers = with maintainers; [ ];
     platforms = platforms.linux;
   };
 }