29 lines
770 B
Nix
29 lines
770 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform, openssl, pkg-config, ncurses }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
version = "0.5.1";
|
|
pname = "rink";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tiffany352";
|
|
repo = "rink-rs";
|
|
rev = "v${version}";
|
|
sha256 = "1s67drjzd4cf93hpm7b2facfd6y1x0s60aq6pygj7i02bm0cb9l9";
|
|
};
|
|
|
|
cargoSha256 = "1wd70y13lly7nccaqlv7w8znxfal0fzyf9d67y5c3aikj7hkzfin";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ openssl ncurses ];
|
|
|
|
# Some tests fail and/or attempt to use internet servers.
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Unit-aware calculator";
|
|
homepage = "https://rinkcalc.app";
|
|
license = with licenses; [ mpl20 gpl3 ];
|
|
maintainers = with maintainers; [ sb0 filalex77 ];
|
|
};
|
|
}
|