nixpkgs/pkgs/os-specific/linux/cryptodev/default.nix

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

31 lines
852 B
Nix
Raw Normal View History

2021-01-15 15:45:37 +01:00
{ fetchFromGitHub, lib, stdenv, kernel ? false }:
stdenv.mkDerivation rec {
2023-05-19 19:43:01 +02:00
pname = "cryptodev-linux-1.13";
name = "${pname}-${kernel.version}";
2020-09-11 15:36:56 +02:00
src = fetchFromGitHub {
owner = "cryptodev-linux";
repo = "cryptodev-linux";
rev = pname;
2023-05-19 19:43:01 +02:00
hash = "sha256-EzTPoKYa+XWOAa/Dk7ru02JmlymHeXVX7RMmEoJ1OT0=";
};
nativeBuildInputs = kernel.moduleBuildDependencies;
hardeningDisable = [ "pic" ];
makeFlags = kernel.makeFlags ++ [
"KERNEL_DIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
"INSTALL_MOD_PATH=$(out)"
"prefix=$(out)"
];
meta = {
description = "Device that allows access to Linux kernel cryptographic drivers";
homepage = "http://cryptodev-linux.org/";
2023-11-17 11:03:27 +01:00
maintainers = with lib.maintainers; [ moni ];
2021-01-15 15:45:37 +01:00
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
};
}