mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
45ec5898cb
was ts468 on github afaict and was actually a committer, but that account hasn't been active since early 2018
53 lines
1.4 KiB
Nix
53 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchgit, autoconf, automake, pkg-config, help2man
|
|
, openssl, libuuid, gnu-efi, libbfd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sbsigntool";
|
|
version = "0.9.4";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-dbjdA+hjII/k7wABTTJV5RBdy4KlNkFlBWEaX4zn5vg=";
|
|
};
|
|
|
|
patches = [ ./autoconf.patch ];
|
|
|
|
prePatch = "patchShebangs .";
|
|
|
|
nativeBuildInputs = [ autoconf automake pkg-config help2man ];
|
|
buildInputs = [ openssl libuuid libbfd gnu-efi ];
|
|
|
|
configurePhase = ''
|
|
substituteInPlace configure.ac --replace "@@NIX_GNUEFI@@" "${gnu-efi}"
|
|
|
|
lib/ccan.git/tools/create-ccan-tree --build-type=automake lib/ccan "talloc read_write_all build_assert array_size endian"
|
|
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; {
|
|
description = "Tools for maintaining UEFI signature databases";
|
|
homepage = "http://jk.ozlabs.org/docs/sbkeysync-maintaing-uefi-key-databases";
|
|
maintainers = with maintainers; [ hmenke ];
|
|
platforms = [ "x86_64-linux" ]; # Broken on i686
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|
|
|