mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
42 lines
852 B
Nix
42 lines
852 B
Nix
{ lib
|
|
, fetchCrate
|
|
, rustPlatform
|
|
, pkg-config
|
|
, openssl
|
|
, dbus
|
|
, sqlite
|
|
, stdenv
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "leetcode-cli";
|
|
version = "0.3.11";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
sha256 = "sha256-DHtIhiRPRGuO6Rf1d9f8r0bMOHqAaJleUvYNyPiX6mc=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-Suk/nQ+JcoD9HO9x1lYp+p4qx0DZ9dt0p5jPz0ZQB+k=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
dbus
|
|
sqlite
|
|
] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
|
|
|
|
meta = with lib; {
|
|
description = "May the code be with you 👻";
|
|
longDescription = "Use leetcode.com in command line";
|
|
homepage = "https://github.com/clearloop/leetcode-cli";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ congee ];
|
|
mainProgram = "leetcode";
|
|
};
|
|
}
|