mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
d1d18b78fd
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/d7b3p8gcfc0qmfmi5rz3igycjbllkpgq-pcmciautils-018/bin/pccardctl -h` got 0 exit code - ran `/nix/store/d7b3p8gcfc0qmfmi5rz3igycjbllkpgq-pcmciautils-018/bin/pccardctl --help` got 0 exit code - ran `/nix/store/d7b3p8gcfc0qmfmi5rz3igycjbllkpgq-pcmciautils-018/bin/pccardctl -V` and found version 018 - ran `/nix/store/d7b3p8gcfc0qmfmi5rz3igycjbllkpgq-pcmciautils-018/bin/pccardctl --version` and found version 018 - ran `/nix/store/d7b3p8gcfc0qmfmi5rz3igycjbllkpgq-pcmciautils-018/bin/pccardctl -h` and found version 018 - ran `/nix/store/d7b3p8gcfc0qmfmi5rz3igycjbllkpgq-pcmciautils-018/bin/pccardctl --help` and found version 018 - found 018 with grep in /nix/store/d7b3p8gcfc0qmfmi5rz3igycjbllkpgq-pcmciautils-018 - directory tree listing: https://gist.github.com/0340af0c6b28001bbca26c8b5ecf3638
57 lines
1.7 KiB
Nix
57 lines
1.7 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-018";
|
|
|
|
src = fetchurl {
|
|
url = "https://kernel.org/pub/linux/utils/kernel/pcmcia/${name}.tar.gz";
|
|
sha256 = "0sfm3w2n73kl5w7gb1m6q8gy5k4rgwvzz79n6yhs9w3sag3ix8sk";
|
|
};
|
|
|
|
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;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|