summary refs log blame commit diff
path: root/pkgs/tools/misc/iay/default.nix
blob: d48e48cc83b500045d381c31cf90bbed150fb5ce (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                   
                    




                          
                                                                   

    
                                                                    















                                                                        
                                                                                       

                                                    
                                                              

    
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, openssl
, pkg-config
, AppKit
, Cocoa
, Foundation
, Security
}:

rustPlatform.buildRustPackage rec {
  pname = "iay";
  version = "0.4.2";

  src = fetchFromGitHub {
    owner = "aaqaishtyaq";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-vk+1RbAmzRf2bbvbSpO+upVW4VrtYWM+5iiH73N+dsc=";
  };

  cargoHash = "sha256-+PpmxVPyRx/xF7jQGy/07xqALmdNp2uL3HZVOeRicqY=";

  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 omasanori ];
  };
}