nixpkgs-suyu/pkgs/tools/system/efivar/default.nix

35 lines
800 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, popt, linuxHeaders }:
2014-06-11 01:13:28 +02:00
stdenv.mkDerivation rec {
name = "efivar-${version}";
2016-05-03 03:50:13 +02:00
version = "0.23";
2014-06-11 01:13:28 +02:00
2015-06-19 07:03:00 +02:00
src = fetchFromGitHub {
owner = "rhinstaller";
repo = "efivar";
rev = version;
2016-05-03 03:50:13 +02:00
sha256 = "1fdqi053v335pjwj1i3yi9f1kasdzg3agfcp36bxsbhqjp4imlid";
2014-06-11 01:13:28 +02:00
};
2016-05-03 03:50:13 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ popt linuxHeaders ];
2014-06-11 01:13:28 +02:00
2015-07-17 05:06:50 +02:00
postPatch = ''
2016-05-03 03:50:13 +02:00
substituteInPlace src/Makefile --replace "-static" ""
2015-07-17 05:06:50 +02:00
'';
2015-06-19 07:34:29 +02:00
2014-06-11 01:13:28 +02:00
installFlags = [
"libdir=$(out)/lib"
"mandir=$(out)/share/man"
"includedir=$(out)/include"
"bindir=$(out)/bin"
];
meta = with stdenv.lib; {
2016-05-03 03:50:13 +02:00
inherit (src.meta) homepage;
2014-06-11 01:13:28 +02:00
description = "Tools and library to manipulate EFI variables";
platforms = platforms.linux;
license = licenses.lgpl21;
};
}