nixpkgs/pkgs/shells/ion/default.nix

27 lines
657 B
Nix
Raw Normal View History

2017-07-09 00:23:53 +00:00
{ stdenv, fetchFromGitHub, rustPlatform }:
with rustPlatform;
buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "ion";
2017-10-23 08:12:38 +00:00
version = "1.0.5";
2017-07-09 00:23:53 +00:00
src = fetchFromGitHub {
owner = "redox-os";
repo = "ion";
rev = version;
2017-10-23 08:12:38 +00:00
sha256 = "0i0acl5nw254mw8dbfmb4792rr71is98a5wg32yylfnlrk7zlf8z";
2017-07-09 00:23:53 +00:00
};
cargoSha256 = "1hs01b1rhbpafxlhw661k907rznqhcgyng85njkb99bg4lxwxaap";
2017-07-09 00:23:53 +00:00
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;
2018-09-03 20:38:15 +00:00
broken = stdenv.isDarwin;
2017-07-09 00:23:53 +00:00
};
}