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.
22 lines
407 B
Nix
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;
|
|
};
|
|
}
|