nixpkgs/pkgs/tools/security/sbsigntool/default.nix
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00

54 lines
1.3 KiB
Nix

{ lib, stdenv
, fetchgit, autoconf, automake, pkgconfig, help2man
, openssl, libuuid, gnu-efi, libbfd
}:
stdenv.mkDerivation {
pname = "sbsigntool";
version = "0.9.1";
src = fetchgit {
url = "https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git";
rev = "v0.9.1";
sha256 = "098gxmhjn8acxjw5bq59wq4xhgkpx1xn8kjvxwdzpqkwq9ivrsbp";
};
patches = [ ./autoconf.patch ];
prePatch = "patchShebangs .";
nativeBuildInputs = [ autoconf automake pkgconfig 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 = [ maintainers.tstrobel ];
platforms = [ "x86_64-linux" ]; # Broken on i686
license = licenses.gpl3;
};
}