depot/third_party/nixpkgs/pkgs/by-name/ma/mapscii/package.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

28 lines
684 B
Nix

{ lib
, fetchFromGitHub
, buildNpmPackage
}:
buildNpmPackage rec {
pname = "mapscii";
version = "0.3.1";
src = fetchFromGitHub {
owner = "rastapasta";
repo = "mapscii";
rev = "v${version}";
hash = "sha256-IFVX3l2b3pu0nfMZebVix0mwHUvnE2NUNrB3+jr3G2Q=";
};
npmDepsHash = "sha256-w/gTRritttShxrj6n6RzjCVin6TjJl+o/sVoBafAM+0=";
dontNpmBuild = true;
meta = with lib; {
description = "MapSCII is a Braille & ASCII world map renderer for your console";
homepage = "https://github.com/rastapasta/mapscii";
license = licenses.mit;
maintainers = with maintainers; [ kinzoku ];
mainProgram = "mapscii";
platforms = platforms.all;
};
}