mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
pkgs/vendor-reset: Removed due to upstream existence
This commit is contained in:
parent
f4b4ab2b28
commit
68b3cec224
1 changed files with 0 additions and 33 deletions
|
|
@ -1,33 +0,0 @@
|
|||
{ stdenv, lib, fetchFromGitHub, kernel, pkgs }:
|
||||
|
||||
let
|
||||
version = "0.1.1";
|
||||
rev = "225a49a40941e350899e456366265cf82b87ad25";
|
||||
sha256 = "071zd8slra0iqsvzqpp6lcvg5dql5hkn161gh9aq34wix7pwzbn5";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
name = "vendor-reset-${version}-${kernel.version}";
|
||||
inherit version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gnif";
|
||||
repo = "vendor-reset";
|
||||
inherit rev;
|
||||
inherit sha256;
|
||||
};
|
||||
|
||||
hardeningDisable = [ "pic" ];
|
||||
|
||||
makeFlags = [
|
||||
"KVER=${kernel.modDirVersion}"
|
||||
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
||||
"INSTALL_MOD_PATH=$(out)"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
license = [ licenses.gpl2Only ];
|
||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||
description = "Vendor Reset kernel module";
|
||||
homepage = "https://github.com/gnif/vendor-reset";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue