2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv
|
2021-01-17 04:51:22 +01:00
|
|
|
, fetchgit, autoconf, automake, pkg-config, help2man
|
2019-06-16 21:59:06 +02:00
|
|
|
, openssl, libuuid, gnu-efi, libbfd
|
2017-10-11 01:01:42 +02:00
|
|
|
}:
|
2015-07-05 14:59:01 +02:00
|
|
|
|
2022-06-07 21:22:25 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "sbsigntool";
|
2023-03-21 17:15:04 +01:00
|
|
|
version = "0.9.5";
|
2015-07-05 14:59:01 +02:00
|
|
|
|
|
|
|
src = fetchgit {
|
2018-09-25 17:51:43 +02:00
|
|
|
url = "https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git";
|
2022-06-07 21:22:25 +02:00
|
|
|
rev = "v${version}";
|
2023-03-21 17:15:04 +01:00
|
|
|
hash = "sha256-5DInWgl1gThjjfGOsts1H1s1GbMCkd0gjbmG3gA3Fhg=";
|
2015-07-05 14:59:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./autoconf.patch ];
|
|
|
|
|
2015-07-12 23:41:10 +02:00
|
|
|
prePatch = "patchShebangs .";
|
|
|
|
|
2021-01-17 04:51:22 +01:00
|
|
|
nativeBuildInputs = [ autoconf automake pkg-config help2man ];
|
2018-09-25 17:51:43 +02:00
|
|
|
buildInputs = [ openssl libuuid libbfd gnu-efi ];
|
2015-07-05 14:59:01 +02:00
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
substituteInPlace configure.ac --replace "@@NIX_GNUEFI@@" "${gnu-efi}"
|
|
|
|
|
2018-09-25 17:51:43 +02:00
|
|
|
lib/ccan.git/tools/create-ccan-tree --build-type=automake lib/ccan "talloc read_write_all build_assert array_size endian"
|
2015-07-05 14:59:01 +02:00
|
|
|
touch AUTHORS
|
|
|
|
touch ChangeLog
|
|
|
|
|
|
|
|
echo "SUBDIRS = lib/ccan src docs" >> Makefile.am
|
|
|
|
|
|
|
|
aclocal
|
|
|
|
autoheader
|
|
|
|
autoconf
|
|
|
|
automake --add-missing -Wno-portability
|
|
|
|
|
|
|
|
./configure --prefix=$out
|
2022-06-17 17:39:34 +02:00
|
|
|
'';
|
2015-07-05 14:59:01 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-07-05 14:59:01 +02:00
|
|
|
description = "Tools for maintaining UEFI signature databases";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://jk.ozlabs.org/docs/sbkeysync-maintaing-uefi-key-databases";
|
2022-12-22 00:05:28 +01:00
|
|
|
maintainers = with maintainers; [ hmenke raitobezarius ];
|
2022-12-22 00:05:35 +01:00
|
|
|
platforms = [ "x86_64-linux" "aarch64-linux" ]; # Broken on i686
|
2018-08-04 18:54:35 +02:00
|
|
|
license = licenses.gpl3;
|
2015-07-05 14:59:01 +02:00
|
|
|
};
|
|
|
|
}
|