iay: init at v0.4.0

add bash/zsh prompt (aaqaishtyaq/iay).

Signed-off-by: Aaqa Ishtyaq <aaqaishtyaq@gmail.com>
This commit is contained in:
Aaqa Ishtyaq 2022-12-18 18:39:10 +05:30
parent caf6b766b8
commit 1bf3622e48
2 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, openssl
, pkg-config
, AppKit
, Cocoa
, Foundation
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "iay";
version = "0.4.0";
src = fetchFromGitHub {
owner = "aaqaishtyaq";
repo = pname;
rev = "v${version}";
sha256 = "0r2yp34gxkh32amrysfj1jg543dh0kyqxzcx0zyi6a8y9232d8ky";
};
cargoHash = "sha256-SMqiwM6LrXXjV4Mb2BY9WbeKKPkxiYxPyZ4aepVIAqU=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [
openssl
]
++ lib.optionals stdenv.isDarwin [
AppKit
Cocoa
Foundation
Security
];
NIX_LDFLAGS = lib.optionals stdenv.isDarwin [ "-framework" "AppKit" ];
meta = with lib; {
description =
"Minimalistic, blazing-fast, and extendable prompt for bash and zsh";
homepage = "https://github.com/aaqaishtyaq/iay";
license = licenses.mit;
maintainers = with maintainers; [ aaqaishtyaq ];
};
}

View file

@ -14624,6 +14624,10 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
iay = callPackage ../tools/misc/iay {
inherit (darwin.apple_sdk.frameworks) AppKit Security Foundation Cocoa;
};
idrisPackages = dontRecurseIntoAttrs (callPackage ../development/idris-modules {
idris-no-deps = haskellPackages.idris;
});