nixpkgs/pkgs/tools/security/sbsigntool/default.nix

54 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2021-01-17 03:51:22 +00:00
, fetchgit, autoconf, automake, pkg-config, help2man
, openssl, libuuid, gnu-efi, libbfd
}:
2015-07-05 12:59:01 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "sbsigntool";
2018-09-25 15:51:43 +00:00
version = "0.9.1";
2015-07-05 12:59:01 +00:00
src = fetchgit {
2018-09-25 15:51:43 +00:00
url = "https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git";
rev = "v0.9.1";
sha256 = "098gxmhjn8acxjw5bq59wq4xhgkpx1xn8kjvxwdzpqkwq9ivrsbp";
2015-07-05 12:59:01 +00:00
};
patches = [ ./autoconf.patch ];
2015-07-12 21:41:10 +00:00
prePatch = "patchShebangs .";
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ autoconf automake pkg-config help2man ];
2018-09-25 15:51:43 +00:00
buildInputs = [ openssl libuuid libbfd gnu-efi ];
2015-07-05 12:59:01 +00:00
configurePhase = ''
substituteInPlace configure.ac --replace "@@NIX_GNUEFI@@" "${gnu-efi}"
2018-09-25 15:51:43 +00: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 12:59:01 +00:00
touch AUTHORS
touch ChangeLog
echo "SUBDIRS = lib/ccan src docs" >> Makefile.am
aclocal
autoheader
autoconf
automake --add-missing -Wno-portability
./configure --prefix=$out
'';
installPhase = ''
mkdir -p $out
make install
'';
meta = with lib; {
2015-07-05 12:59:01 +00:00
description = "Tools for maintaining UEFI signature databases";
homepage = "http://jk.ozlabs.org/docs/sbkeysync-maintaing-uefi-key-databases";
2015-07-05 12:59:01 +00:00
maintainers = [ maintainers.tstrobel ];
platforms = [ "x86_64-linux" ]; # Broken on i686
license = licenses.gpl3;
2015-07-05 12:59:01 +00:00
};
}