Merge pull request #334573 from flokli/v4l2loopback-bump

linuxPackages*.v4l2loopback: 0.12.7-unstable-2024-02-12 -> 0.13.2
This commit is contained in:
Florian Klink 2024-08-14 13:36:58 +03:00 committed by GitHub
commit 2ed49f0b54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,14 +1,16 @@
{ lib, stdenv, fetchFromGitHub, kernel, kmod }:
stdenv.mkDerivation {
let version = "0.13.2";
in stdenv.mkDerivation {
pname = "v4l2loopback";
version = "0.12.7-unstable-2024-02-12-${kernel.version}";
version = "${version}-${kernel.version}";
src = fetchFromGitHub {
owner = "umlaeute";
repo = "v4l2loopback";
rev = "5d72c17f92ee0e38efbb7eb85e34443ecbf1a80c";
hash = "sha256-ggmYH5MUXhMPvA8UZ2EAG+eGoPTNbw7B8UxmmgP6CsE=";
rev = "v${version}";
hash = "sha256-rcwgOXnhRPTmNKUppupfe/2qNUBDUqVb3TeDbrP5pnU=";
};
hardeningDisable = [ "format" "pic" ];