hmm: init at 0.6.0

https://github.com/samwho/hmm
This commit is contained in:
figsoda 2023-06-13 18:17:22 -04:00
parent 3f3ca021b7
commit 82a276592c
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, rustPlatform
, fetchCrate
, perl
}:
rustPlatform.buildRustPackage rec {
pname = "hmm";
version = "0.6.0";
src = fetchCrate {
pname = "hmmcli";
inherit version;
hash = "sha256-WPePzqZ2iGeJ7kzTj8eg7q1JEjw91WY7gViJJ46SLRY=";
};
cargoHash = "sha256-9Z49aPfcIdMfYCFAXsxFxcfhaLjtPod+nMFHDmvgDY0=";
nativeCheckInputs = [
perl
];
preCheck = ''
export HOME=$(mktemp -d)
'';
meta = with lib; {
description = "A small command-line note-taking app";
homepage = "https://github.com/samwho/hmm";
changelog = "https://github.com/samwho/hmm/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View File

@ -31393,6 +31393,8 @@ with pkgs;
hledger-web = haskell.lib.compose.justStaticExecutables haskellPackages.hledger-web;
hledger-utils = with python3.pkgs; toPythonApplication hledger-utils;
hmm = callPackage ../applications/misc/hmm { };
homebank = callPackage ../applications/office/homebank {
gtk = gtk3;
};