starry: init at 2.0.1

https://github.com/Canop/starry
This commit is contained in:
figsoda 2023-08-21 21:00:25 -04:00
parent 50097d75fa
commit 17173e961e
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib
, rustPlatform
, fetchCrate
, pkg-config
, openssl
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "starry";
version = "2.0.1";
src = fetchCrate {
inherit pname version;
hash = "sha256-CPEMjg70MXlV+ruYnEHpTmqlc27NMTUKTR4/fpQmYcI=";
};
cargoHash = "sha256-d6icXOgju4qEV2+J+G09/xeQMIX3/4XUFmuWfD/Cqhc=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
meta = with lib; {
description = "Current stars history tells only half the story";
homepage = "https://github.com/Canop/starry";
license = licenses.agpl3Only;
maintainers = with maintainers; [ figsoda ];
mainProgram = "starry";
};
}

View file

@ -29965,6 +29965,8 @@ with pkgs;
starfetch = callPackage ../tools/misc/starfetch { };
starry = callPackage ../tools/misc/starry { };
starship = callPackage ../tools/misc/starship {
inherit (darwin.apple_sdk.frameworks) Security Foundation Cocoa;
};