2019-02-02 09:50:15 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, openssl, pkgconfig, gmp, ncurses }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-01-06 10:39:32 +00:00
|
|
|
version = "0.4.5";
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "rink";
|
2019-02-02 09:50:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tiffany352";
|
|
|
|
repo = "rink-rs";
|
|
|
|
rev = "v${version}";
|
2020-01-06 10:39:32 +00:00
|
|
|
sha256 = "0vl996y58a9b62d8sqrpfn2h8qkya7qbg5zqsmy7nxhph1vhbspj";
|
2019-02-02 09:50:15 +00:00
|
|
|
};
|
|
|
|
cargoPatches = [ ./cargo-lock.patch ];
|
|
|
|
|
2020-01-06 10:39:32 +00:00
|
|
|
cargoSha256 = "0q2g1hkqyzq9lsas4fhsbpk3jn5hikchh6i1jf9c08ca2xm136c2";
|
2019-02-02 09:50:15 +00:00
|
|
|
|
|
|
|
buildInputs = [ pkgconfig ];
|
|
|
|
propagatedBuildInputs = [ openssl gmp ncurses ];
|
|
|
|
|
|
|
|
# Some tests fail and/or attempt to use internet servers.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Unit-aware calculator";
|
2020-01-06 10:39:32 +00:00
|
|
|
homepage = "http://rink.tiffnix.com";
|
2019-02-02 09:50:15 +00:00
|
|
|
license = with licenses; [ mpl20 gpl3 ];
|
2020-01-06 10:41:19 +00:00
|
|
|
maintainers = with maintainers; [ sb0 filalex77 ];
|
2019-02-02 09:50:15 +00:00
|
|
|
};
|
|
|
|
}
|