Skip to content

Commit

Permalink
linuxPackages.v4l2loopback: 0.9.1 -> 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pbogdan authored and obadz committed Mar 28, 2018
1 parent df5f67d commit 6b8a6fa
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/os-specific/linux/v4l2loopback/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{ stdenv, fetchurl, kernel, kmod }:
{ stdenv, fetchFromGitHub, kernel, kmod }:

stdenv.mkDerivation rec {
name = "v4l2loopback-${version}-${kernel.version}";
version = "0.9.1";
version = "0.11.0";

src = fetchurl {
url = "https://github.com/umlaeute/v4l2loopback/archive/v${version}.tar.gz";
sha256 = "1crkhxlnskqrfj3f7jmiiyi5m75zmj7n0s26xz07wcwdzdf2p568";
src = fetchFromGitHub {
owner = "umlaeute";
repo = "v4l2loopback";
rev = "v${version}";
sha256 = "1wb5qmy13w8rl4279bwp69s4sb1x5hk5d2n563p1yk8yi567p2az";
};

hardeningDisable = [ "format" "pic" ];
Expand Down

0 comments on commit 6b8a6fa

Please sign in to comment.