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

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

54 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv
2021-01-17 04:51:22 +01:00
, fetchgit, autoconf, automake, pkg-config, help2man
, openssl, libuuid, gnu-efi, libbfd
}:
2015-07-05 14:59:01 +02:00
2022-06-07 21:22:25 +02:00
stdenv.mkDerivation rec {
pname = "sbsigntool";
2022-06-07 21:22:25 +02:00
version = "0.9.4";
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}";
sha256 = "sha256-dbjdA+hjII/k7wABTTJV5RBdy4KlNkFlBWEaX4zn5vg=";
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
'';
installPhase = ''
mkdir -p $out
make install
'';
meta = with lib; {
2015-07-05 14:59:01 +02:00
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;
2015-07-05 14:59:01 +02:00
};
}