about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/knightos/scas/default.nix
blob: b87650d5bf95b85b1db55735fa450f667fa186b0 (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
{ fetchFromGitHub, 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" ];

  nativeBuildInputs = [ cmake ];

  meta = with stdenv.lib; {
    homepage    = "https://knightos.org/";
    description = "Assembler and linker for the Z80";
    license     = licenses.mit;
    maintainers = with maintainers; [ siraben ];
    platforms   = platforms.unix;
  };
}