2019-02-02 10:50:15 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, openssl, pkgconfig, gmp, ncurses }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
version = "0.4.4";
|
|
|
|
name = "rink-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tiffany352";
|
|
|
|
repo = "rink-rs";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0rvck5ahg7s51fdlr2ch698cwnyc6qp84zhfgs3wkszj9r5j470k";
|
|
|
|
};
|
|
|
|
cargoPatches = [ ./cargo-lock.patch ];
|
|
|
|
|
2019-05-25 13:03:08 +02:00
|
|
|
cargoSha256 = "1ijfvfhgjgzlpi1hjhy435m7vq568grh84bmkdlj3m83jxjcz874";
|
2019-02-02 10:50:15 +01: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";
|
|
|
|
homepage = http://rink.tiffnix.com;
|
|
|
|
license = with licenses; [ mpl20 gpl3 ];
|
|
|
|
maintainers = [ maintainers.sb0 ];
|
|
|
|
};
|
|
|
|
}
|