mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
01854a850a
The former is deprecated and doesn't handle compressed kernel modules, so all current usages of it are broken.
56 lines
1.6 KiB
Nix
56 lines
1.6 KiB
Nix
{ stdenv, fetchurl
|
|
, yacc, flex
|
|
, sysfsutils, kmod, udev
|
|
, firmware # Special pcmcia cards.
|
|
, config # Special hardware (map memory & port & irq)
|
|
, lib # used to generate postInstall script.
|
|
}:
|
|
|
|
# FIXME: should add an option to choose between hotplug and udev.
|
|
stdenv.mkDerivation rec {
|
|
name = "pcmciautils-017";
|
|
|
|
src = fetchurl {
|
|
url = "https://kernel.org/pub/linux/utils/kernel/pcmcia/${name}.tar.gz";
|
|
sha256 = "5d8e2efad8a7f692129610603da232f2144851753d8d49a70eeb8eb1be6f6bc3";
|
|
};
|
|
|
|
buildInputs = [udev yacc sysfsutils kmod flex];
|
|
|
|
patchPhase = ''
|
|
sed -i "
|
|
s,/sbin/modprobe,${kmod}&,;
|
|
s,/lib/udev/,$out/sbin/,;
|
|
" udev/* # fix-color */
|
|
sed -i "
|
|
s,/lib/firmware,$out&,;
|
|
s,/etc/pcmcia,$out&,;
|
|
" src/{startup.c,pcmcia-check-broken-cis.c} # fix-color */
|
|
''
|
|
+ (if firmware == [] then ''sed -i "s,STARTUP = true,STARTUP = false," Makefile'' else "")
|
|
+ (if config == null then "" else ''
|
|
ln -sf ${config} ./config/config.opts'')
|
|
;
|
|
|
|
makeFlags = "LEX=flex";
|
|
installFlags = ''INSTALL=install DESTDIR=''${out}'';
|
|
postInstall =
|
|
lib.concatMapStrings (path: ''
|
|
for f in : $(find ${path} -type f); do
|
|
test "$f" == ":" && continue;
|
|
mkdir -p $(dirname $out/lib/firmware/$\{f#${path}});
|
|
ln -s $f $out/lib/firmware/$\{f#${path}};
|
|
done;
|
|
'') firmware;
|
|
|
|
meta = {
|
|
homepage = https://www.kernel.org/pub/linux/utils/kernel/pcmcia/;
|
|
longDescription = "
|
|
PCMCIAutils contains the initialization tools necessary to allow
|
|
the PCMCIA subsystem to behave (almost) as every other
|
|
hotpluggable bus system.
|
|
";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|