tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ddcci-driver: 0.4.3 -> 0.4.4
Dixon Sean Low Yan Feng
2 years ago
e4c3cc5c
5e32d54d
+3
-12
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
ddcci
default.nix
+3
-12
pkgs/os-specific/linux/ddcci/default.nix
···
1
1
-
{ lib, stdenv, fetchFromGitLab, kernel, fetchpatch }:
1
1
+
{ lib, stdenv, fetchFromGitLab, kernel }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "ddcci-driver";
5
5
-
version = "0.4.3";
5
5
+
version = "0.4.4";
6
6
name = "${pname}-${kernel.version}-${version}";
7
7
8
8
src = fetchFromGitLab {
9
9
owner = "${pname}-linux";
10
10
repo = "${pname}-linux";
11
11
rev = "v${version}";
12
12
-
hash = "sha256-1Z6V/AorD4aslLKaaCZpmkD2OiQnmpu3iroOPlNPtLE=";
12
12
+
hash = "sha256-4pCfXJcteWwU6cK8OOSph4XlhKTk289QqLxsSWY7cac=";
13
13
};
14
14
-
15
15
-
patches = [
16
16
-
# https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/-/merge_requests/12
17
17
-
(fetchpatch {
18
18
-
name = "kernel-6.2-6.3.patch";
19
19
-
url = "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/-/commit/1ef6079679acc455f75057dd7097b5b494a241dc.patch";
20
20
-
hash = "sha256-2C2leS20egGY3J2tq96gsUQXYw13wBJ3ZWrdIXxmEYs=";
21
21
-
})
22
22
-
];
23
14
24
15
hardeningDisable = [ "pic" ];
25
16