about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/sjasmplus/default.nix
blob: 6ef3d11c712f9b398e9546c99c134685d1194437 (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
29
30
31
32
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "sjasmplus";
  version = "1.18.3";

  src = fetchFromGitHub {
    owner = "z00m128";
    repo = "sjasmplus";
    rev = "v${version}";
    sha256 = "sha256-+FvNYfJ5I91RfuJTiOPhj5KW8HoOq8OgnnpFEgefSGc=";
  };

  buildFlags = [
    "CC=${stdenv.cc.targetPrefix}cc"
    "CXX=${stdenv.cc.targetPrefix}c++"
  ];

  installPhase = ''
    runHook preInstall
    install -D sjasmplus $out/bin/sjasmplus
    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://z00m128.github.io/sjasmplus/";
    description = "A Z80 assembly language cross compiler. It is based on the SjASM source code by Sjoerd Mastijn";
    license = licenses.bsd3;
    platforms = platforms.all;
    maintainers = with maintainers; [ electrified ];
  };
}