Skip to content

Commit

Permalink
nvidiabl: 0.85 -> 0.87
Browse files Browse the repository at this point in the history
  • Loading branch information
joachifm committed Mar 2, 2017
1 parent 7f31a8e commit 499f813
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pkgs/os-specific/linux/nvidiabl/default.nix
@@ -1,11 +1,14 @@
{ stdenv, fetchurl, kernel }:
{ stdenv, fetchFromGitHub, kernel }:

stdenv.mkDerivation {
name = "nvidiabl-0.85-${kernel.version}";
stdenv.mkDerivation rec {
name = "nvidiabl-${version}-${kernel.version}";
version = "0.87";

src = fetchurl {
url = "https://github.com/guillaumezin/nvidiabl/archive/v0.85.tar.gz";
sha256 = "1c7ar39wc8jpqh67sw03lwnyp0m9l6dad469ybqrgcywdiwxspwj";
src = fetchFromGitHub {
owner = "guillaumezin";
repo = "nvidiabl";
rev = "v${version}";
sha256 = "1hs61dxn84vsyvrd2s899dhgg342mhfkbdn1nkhcvly45hdp2nca";
};

hardeningDisable = [ "pic" ];
Expand Down

0 comments on commit 499f813

Please sign in to comment.