ocamlPackages.mew: small cleaning

This commit is contained in:
Vincent Laporte
2025-11-13 20:07:25 +01:00
parent 77668a1d0c
commit 7e701f586f

View File

@@ -6,17 +6,15 @@
trie, trie,
}: }:
buildDunePackage rec { buildDunePackage (finalAttrs: {
pname = "mew"; pname = "mew";
version = "0.1.0"; version = "0.1.0";
useDune2 = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "kandu"; owner = "kandu";
repo = pname; repo = "mew";
rev = version; tag = finalAttrs.version;
sha256 = "0417xsghj92v3xa5q4dk4nzf2r4mylrx2fd18i7cg3nzja65nia2"; hash = "sha256-QkVbjJLfjsdORKE50TP1lWThviWzEVxUH1skCZ/uJxA=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@@ -25,10 +23,10 @@ buildDunePackage rec {
]; ];
meta = { meta = {
inherit (src.meta) homepage; homepage = "https://github.com/kandu/mew";
license = lib.licenses.mit; license = lib.licenses.mit;
description = "Modal Editing Witch"; description = "Modal Editing Witch";
maintainers = [ lib.maintainers.vbgl ]; maintainers = [ lib.maintainers.vbgl ];
}; };
} })