biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / ghostie / default.nix
blobe6a47a55773801e1d8533724c5c193343a3e3fd0
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , pkg-config
5 , openssl
6 , sqlite
7 , stdenv
8 , darwin
9 }:
11 rustPlatform.buildRustPackage rec {
12   pname = "ghostie";
13   version = "0.3.1";
15   src = fetchFromGitHub {
16     owner = "attriaayush";
17     repo = "ghostie";
18     rev = "v${version}";
19     sha256 = "sha256-lEjJLmBA3dlIVxc8E+UvR7u154QGeCfEbxdgUxAS3Cw=";
20   };
22   cargoLock = {
23     lockFile = ./Cargo.lock;
24     outputHashes = {
25       "clokwerk-0.4.0-rc1" = "sha256-GQDWEN2arDDRu2ft8QYdXsNhBEIhBNZTnLoLy27cbAI=";
26     };
27   };
29   nativeBuildInputs = [
30     pkg-config
31   ];
33   buildInputs = [
34     openssl
35     sqlite
36   ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
37     darwin.apple_sdk.frameworks.Cocoa
38   ];
40   # 4 out of 5 tests are notification tests which do not work in nix builds
41   doCheck = false;
43   preBuild = lib.optionalString stdenv.hostPlatform.isDarwin ''
44     export HOME=$(mktemp -d)
45   '';
47   meta = with lib; {
48     description = "Github notifications in your terminal";
49     homepage = "https://github.com/attriaayush/ghostie";
50     changelog = "https://github.com/attriaayush/ghostie/releases/tag/v${version}";
51     license = licenses.mit;
52     maintainers = with maintainers; [ matthiasbeyer ];
53     broken = stdenv.hostPlatform.isx86_64 && stdenv.hostPlatform.isDarwin;
54     mainProgram = "ghostie";
55   };