rink: 0.4.4 -> 0.4.5

This commit is contained in:
Oleksii Filonenko 2020-01-06 12:39:32 +02:00
parent 5302f600e2
commit 8d8ce109cb
No known key found for this signature in database
GPG Key ID: F3510FE5691629A1
2 changed files with 1155 additions and 249 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub, rustPlatform, openssl, pkgconfig, gmp, ncurses }:
rustPlatform.buildRustPackage rec {
version = "0.4.4";
version = "0.4.5";
pname = "rink";
src = fetchFromGitHub {
owner = "tiffany352";
repo = "rink-rs";
rev = "v${version}";
sha256 = "0rvck5ahg7s51fdlr2ch698cwnyc6qp84zhfgs3wkszj9r5j470k";
sha256 = "0vl996y58a9b62d8sqrpfn2h8qkya7qbg5zqsmy7nxhph1vhbspj";
};
cargoPatches = [ ./cargo-lock.patch ];
cargoSha256 = "1ijfvfhgjgzlpi1hjhy435m7vq568grh84bmkdlj3m83jxjcz874";
cargoSha256 = "0q2g1hkqyzq9lsas4fhsbpk3jn5hikchh6i1jf9c08ca2xm136c2";
buildInputs = [ pkgconfig ];
propagatedBuildInputs = [ openssl gmp ncurses ];
@ -22,7 +22,7 @@ rustPlatform.buildRustPackage rec {
meta = with stdenv.lib; {
description = "Unit-aware calculator";
homepage = http://rink.tiffnix.com;
homepage = "http://rink.tiffnix.com";
license = with licenses; [ mpl20 gpl3 ];
maintainers = [ maintainers.sb0 ];
};