about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/ophis/default.nix
blob: 2ddfa849b664035fcc8ca5d94c16c70b282727b0 (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
{ lib, buildPythonApplication, fetchFromGitHub }:

buildPythonApplication rec {
  pname = "ophis";
  version = "unstable-2019-04-13";

  src = fetchFromGitHub {
    owner = "michaelcmartin";
    repo = "Ophis";
    rev = "99f074da278d4ec80689c0e22e20c5552ea12512";
    sha256 = "2x8vwLTSngqQqmVrVh/mM4peATgaRqOSwrfm5XCkg/g=";
  };

  sourceRoot = "${src.name}/src";

  meta = with lib; {
    homepage = "http://michaelcmartin.github.io/Ophis/";
    description = "A cross-assembler for the 6502 series of microprocessors";
    longDescription = ''
      Ophis is an assembler for the 6502 microprocessor - the famous chip used
      in the vast majority of the classic 8-bit computers and consoles. Its
      primary design goals are code readability and output flexibility - Ophis
      has successfully been used to create programs for the Nintendo
      Entertainment System, the Atari 2600, and the Commodore 64.
    '';
    license = licenses.mit;
    maintainers = with maintainers; [ AndersonTorres ];
  };
}