iamb: init at 0.0.7

This commit is contained in:
Abin Simon 2023-04-13 22:37:30 +05:30
parent b3ad93ad5b
commit d88182569d
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib
, rustPlatform
, fetchFromGitHub
, darwin
, stdenv
}:
rustPlatform.buildRustPackage rec {
pname = "iamb";
version = "0.0.7";
src = fetchFromGitHub {
owner = "ulyssa";
repo = "iamb";
rev = "v${version}";
hash = "sha256-KKr7dfFSffkFgqcREy/3RIIn5c5IxhFR7CjFJqCmqdM=";
};
cargoHash = "sha256-/OBGRE9zualLnMh9Ikh9s9IE9b8mEmAC/H5KUids8a8=";
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.AppKit
];
meta = with lib; {
description = "A Matrix client for Vim addicts";
homepage = "https://github.com/ulyssa/iamb";
changelog = "https://github.com/ulyssa/iamb/releases/tag/${src.rev}";
license = licenses.asl20;
maintainers = with maintainers; [ meain ];
};
}

View File

@ -31852,6 +31852,8 @@ with pkgs;
matrix-recorder = callPackage ../applications/networking/instant-messengers/matrix-recorder { };
iamb = callPackage ../applications/networking/instant-messengers/iamb { };
mblaze = callPackage ../applications/networking/mailreaders/mblaze { };
mbrola = callPackage ../applications/audio/mbrola { };