mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 20:53:22 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
77 lines
1.7 KiB
Nix
77 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, openssl
|
|
, libusb1
|
|
, libedit
|
|
, curl
|
|
, gengetopt
|
|
, pkg-config
|
|
, pcsclite
|
|
, help2man
|
|
, darwin
|
|
, libiconv
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yubihsm-shell";
|
|
version = "2.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Yubico";
|
|
repo = "yubihsm-shell";
|
|
rev = version;
|
|
hash = "sha256-0IsdIhuKpzfArVB4xBaxCPqtk0fKWb6RuGImUj1E4Zs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Can't find libyubihsm at runtime because of dlopen() in C code
|
|
substituteInPlace lib/yubihsm.c \
|
|
--replace "libyubihsm_usb.so" "$out/lib/libyubihsm_usb.so" \
|
|
--replace "libyubihsm_http.so" "$out/lib/libyubihsm_http.so"
|
|
# ld: unknown option: -z
|
|
substituteInPlace CMakeLists.txt cmake/SecurityFlags.cmake \
|
|
--replace "AppleClang" "Clang"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
help2man
|
|
gengetopt
|
|
];
|
|
|
|
buildInputs = [
|
|
libusb1
|
|
libedit
|
|
curl
|
|
openssl
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
pcsclite.dev
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.PCSC
|
|
libiconv
|
|
];
|
|
|
|
preBuild = lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
NIX_CFLAGS_COMPILE="$(pkg-config --cflags libpcsclite) $NIX_CFLAGS_COMPILE"
|
|
'';
|
|
|
|
cmakeFlags = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"-DDISABLE_LTO=ON"
|
|
];
|
|
|
|
# causes redefinition of _FORTIFY_SOURCE
|
|
hardeningDisable = [ "fortify3" ];
|
|
|
|
meta = with lib; {
|
|
description = "yubihsm-shell and libyubihsm";
|
|
homepage = "https://github.com/Yubico/yubihsm-shell";
|
|
maintainers = with maintainers; [ matthewcroughan ];
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|