4a7f99d55d
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
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, openssl, trousers, autoreconfHook, libtool, bison, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opencryptoki";
|
|
version = "3.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "opencryptoki";
|
|
repo = "opencryptoki";
|
|
rev = "v${version}";
|
|
sha256 = "1rf7cmibmx636vzv7p54g212478a8wim2lfjf2861hfd0m96nv4l";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook libtool bison flex ];
|
|
buildInputs = [ openssl trousers ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace configure.ac \
|
|
--replace "usermod" "true" \
|
|
--replace "groupadd" "true" \
|
|
--replace "chmod" "true" \
|
|
--replace "chgrp" "true"
|
|
substituteInPlace usr/lib/Makefile.am --replace "DESTDIR" "out"
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--prefix=$(out)"
|
|
"--disable-ccatok"
|
|
"--disable-icatok"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "PKCS#11 implementation for Linux";
|
|
homepage = "https://github.com/opencryptoki/opencryptoki";
|
|
license = licenses.cpl10;
|
|
maintainers = [ maintainers.tstrobel ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|