Unverified Commit be2bc696 authored by Anderson Torres's avatar Anderson Torres Committed by GitHub
Browse files

Merge pull request #201335 from atorres1985-contrib/misc-updates

jwasm: 2.15 -> 2.16
parents abe66b20 c3717875
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -3,15 +3,15 @@
, fetchFromGitHub
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "jwasm";
  version = "2.15";
  version = "2.16";

  src = fetchFromGitHub {
    owner = "Baron-von-Riedesel";
    repo  = "JWasm";
    rev = "v${version}";
    hash = "sha256-ef4uEtEpnqYGhFmxuefJ40zyOuHsiPOLpH/52i7a7KI=";
    rev = "v${finalAttrs.version}";
    hash = "sha256-X2qqS4ev0+PeA1Gcsi8nivKAGZv7jxThxmQL/Jf5oB0=";
  };

  outputs = [ "out" "doc" ];
@@ -32,12 +32,13 @@ stdenv.mkDerivation rec {
  '';

  meta = with lib; {
    broken = stdenv.isDarwin;
    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