summary refs log tree commit diff
path: root/pkgs/development/tools/knightos/scas/default.nix
blob: eb0ab9621770e01f8604a1526ded9596b1e8aa09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ 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;
  };
}