mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
can-isotp: init at 20180629
changed license to gpl2
This commit is contained in:
parent
a141b3aad8
commit
551d203775
@ -1302,6 +1302,11 @@
|
||||
github = "etu";
|
||||
name = "Elis Hirwing";
|
||||
};
|
||||
evck = {
|
||||
email = "eric@evenchick.com";
|
||||
github = "ericevenchick";
|
||||
name = "Eric Evenchick";
|
||||
};
|
||||
exfalso = {
|
||||
email = "0slemi0@gmail.com";
|
||||
github = "exfalso";
|
||||
|
36
pkgs/os-specific/linux/can-isotp/default.nix
Normal file
36
pkgs/os-specific/linux/can-isotp/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv, kernel, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "can-isotp-${version}";
|
||||
version = "20180629";
|
||||
|
||||
hardeningDisable = [ "pic" ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hartkopp";
|
||||
repo = "can-isotp";
|
||||
rev = "6003f9997587e6a563cebf1f246bcd0eb6deff3d";
|
||||
sha256 = "0b2pqb0vd1wgv2zpl7lvfavqkzr8mrwhrv7zdqkq3rz9givcv8w7";
|
||||
};
|
||||
|
||||
KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
|
||||
INSTALL_MOD_PATH = "\${out}";
|
||||
|
||||
buildPhase = ''
|
||||
make modules
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
make modules_install
|
||||
'';
|
||||
|
||||
nativeBuildInputs = kernel.moduleBuildDependencies;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Kernel module for ISO-TP (ISO 15765-2)";
|
||||
homepage = "https://github.com/hartkopp/can-isotp";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.evck ];
|
||||
};
|
||||
}
|
@ -14176,6 +14176,8 @@ with pkgs;
|
||||
}) zfsStable zfsUnstable;
|
||||
|
||||
zfs = zfsStable;
|
||||
|
||||
can-isotp = callPackage ../os-specific/linux/can-isotp { };
|
||||
});
|
||||
|
||||
# The current default kernel / kernel modules.
|
||||
|
Loading…
Reference in New Issue
Block a user