Files
nixpkgs/pkgs/by-name/op/opencbm/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

57 lines
1.3 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
cc65,
ncurses,
pkg-config,
libusb1,
}:
stdenv.mkDerivation rec {
pname = "opencbm";
version = "0.4.99.104";
src = fetchFromGitHub {
owner = "OpenCBM";
repo = "OpenCBM";
rev = "v${version}";
sha256 = "sha256-5lj5F79Gbhrvi9dxKGobdyDyBLGcptAtxx9SANhLrKw=";
};
makefile = "LINUX/Makefile";
makeFlags = [
"PREFIX=${placeholder "out"}"
"ETCDIR=${placeholder "out"}/etc"
"UDEVRULESDIR=${placeholder "out"}/etc/udev/rules.d/"
"LDCONFIG=true"
];
installTargets = "install-all";
nativeBuildInputs = [
cc65
pkg-config
];
buildInputs = [
libusb1
ncurses
];
doInstallCheck = true;
meta = with lib; {
description = "Kernel driver and development library to control serial CBM devices";
longDescription = ''
Win 7/8/10, and Linux/i386/AMD64 kernel driver and development library to
control serial CBM devices, such as the Commodore 1541 disk drive,
connected to the PC's parallel port via a XM1541 or XA1541 cable. Fast
disk copier included. Successor of cbm4linux. Also supports the XU1541
and the XUM1541 devices (a.k.a. "ZoomFloppy").
'';
homepage = "https://spiro.trikaliotis.net/opencbm";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.sander ];
};
}