cryptodev: 1.11 -> 1.12

authored by moni.tngl.sh and committed by Jonathan Ringer 1611dbe7 b7dea9e4

+3 -2
+3 -2
pkgs/os-specific/linux/cryptodev/default.nix
··· 1 1 { fetchFromGitHub, lib, stdenv, kernel ? false }: 2 2 3 3 stdenv.mkDerivation rec { 4 - pname = "cryptodev-linux-1.11"; 4 + pname = "cryptodev-linux-1.12"; 5 5 name = "${pname}-${kernel.version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cryptodev-linux"; 9 9 repo = "cryptodev-linux"; 10 10 rev = pname; 11 - sha256 = "1ky850qiyacq8p3lng7n3w6h3x2clqrz4lkv2cv3psy92mg9pvc9"; 11 + sha256 = "sha256-vJQ10rG5FGbeEOqCUmH/pZ0P77kAW/MtUarywbtIyHw="; 12 12 }; 13 13 14 14 hardeningDisable = [ "pic" ]; ··· 20 20 meta = { 21 21 description = "Device that allows access to Linux kernel cryptographic drivers"; 22 22 homepage = "http://cryptodev-linux.org/"; 23 + maintainers = with lib.maintainers; [ fortuneteller2k ]; 23 24 license = lib.licenses.gpl2Plus; 24 25 platforms = lib.platforms.linux; 25 26 };