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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, buildPackages, fetchFromGitHub, fetchpatch, pkg-config, popt, mandoc }:
2014-06-10 23:13:28 +00:00
stdenv.mkDerivation rec {
pname = "efivar";
2022-10-31 14:04:17 +00:00
version = "38";
2014-06-10 23:13:28 +00:00
2018-05-23 16:28:14 +00:00
outputs = [ "bin" "out" "dev" "man" ];
2015-06-19 05:03:00 +00:00
src = fetchFromGitHub {
owner = "rhinstaller";
repo = "efivar";
rev = version;
2022-10-31 14:04:17 +00:00
hash = "sha256-A38BKGMK3Vo+85wzgxmzTjzZXtpcY9OpbZaONWnMYNk=";
2014-06-10 23:13:28 +00:00
};
patches = [
(fetchpatch {
url = "https://github.com/rhboot/efivar/commit/15622b7e5761f3dde3f0e42081380b2b41639a48.patch";
sha256 = "sha256-SjZXj0hA2eQu2MfBoNjFPtd2DMYadtL7ZqwjKSf2cmI=";
})
];
2022-10-31 14:04:17 +00:00
nativeBuildInputs = [ pkg-config mandoc ];
buildInputs = [ popt ];
2018-11-28 12:06:23 +00:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
2014-06-10 23:13:28 +00:00
2017-12-17 08:08:05 +00:00
makeFlags = [
"prefix=$(out)"
2014-06-10 23:13:28 +00:00
"libdir=$(out)/lib"
2018-05-23 16:28:14 +00:00
"bindir=$(bin)/bin"
"mandir=$(man)/share/man"
"includedir=$(dev)/include"
"PCDIR=$(dev)/lib/pkgconfig"
2014-06-10 23:13:28 +00:00
];
meta = with lib; {
2014-06-10 23:13:28 +00:00
description = "Tools and library to manipulate EFI variables";
2022-11-15 20:43:10 +00:00
homepage = "https://github.com/rhboot/efivar";
2014-06-10 23:13:28 +00:00
platforms = platforms.linux;
2022-10-31 14:04:17 +00:00
license = licenses.lgpl21Only;
2014-06-10 23:13:28 +00:00
};
}