Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "asmrepl"; 9 gemdir = ./.; 10 exes = [ "asmrepl" ]; 11 12 passthru.updateScript = bundlerUpdateScript "asmrepl"; 13 14 meta = with lib; { 15 description = "REPL for x86-64 assembly language"; 16 homepage = "https://github.com/tenderlove/asmrepl"; 17 license = licenses.asl20; 18 maintainers = with maintainers; [ lom ]; 19 platforms = platforms.x86_64; 20 }; 21}