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

43 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, buildPackages, fetchFromGitHub, fetchurl, pkgconfig, popt }:
2014-06-11 01:13:28 +02:00
stdenv.mkDerivation rec {
name = "efivar-${version}";
version = "37";
2014-06-11 01:13:28 +02:00
2018-05-23 18:28:14 +02:00
outputs = [ "bin" "out" "dev" "man" ];
2015-06-19 07:03:00 +02:00
src = fetchFromGitHub {
owner = "rhinstaller";
repo = "efivar";
rev = version;
sha256 = "1z2dw5x74wgvqgd8jvibfff0qhwkc53kxg54v12pzymyibagwf09";
2014-06-11 01:13:28 +02:00
};
patches = [
(fetchurl {
name = "r13y.patch";
url = "https://patch-diff.githubusercontent.com/raw/rhboot/efivar/pull/133.patch";
sha256 = "038cwldb8sqnal5l6mhys92cqv8x7j8rgsl8i4fiv9ih9znw26i6";
})
];
2014-06-11 01:13:28 +02:00
2016-05-03 03:50:13 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ popt ];
2018-11-28 13:06:23 +01:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
2014-06-11 01:13:28 +02:00
2017-12-17 09:08:05 +01:00
makeFlags = [
"prefix=$(out)"
2014-06-11 01:13:28 +02:00
"libdir=$(out)/lib"
2018-05-23 18:28:14 +02:00
"bindir=$(bin)/bin"
"mandir=$(man)/share/man"
"includedir=$(dev)/include"
"PCDIR=$(dev)/lib/pkgconfig"
2014-06-11 01:13:28 +02:00
];
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;
};
}