ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ca / cargo-info / package.nix
blob70700aa4ee2db2e3f63bbc3439634d3494f7109e
1 { lib
2 , rustPlatform
3 , fetchFromGitLab
4 , pkg-config
5 , openssl
6 , stdenv
7 , darwin
8 }:
10 rustPlatform.buildRustPackage rec {
11   pname = "cargo-info";
12   version = "0.7.7";
14   src = fetchFromGitLab {
15     owner = "imp";
16     repo = "cargo-info";
17     rev = version;
18     hash = "sha256-MrkYGUd1jsAqIVYWe7YDZaq7NPv/mHQqLS7GFrYYIo8=";
19   };
21   cargoHash = "sha256-yxftWLGIFt4QO1XKXpBcKnTEiL0x9RKGRCMEO/H1PEU=";
23   nativeBuildInputs = [
24     pkg-config
25   ];
27   buildInputs = [
28     openssl
29   ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
30     darwin.apple_sdk.frameworks.SystemConfiguration
31   ];
33   meta = with lib; {
34     description = "Cargo subcommand to show crates info from crates.io";
35     mainProgram = "cargo-info";
36     homepage = "https://gitlab.com/imp/cargo-info";
37     changelog = "https://gitlab.com/imp/cargo-info/-/blob/${src.rev}/CHANGELOG.md";
38     license = with licenses; [ mit asl20 ];
39     maintainers = with maintainers; [ figsoda matthiasbeyer ];
40   };