rink: 0.7.0 -> 0.8.0

authored by R. Ryantm and committed by Weijia Wang 3ddef8d0 781e589d

+5 -5
+5 -5
pkgs/applications/science/misc/rink/default.nix
··· 1 { lib, stdenv, fetchFromGitHub, rustPlatform, openssl, pkg-config, ncurses 2 - , libiconv, Security }: 3 4 rustPlatform.buildRustPackage rec { 5 - version = "0.7.0"; 6 pname = "rink"; 7 8 src = fetchFromGitHub { 9 owner = "tiffany352"; 10 repo = "rink-rs"; 11 rev = "v${version}"; 12 - sha256 = "sha256-5UrSJ/y6GxDUNaljal57JJY17NuI+2yLwVTwp+xBNxs="; 13 }; 14 15 - cargoHash = "sha256-G30NcP1ej01ygHzaxZ2OdgfksvXe/SCsmZFwamxlDvA="; 16 17 nativeBuildInputs = [ pkg-config ]; 18 buildInputs = [ ncurses ] 19 - ++ (if stdenv.isDarwin then [ libiconv Security ] else [ openssl ]); 20 21 # Some tests fail and/or attempt to use internet servers. 22 doCheck = false;
··· 1 { lib, stdenv, fetchFromGitHub, rustPlatform, openssl, pkg-config, ncurses 2 + , curl, libiconv, Security }: 3 4 rustPlatform.buildRustPackage rec { 5 + version = "0.8.0"; 6 pname = "rink"; 7 8 src = fetchFromGitHub { 9 owner = "tiffany352"; 10 repo = "rink-rs"; 11 rev = "v${version}"; 12 + hash = "sha256-2+ZkyWhEnnO/QgCzWscbMr0u5kwdv2HqPLjtiXDfv/o="; 13 }; 14 15 + cargoHash = "sha256-j1pQfMjDNu57otOBTVBQEZIx80p4/beEUQdUkAJhvso="; 16 17 nativeBuildInputs = [ pkg-config ]; 18 buildInputs = [ ncurses ] 19 + ++ (if stdenv.isDarwin then [ curl libiconv Security ] else [ openssl ]); 20 21 # Some tests fail and/or attempt to use internet servers. 22 doCheck = false;