pkgs/iamb: innit at 066f60ad321eb7d16a9535744ec0193b36468c37

This commit is contained in:
Aaron Bieber 2023-03-11 05:36:45 -07:00
parent 52bb1b74ac
commit f38dcb18d1
No known key found for this signature in database
3 changed files with 24 additions and 0 deletions

View File

@ -229,6 +229,7 @@
inherit pkgs;
isUnstable = true;
};
iamb = pkgs.callPackage ./pkgs/iamb.nix { };
icbirc = pkgs.callPackage ./pkgs/icbirc.nix {
inherit pkgs;
isUnstable = true;

View File

@ -283,6 +283,7 @@ in {
talon
(callPackage ../../pkgs/iamb.nix { })
(callPackage ../../pkgs/kobuddy.nix {
inherit pkgs;
inherit (pkgs.python39Packages)

22
pkgs/iamb.nix Normal file
View File

@ -0,0 +1,22 @@
{ lib, rustPlatform, fetchFromGitHub, stdenv }:
rustPlatform.buildRustPackage rec {
pname = "iamb";
version = "2023-03-09";
src = fetchFromGitHub {
owner = "ulyssa";
repo = pname;
rev = "066f60ad321eb7d16a9535744ec0193b36468c37";
hash = "sha256-IX28ZquUqt7GOTPWX9XgEZGbx7vWLrRS6jn5Y9smE1k=";
};
cargoHash = "sha256-5ujLOmtb9fZ4YhfA/OKHFxLWfcKBERndFMj7BbdTJZ4=";
meta = with lib; {
description = "A Matrix client for Vim addicts";
homepage = "https://github.com/ulyssa/iamb";
license = licenses.asl20;
maintainers = [ maintainers.qbit ];
};
}