ion: init at 1.0.3

This commit is contained in:
dywedir 2017-07-09 03:23:53 +03:00
parent b963ba1bee
commit 3483c09f59
3 changed files with 28 additions and 0 deletions

View file

@ -155,6 +155,7 @@
drewkett = "Andrew Burkett <burkett.andrew@gmail.com>";
dsferruzza = "David Sferruzza <david.sferruzza@gmail.com>";
dtzWill = "Will Dietz <nix@wdtz.org>";
dywedir = "Vladyslav M. <dywedir@protonmail.ch>";
e-user = "Alexander Kahl <nixos@sodosopa.io>";
ebzzry = "Rommel Martinez <ebzzry@gmail.com>";
edanaher = "Evan Danaher <nixos@edanaher.net>";

View file

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, rustPlatform }:
with rustPlatform;
buildRustPackage rec {
name = "ion-${version}";
version = "1.0.3";
src = fetchFromGitHub {
owner = "redox-os";
repo = "ion";
rev = version;
sha256 = "0c2haw9qiwysyp1xj6qla8d6zpsdlygagzh86sk04c2b4ssyaca3";
};
depsSha256 = "0w2jgbrcx57js8ihzs5acp6b1niw1c7khdxrv14y3z9mmm9j55hs";
meta = with stdenv.lib; {
description = "Modern system shell with simple (and powerful) syntax";
homepage = https://github.com/redox-os/ion;
license = licenses.mit;
maintainers = with maintainers; [ dywedir ];
platforms = platforms.all;
};
}

View file

@ -5032,6 +5032,8 @@ with pkgs;
fish-foreign-env = callPackage ../shells/fish-foreign-env { };
ion = callPackage ../shells/ion { };
mksh = callPackage ../shells/mksh { };
oh = callPackage ../shells/oh { };