Skip to content

Commit

Permalink
acme: init at 120
Browse files Browse the repository at this point in the history
  • Loading branch information
OPNA2608 authored and Jon committed Mar 27, 2020
1 parent cccdf3d commit 2a846e9
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/development/compilers/acme/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ stdenv, fetchsvn }:

stdenv.mkDerivation rec {
pname = "acme";
version = "120";

src = fetchsvn {
url = "svn://svn.code.sf.net/p/acme-crossass/code-0/trunk";
rev = version;
sha256 = "0w17b8f8bis22m6l5bg8qg8nniy20f8yg2xmzjipblmc39vpv6s2";
};

sourceRoot = "code-0-r${src.rev}/src";

makeFlags = [ "BINDIR=$(out)/bin" ];

meta = with stdenv.lib; {
description = "A multi-platform cross assembler for 6502/6510/65816 CPUs.";
homepage = "https://sourceforge.net/projects/acme-crossass/";
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = with maintainers; [ OPNA2608 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8938,6 +8938,8 @@ in
inherit (darwin.apple_sdk.frameworks) OpenGL;
};

acme = callPackage ../development/compilers/acme { };

nasm = callPackage ../development/compilers/nasm { };

nvidia_cg_toolkit = callPackage ../development/compilers/nvidia-cg-toolkit { };
Expand Down

0 comments on commit 2a846e9

Please sign in to comment.