datez: add libiconv for macOS
This commit is contained in:
parent
dbafabb5f4
commit
b0e68cc4fe
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, fetchFromGitHub, rustPlatform }:
|
{ lib, fetchFromGitHub, rustPlatform, libiconv }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "datez";
|
pname = "datez";
|
||||||
|
@ -16,6 +16,10 @@ rustPlatform.buildRustPackage rec {
|
||||||
cp ${./Cargo.lock} Cargo.lock
|
cp ${./Cargo.lock} Cargo.lock
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libiconv
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Convert a time into several timezones";
|
description = "Convert a time into several timezones";
|
||||||
homepage = "https://github.com/fanf2/datez";
|
homepage = "https://github.com/fanf2/datez";
|
||||||
|
|
Loading…
Reference in a new issue