asmrepl: init at 1.0.2

This commit is contained in:
legendofmiracles 2021-12-01 17:01:05 -06:00
parent 391f93a83c
commit 3b2742e7bb
No known key found for this signature in database
GPG Key ID: 19B082B3DEFE5451
5 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,3 @@
source 'https://rubygems.org' do
gem 'asmrepl'
end

View File

@ -0,0 +1,18 @@
GEM
specs:
GEM
remote: https://rubygems.org/
specs:
asmrepl (1.0.3)
fisk (~> 2)
fisk (2.3.0)
PLATFORMS
ruby
DEPENDENCIES
asmrepl!
BUNDLED WITH
2.2.24

View File

@ -0,0 +1,17 @@
{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "asmrepl";
gemdir = ./.;
exes = [ "asmrepl" ];
passthru.updateScript = bundlerUpdateScript "asmrepl";
meta = with lib; {
description = "A REPL for x86-64 assembly language";
homepage = "https://github.com/tenderlove/asmrepl";
license = licenses.asl20;
maintainers = with maintainers; [ legendofmiracles ];
platforms = platforms.x86_64;
};
}

View File

@ -0,0 +1,23 @@
{
asmrepl = {
dependencies = ["fisk"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "10d0zvkhk3ja48vvx28hfsqfrzfl66vdpmk3gcgb5viy174c72v6";
type = "gem";
};
version = "1.0.3";
};
fisk = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1mq2a7hjs9xfg514ci0xw90c33rzq1y58ywpnmhp7w767ll6wldd";
type = "gem";
};
version = "2.3.0";
};
}

View File

@ -1996,6 +1996,8 @@ with pkgs;
asmfmt = callPackage ../development/tools/asmfmt { };
asmrepl = callPackage ../development/interpreters/asmrepl { };
aspcud = callPackage ../tools/misc/aspcud { };
at = callPackage ../tools/system/at { };