Merge pull request #77041 from filalex77/rink-0.4.5

rink: 0.4.4 -> 0.4.5
This commit is contained in:
lewo 2020-01-11 09:35:16 +01:00 committed by GitHub
commit 4ea7d13c5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1156 additions and 250 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,8 +22,8 @@ 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 ];
maintainers = with maintainers; [ sb0 filalex77 ];
};
}