mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
18 lines
424 B
Nix
18 lines
424 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "asmrepl";
|
|
gemdir = ./.;
|
|
exes = [ "asmrepl" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "asmrepl";
|
|
|
|
meta = with lib; {
|
|
description = "REPL for x86-64 assembly language";
|
|
homepage = "https://github.com/tenderlove/asmrepl";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ lom ];
|
|
platforms = platforms.x86_64;
|
|
};
|
|
}
|