01ed8ef136
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "jwasm";
|
|
version = "2.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Baron-von-Riedesel";
|
|
repo = "JWasm";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-X2qqS4ev0+PeA1Gcsi8nivKAGZv7jxThxmQL/Jf5oB0=";
|
|
};
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
dontConfigure = true;
|
|
|
|
preBuild = ''
|
|
cp ${if stdenv.cc.isClang then "CLUnix.mak" else "GccUnix.mak"} Makefile
|
|
substituteInPlace Makefile \
|
|
--replace "/usr/local/bin" "${placeholder "out"}/bin"
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dpm644 $src/Html/License.html \
|
|
$src/Html/Manual.html \
|
|
$src/Html/Readme.html \
|
|
-t $doc/share/doc/jwasm/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Baron-von-Riedesel/JWasm/";
|
|
description = "A MASM-compatible x86 assembler";
|
|
changelog = "https://github.com/Baron-von-Riedesel/JWasm/releases/tag/v${finalAttrs.version}";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
platforms = platforms.unix;
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
})
|
|
# TODO: generalize for Windows builds
|