tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cryptodev: fix build with patches from master
Franz Pletz
2 years ago
c849940e
ebbd29d6
+14
-1
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
cryptodev
default.nix
+14
-1
pkgs/os-specific/linux/cryptodev/default.nix
···
1
-
{ fetchFromGitHub, lib, stdenv, kernel ? false }:
0
0
0
0
0
0
2
3
stdenv.mkDerivation rec {
4
pname = "cryptodev-linux-1.13";
···
10
rev = pname;
11
hash = "sha256-EzTPoKYa+XWOAa/Dk7ru02JmlymHeXVX7RMmEoJ1OT0=";
12
};
0
0
0
0
0
0
0
13
14
nativeBuildInputs = kernel.moduleBuildDependencies;
15
hardeningDisable = [ "pic" ];
···
1
+
{
2
+
lib,
3
+
stdenv,
4
+
fetchFromGitHub,
5
+
fetchpatch,
6
+
kernel ? false,
7
+
}:
8
9
stdenv.mkDerivation rec {
10
pname = "cryptodev-linux-1.13";
···
16
rev = pname;
17
hash = "sha256-EzTPoKYa+XWOAa/Dk7ru02JmlymHeXVX7RMmEoJ1OT0=";
18
};
19
+
20
+
patches = [
21
+
(fetchpatch {
22
+
url = "https://github.com/cryptodev-linux/cryptodev-linux/compare/cryptodev-linux-1.13...5e7121e45ff283d30097da381fd7e97c4bb61364.patch";
23
+
hash = "sha256-GLWpiInBrUcVhpvEjTmD5KLCrrFZnlJGnmLU0QYz+4A=";
24
+
})
25
+
];
26
27
nativeBuildInputs = kernel.moduleBuildDependencies;
28
hardeningDisable = [ "pic" ];