lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 29 lines 1.0 kB view raw
1{ lib, buildPythonApplication, fetchFromGitHub }: 2 3buildPythonApplication rec { 4 pname = "ophis"; 5 version = "unstable-2019-04-13"; 6 7 src = fetchFromGitHub { 8 owner = "michaelcmartin"; 9 repo = "Ophis"; 10 rev = "99f074da278d4ec80689c0e22e20c5552ea12512"; 11 sha256 = "2x8vwLTSngqQqmVrVh/mM4peATgaRqOSwrfm5XCkg/g="; 12 }; 13 14 sourceRoot = "${src.name}/src"; 15 16 meta = with lib; { 17 homepage = "http://michaelcmartin.github.io/Ophis/"; 18 description = "A cross-assembler for the 6502 series of microprocessors"; 19 longDescription = '' 20 Ophis is an assembler for the 6502 microprocessor - the famous chip used 21 in the vast majority of the classic 8-bit computers and consoles. Its 22 primary design goals are code readability and output flexibility - Ophis 23 has successfully been used to create programs for the Nintendo 24 Entertainment System, the Atari 2600, and the Commodore 64. 25 ''; 26 license = licenses.mit; 27 maintainers = with maintainers; [ AndersonTorres ]; 28 }; 29}