Files
nixpkgs/pkgs/by-name/nq/nqc/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

39 lines
957 B
Nix

{
lib,
stdenv,
fetchurl,
fetchpatch,
}:
stdenv.mkDerivation rec {
pname = "nqc";
version = "3.1.r6";
src = fetchurl {
url = "https://bricxcc.sourceforge.net/nqc/release/nqc-${version}.tgz";
sha256 = "sha256-v9XmVPY5r3pYjP3vTSK9Xvz/9UexClbOvr3ljvK/52Y=";
};
sourceRoot = ".";
patches = [
./nqc-unistd.patch
(fetchpatch {
url = "https://sourceforge.net/p/bricxcc/patches/_discuss/thread/00b427dc/b84b/attachment/nqc-01-Linux_usb_and_tcp.diff";
sha256 = "sha256-UZmmhhhfLAUus36TOBhiDQ8KUeEdYhGHVFwqKqDIqII=";
})
];
makeFlags = [ "PREFIX=$(out)" ];
dontConfigure = true;
meta = with lib; {
homepage = "https://bricxcc.sourceforge.net/nqc/";
description = "Programming language for several LEGO MINDSTORMS products including the RCX, CyberMaster, and Scout";
platforms = platforms.linux;
license = licenses.mpl10;
maintainers = with maintainers; [ christophcharles ];
};
}