nixpkgs/pkgs/development/interpreters/asmrepl/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
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/'
2024-06-09 23:07:45 +02:00

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;
};
}