mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 05:23:16 +00:00
d03a9c48fb
Using asciidoc-full was unnecessary to build KnightOS-related packages since only the a2x command matters. This change makes cross-compilation far more noticeably faster. Closure size for each package reduced from around 7 MB to 2 MB.
29 lines
608 B
Nix
29 lines
608 B
Nix
{ fetchFromGitHub, lib, stdenv, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "scas";
|
|
|
|
version = "0.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KnightOS";
|
|
repo = "scas";
|
|
rev = version;
|
|
sha256 = "0z6r07cl92kq860ddas5p88l990ih9cfqlzy5y4mk5hrmjzya60j";
|
|
};
|
|
|
|
cmakeFlags = [ "-DSCAS_LIBRARY=1" ];
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://knightos.org/";
|
|
description = "Assembler and linker for the Z80";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ siraben ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|