exfat-nofuse: init at 2017-01-03

This commit is contained in:
makefu 2017-02-03 19:44:59 +01:00
parent 969651aaca
commit 26a27e4657
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub, kernel }:
stdenv.mkDerivation rec {
name = "exfat-nofuse-${version}-${kernel.version}";
version = "2017-01-03";
src = fetchFromGitHub {
owner = "dorimanx";
repo = "exfat-nofuse";
rev = "8d291f5";
sha256 = "0lg1mykglayswli2aliw8chsbr4g629v9chki5975avh43jn47w9";
};
hardeningDisable = [ "pic" ];
makeFlags = [
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
];
installPhase = ''
install -m644 -b -D exfat.ko $out/lib/modules/${kernel.modDirVersion}/kernel/fs/exfat/exfat.ko
'';
meta = {
description = "exfat kernel module";
homepage = https://github.com/dorimanx/exfat-nofuse;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ makefu ];
platforms = stdenv.lib.platforms.linux;
};
}

View File

@ -11245,6 +11245,8 @@ in
dpdk = callPackage ../os-specific/linux/dpdk { };
exfat-nofuse = callPackage ../os-specific/linux/exfat { };
pktgen = callPackage ../os-specific/linux/pktgen { };
odp-dpdk = callPackage ../os-specific/linux/odp-dpdk { };