Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
zasm: Init at 4.2.6
  • Loading branch information
turboMaCk authored and infinisil committed Mar 24, 2020
1 parent 899f698 commit 6231406
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
44 changes: 44 additions & 0 deletions pkgs/development/compilers/zasm/default.nix
@@ -0,0 +1,44 @@
{ fetchFromGitHub, zlib, stdenv }:
let
libs-src = fetchFromGitHub {
owner = "megatokio";
repo = "Libraries";
rev = "97ea480051b106e83a086dd42583dfd3e9d458a1";
sha256 = "1kqmjb9660mnb0r18s1grrrisx6b73ijsinlyr97vz6992jd5dzh";
};
in
stdenv.mkDerivation {
pname = "zasm";
version = "4.2.6";
src = fetchFromGitHub {
owner = "megatokio";
repo = "zasm";
rev = "f1424add17a5514895a598d6b5e3982579961519";
sha256 = "1kqnqdqp2bfsazs6vfx2aiqanxxagn8plx8g6rc11vmr8yqnnpks";
};

buildInputs = [ zlib ];

configurePhase = ''
ln -sf ${libs-src} Libraries
'';

buildPhase = ''
cd Linux
make
'';

installPhase = ''
mkdir -p $out/bin
mv zasm $out/bin
'';

meta = with stdenv.lib; {
description = "Z80 / 8080 assembler (for unix-style OS)";
homepage = "https://k1.spdns.de/Develop/Projects/zasm/Distributions/";
license = licenses.bsd2;
maintainers = [ maintainers.turbomack ];
platforms = platforms.linux;
badPlatforms = platforms.aarch64;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -7780,6 +7780,8 @@ in

you-get = python3Packages.callPackage ../tools/misc/you-get { };

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

zbackup = callPackage ../tools/backup/zbackup {};

zbar = libsForQt5.callPackage ../tools/graphics/zbar { };
Expand Down

0 comments on commit 6231406

Please sign in to comment.