Skip to content

Commit

Permalink
ion: init at 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dywedir committed Jul 9, 2017
1 parent b963ba1 commit 3483c09
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/maintainers.nix
Expand Up @@ -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>";
Expand Down
25 changes: 25 additions & 0 deletions pkgs/shells/ion/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 3483c09

Please sign in to comment.