cryptodev: 1.11 -> 1.12
[NixPkgs.git] / pkgs / os-specific / linux / cryptodev / default.nix
blobf09679ba2128d32987d95b4d8f4de8268c5f21fb
1 { fetchFromGitHub, lib, stdenv, kernel ? false }:
3 stdenv.mkDerivation rec {
4   pname = "cryptodev-linux-1.12";
5   name = "${pname}-${kernel.version}";
7   src = fetchFromGitHub {
8     owner = "cryptodev-linux";
9     repo = "cryptodev-linux";
10     rev = pname;
11     sha256 = "sha256-vJQ10rG5FGbeEOqCUmH/pZ0P77kAW/MtUarywbtIyHw=";
12   };
14   hardeningDisable = [ "pic" ];
16   KERNEL_DIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
17   INSTALL_MOD_PATH = "\${out}";
18   prefix = "\${out}";
20   meta = {
21     description = "Device that allows access to Linux kernel cryptographic drivers";
22     homepage = "http://cryptodev-linux.org/";
23     maintainers = with lib.maintainers; [ fortuneteller2k ];
24     license = lib.licenses.gpl2Plus;
25     platforms = lib.platforms.linux;
26   };