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