2016-08-20 15:04:56 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, popt }:
|
2014-06-11 00:13:28 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "efivar-${version}";
|
2018-04-12 16:22:44 +01:00
|
|
|
version = "35";
|
2014-06-11 00:13:28 +01:00
|
|
|
|
2015-06-19 06:03:00 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rhinstaller";
|
|
|
|
repo = "efivar";
|
|
|
|
rev = version;
|
2018-04-12 16:22:44 +01:00
|
|
|
sha256 = "0hc7l5z0hw5472bm6p4d9n24bbggv9lgw7px1hqrdkfjghqfnlxh";
|
2014-06-11 00:13:28 +01:00
|
|
|
};
|
|
|
|
|
2016-05-03 02:50:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-05-15 18:30:39 +01:00
|
|
|
buildInputs = [ popt ];
|
2014-06-11 00:13:28 +01:00
|
|
|
|
2017-12-17 08:08:05 +00:00
|
|
|
makeFlags = [
|
|
|
|
"prefix=$(out)"
|
2014-06-11 00:13:28 +01:00
|
|
|
"libdir=$(out)/lib"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-05-03 02:50:13 +01:00
|
|
|
inherit (src.meta) homepage;
|
2014-06-11 00:13:28 +01:00
|
|
|
description = "Tools and library to manipulate EFI variables";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
};
|
|
|
|
}
|