2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl
|
2019-05-13 06:49:40 +01:00
|
|
|
, darwin
|
|
|
|
}:
|
|
|
|
|
|
|
|
with rustPlatform;
|
|
|
|
|
|
|
|
buildRustPackage rec {
|
|
|
|
pname = "chit";
|
2019-10-19 22:15:19 +01:00
|
|
|
version = "0.1.15";
|
2019-05-13 06:49:40 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "peterheesterman";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-10-19 22:15:19 +01:00
|
|
|
sha256 = "0iixczy3cad44j2d7zzj8f3lnmp4jwnb0snmwfgiq3vj9wrn28pz";
|
2019-05-13 06:49:40 +01:00
|
|
|
};
|
|
|
|
|
2021-05-07 12:00:49 +01:00
|
|
|
cargoSha256 = "1y6k24p4m67v5773rzid2r0jwxp9piggrp0462z446hbcam2r4gd";
|
2019-05-13 06:49:40 +01:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
|
2019-05-13 06:49:40 +01:00
|
|
|
buildInputs = []
|
2021-01-23 12:26:19 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ openssl ]
|
|
|
|
++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ CoreFoundation CoreServices Security ])
|
2019-05-13 06:49:40 +01:00
|
|
|
;
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2019-05-13 06:49:40 +01:00
|
|
|
description = "Crate help in terminal: A tool for looking up details about rust crates without going to crates.io";
|
|
|
|
longDescription = ''
|
|
|
|
Chit helps answer these questions:
|
|
|
|
|
|
|
|
* Who wrote this crate? What else did they write?
|
|
|
|
* What alternatives are there?
|
|
|
|
* How old is this crate?
|
|
|
|
* What versions are there? When did they come out?
|
|
|
|
* What are the downloads over time?
|
|
|
|
* Should i use this crate?
|
|
|
|
* How mature is it?
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/peterheesterman/chit";
|
2019-05-13 06:49:40 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.lilyball ];
|
|
|
|
};
|
|
|
|
}
|