nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
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 = {
15 description = "REPL for x86-64 assembly language";
16 homepage = "https://github.com/tenderlove/asmrepl";
17 license = lib.licenses.asl20;
18 maintainers = [ ];
19 platforms = lib.platforms.x86_64;
20 };
21}