3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/leetcode-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
852 B
Nix
Raw Normal View History

2022-02-08 23:45:07 +00:00
{ lib
, fetchCrate
, rustPlatform
, pkg-config
, openssl
, dbus
, sqlite
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "leetcode-cli";
2022-07-28 20:36:38 +01:00
version = "0.3.11";
2022-02-08 23:45:07 +00:00
src = fetchCrate {
inherit pname version;
2022-07-28 20:36:38 +01:00
sha256 = "sha256-DHtIhiRPRGuO6Rf1d9f8r0bMOHqAaJleUvYNyPiX6mc=";
2022-02-08 23:45:07 +00:00
};
2022-07-28 20:36:38 +01:00
cargoSha256 = "sha256-Suk/nQ+JcoD9HO9x1lYp+p4qx0DZ9dt0p5jPz0ZQB+k=";
2022-02-08 23:45:07 +00:00
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";
};
}