2021-05-18 19:17:47 -07:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security, libiconv }:
|
2017-07-08 17:23:53 -07:00
|
|
|
|
2020-03-27 16:17:03 -07:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 04:41:23 -07:00
|
|
|
pname = "ion";
|
2021-05-18 19:17:47 -07:00
|
|
|
version = "unstable-2021-05-10";
|
2017-07-08 17:23:53 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "redox-os";
|
|
|
|
repo = "ion";
|
2021-05-18 19:17:47 -07:00
|
|
|
rev = "1170b84587bbad260a3ecac8e249a216cb1fd5e9";
|
|
|
|
sha256 = "sha256-lI1GwA3XerRJaC/Z8vTZc6GzRDLjv3w768C+Ui6Q+3Q=";
|
2017-07-08 17:23:53 -07:00
|
|
|
};
|
|
|
|
|
2021-05-18 19:17:47 -07:00
|
|
|
cargoSha256 = "sha256-hURpgxc99iIMtzIlR6Kbfqcbu1uYLDHnfVLqgmMbvFA=";
|
2017-07-08 17:23:53 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-07-08 17:23:53 -07:00
|
|
|
description = "Modern system shell with simple (and powerful) syntax";
|
2020-03-27 16:17:03 -07:00
|
|
|
homepage = "https://gitlab.redox-os.org/redox-os/ion";
|
2017-07-08 17:23:53 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dywedir ];
|
|
|
|
};
|
2019-12-30 21:40:07 -08:00
|
|
|
|
2021-01-14 22:28:56 -08:00
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin [
|
2020-11-29 12:35:14 -08:00
|
|
|
Security
|
2021-05-18 19:17:47 -07:00
|
|
|
libiconv
|
2020-11-29 12:35:14 -08:00
|
|
|
];
|
|
|
|
|
2021-05-18 19:17:47 -07:00
|
|
|
doCheck = !stdenv.hostPlatform.isDarwin;
|
|
|
|
|
2019-12-30 21:40:07 -08:00
|
|
|
passthru = {
|
2020-03-07 12:17:27 -08:00
|
|
|
shellPath = "/bin/ion";
|
2019-12-30 21:40:07 -08:00
|
|
|
};
|
2017-07-08 17:23:53 -07:00
|
|
|
}
|