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

35 lines
773 B
Nix
Raw Normal View History

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