{"id":29561565,"url":"https://github.com/tabe/minasp","last_synced_at":"2025-07-18T16:38:40.201Z","repository":{"id":228115000,"uuid":"773074821","full_name":"tabe/Minasp","owner":"tabe","description":"A Nix package of Mew","archived":false,"fork":false,"pushed_at":"2025-07-08T12:31:40.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-08T13:30:02.090Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tabe.png","metadata":{"files":{"readme":"README.org","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-03-16T17:14:56.000Z","updated_at":"2025-07-08T12:31:43.000Z","dependencies_parsed_at":"2024-03-19T13:58:10.694Z","dependency_job_id":null,"html_url":"https://github.com/tabe/Minasp","commit_stats":null,"previous_names":["tabe/minasp"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/tabe/Minasp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tabe%2FMinasp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tabe%2FMinasp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tabe%2FMinasp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tabe%2FMinasp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tabe","download_url":"https://codeload.github.com/tabe/Minasp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tabe%2FMinasp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265793684,"owners_count":23829180,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-18T16:38:39.563Z","updated_at":"2025-07-18T16:38:40.189Z","avatar_url":"https://github.com/tabe.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"#+TITLE: Minasp: a Nix package of Mew\n\n* Abstract\nMinasp (\"Mew Is Not A Single Program\") is a [[https://nixos.org/][Nix]] package of [[https://www.mew.org/][Mew]], based on [[https://github.com/NixOS/nixpkgs][nixpkgs]].\nThis package installs Mew's Emacs Lisp program as well as utility programs\nconstituting the MUA, e.g. =mewl=, which [[https://github.com/kazu-yamamoto/Mew/issues/138][are ommitted when installing MELPA's Mew package]].\n\n* Usage\nInstalling Mew by Minasp is easy.\nAll you have to do is to enable a couple of packages defined in [[file:minasp.nix]] with\n=nixpkgs=' =callPackages=.\nThey are named =minasp.elisp= and =minasp.utils=.\nThe former is for the Elisp part of Mew while the latter consists of the accompanying utility programs.\nThe followings illustrate their usage.\n\n** With Home Manager\nA minimal configuration in =~/.config/home-manager/home.nix= for making Mew available:\n#+begin_src nix\n{ config, pkgs, ... }: let\n\n  minasp-source = pkgs.fetchFromGitHub {\n    owner = \"tabe\";\n    repo = \"Minasp\";\n    rev = \"v0.6.10\";\n    hash = \"sha256-p1zEcrVA7WjKmQ3s8kBN5eKjVwZm7upmrmZSrnQSkOg=\";\n  };\n\n  minasp = pkgs.callPackages \"${minasp-source}/minasp.nix\" {};\n\nin {\n\n  home.packages = [\n    minasp.utils\n    pkgs.stunnel\n  ];\n\n  programs.emacs = {\n    enable = true;\n    extraPackages = epkgs: [\n      minasp.elisp\n    ];\n  };\n\n}\n#+end_src\n\n** How to choose Mew's version\nMinasp installs the latest release of Mew by default.\nIf you would like to choose another version of Mew, then specify the revision and its hash\nby providing =minasp.nix= with attribute =Mew-rev= and =Mew-hash=, respectively.\nFor example, replace a line in the above example\n#+begin_src nix\n  minasp = pkgs.callPackages \"${minasp-source}/minasp.nix\" {};\n#+end_src\nwith\n#+begin_src nix\n  minasp = pkgs.callPackages \"${minasp-source}/minasp.nix\" {\n    Mew-rev = \"f46b06dba0c7f0aa371be30d704b6d9ba30a8321\";\n    Mew-hash = \"sha256-y3/ged8wRNPcGF5smpHc66Eubdrnj/9SF6MobzQBAF0=\";\n  };\n#+end_src\n\n* License\n[[file:LICENSE][MIT License]]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftabe%2Fminasp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftabe%2Fminasp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftabe%2Fminasp/lists"}