linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / shells / ion / default.nix
blob77691e99b2550b89b95459ac1de26a83f330cb50
1 { lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
3 rustPlatform.buildRustPackage rec {
4   pname = "ion";
5   version = "unstable-2020-03-22";
7   src = fetchFromGitHub {
8     owner = "redox-os";
9     repo = "ion";
10     rev = "1fbd29a6d539faa6eb0f3186a361e208d0a0bc05";
11     sha256 = "0r5c87cs8jlc9kpb6bi2aypldw1lngf6gzjirf13gi7iy4q08ik7";
12   };
14   cargoSha256 = "1ph3r3vspy700mb8pica8478v9arqz07k2nzpbrdkdkqgfcwlgcg";
16   meta = with lib; {
17     description = "Modern system shell with simple (and powerful) syntax";
18     homepage = "https://gitlab.redox-os.org/redox-os/ion";
19     license = licenses.mit;
20     maintainers = with maintainers; [ dywedir ];
21   };
23   buildInputs = lib.optional stdenv.hostPlatform.isDarwin [
24     Security
25   ];
27   passthru = {
28     shellPath = "/bin/ion";
29   };