1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-14 00:25:24 +00:00
nixpkgs/pkgs/applications/science/misc/rink/default.nix

29 lines
770 B
Nix
Raw Normal View History

2020-07-18 11:30:05 +01:00
{ stdenv, fetchFromGitHub, rustPlatform, openssl, pkg-config, ncurses }:
2019-02-02 09:50:15 +00:00
rustPlatform.buildRustPackage rec {
2020-07-18 11:30:05 +01:00
version = "0.5.0";
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-07-18 11:30:05 +01:00
sha256 = "1z51n25hmgqkn4bm9yj18j8p4pk5i1x3f3z70vl1vx3v109jhff0";
2019-02-02 09:50:15 +00:00
};
2020-07-18 11:30:05 +01:00
cargoSha256 = "0p63py8q4iqj5rrsir9saj7dvkrafx63z493k7p5xb2mah7b21lb";
2020-07-18 11:30:05 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ncurses ];
2019-02-02 09:50:15 +00:00
# Some tests fail and/or attempt to use internet servers.
doCheck = false;
meta = with stdenv.lib; {
description = "Unit-aware calculator";
2020-07-18 11:30:05 +01:00
homepage = "https://rinkcalc.app";
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
};
}