Merge pull request #237646 from figsoda/hmm

This commit is contained in:
figsoda
2023-06-16 11:57:28 -04:00
committed by GitHub
2 changed files with 36 additions and 0 deletions
+34
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 ];
};
}
+2
View File
@@ -31441,6 +31441,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;
};