mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
c7f27571d3
gna.org forge is closed
28 lines
768 B
Nix
28 lines
768 B
Nix
{ fetchurl, stdenv, kernel ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cryptodev-linux-1.9";
|
|
name = "${pname}-${kernel.version}";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"http://nwl.cc/pub/cryptodev-linux/${pname}.tar.gz"
|
|
];
|
|
sha256 = "0l3r8s71vkd0s2h01r7fhqnc3j8cqw4msibrdxvps9hfnd4hnk4z";
|
|
};
|
|
|
|
hardeningDisable = [ "pic" ];
|
|
|
|
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/;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
broken = !stdenv.lib.versionOlder kernel.version "4.13";
|
|
};
|
|
}
|