Files
Guy Chronister e9550f73a2 asmrepl: migrate to pkgs/by-name
Moves asmrepl from pkgs/development/interpreters/asmrepl to
pkgs/by-name/as/asmrepl following the new directory structure.
Also renames default.nix to package.nix as per by-name conventions.
2026-02-12 10:09:03 -06:00

22 lines
407 B
Nix

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