Merge pull request #33446 from AndersonTorres/upload-jwasm
Jwasm: init at git-2017-11-22
This commit is contained in:
commit
ef5860db3e
@ -2,7 +2,7 @@
|
|||||||
let
|
let
|
||||||
|
|
||||||
spdx = lic: lic // {
|
spdx = lic: lic // {
|
||||||
url = "http://spdx.org/licenses/${lic.spdxId}";
|
url = "http://spdx.org/licenses/${lic.spdxId}.html";
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
@ -580,6 +580,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
|
|||||||
fullName = "Vovida Software License v1.0";
|
fullName = "Vovida Software License v1.0";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
watcom = spdx {
|
||||||
|
spdxId = "Watcom-1.0";
|
||||||
|
fullName = "Sybase Open Watcom Public License 1.0";
|
||||||
|
};
|
||||||
|
|
||||||
w3c = spdx {
|
w3c = spdx {
|
||||||
spdxId = "W3C";
|
spdxId = "W3C";
|
||||||
fullName = "W3C Software Notice and License";
|
fullName = "W3C Software Notice and License";
|
||||||
@ -614,5 +619,4 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
|
|||||||
spdxId = "ZPL-2.1";
|
spdxId = "ZPL-2.1";
|
||||||
fullName = "Zope Public License 2.1";
|
fullName = "Zope Public License 2.1";
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
27
pkgs/development/compilers/jwasm/default.nix
Normal file
27
pkgs/development/compilers/jwasm/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchFromGitHub
|
||||||
|
, cmake }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "jwasm-${version}";
|
||||||
|
version = "git-2017-11-22";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "JWasm";
|
||||||
|
repo = "JWasm";
|
||||||
|
rev = "26f97c8b5c9d9341ec45538701116fa3649b7766";
|
||||||
|
sha256 = "0m972pc8vk8s9yv1pi85fsjgm6hj24gab7nalw2q04l0359nqi7w";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
installPhase = "mkdir -p $out/bin ; cp jwasm $out/bin/";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A MASM-compatible x86 assembler";
|
||||||
|
homepage = http://jwasm.github.io/;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
|
platforms = platforms.darwin ++ platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -6366,6 +6366,8 @@ with pkgs;
|
|||||||
|
|
||||||
julia = julia_06;
|
julia = julia_06;
|
||||||
|
|
||||||
|
jwasm = callPackage ../development/compilers/jwasm { };
|
||||||
|
|
||||||
kotlin = callPackage ../development/compilers/kotlin { };
|
kotlin = callPackage ../development/compilers/kotlin { };
|
||||||
|
|
||||||
lazarus = callPackage ../development/compilers/fpc/lazarus.nix {
|
lazarus = callPackage ../development/compilers/fpc/lazarus.nix {
|
||||||
|
Loading…
Reference in New Issue
Block a user