evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ma / mapscii / package.nix
blob088e5bd4b5671c2dce9bd34e4cb27b64b8c99731
1 { lib
2 , fetchFromGitHub
3 , buildNpmPackage
4 }:
5 buildNpmPackage rec {
6   pname = "mapscii";
7   version = "0.3.1";
9   src = fetchFromGitHub {
10     owner = "rastapasta";
11     repo = "mapscii";
12     rev = "v${version}";
13     hash = "sha256-IFVX3l2b3pu0nfMZebVix0mwHUvnE2NUNrB3+jr3G2Q=";
14   };
16   npmDepsHash = "sha256-w/gTRritttShxrj6n6RzjCVin6TjJl+o/sVoBafAM+0=";
18   dontNpmBuild = true;
20   meta = with lib; {
21     description = "MapSCII is a Braille & ASCII world map renderer for your console";
22     homepage = "https://github.com/rastapasta/mapscii";
23     license = licenses.mit;
24     maintainers = with maintainers; [ kinzoku ];
25     mainProgram = "mapscii";
26     platforms = platforms.all;
27   };