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