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

@@ -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;
};
}