aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/shells/ion/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/shells/ion/default.nix')
-rw-r--r--nixpkgs/pkgs/shells/ion/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/shells/ion/default.nix b/nixpkgs/pkgs/shells/ion/default.nix
new file mode 100644
index 00000000000..c58302df210
--- /dev/null
+++ b/nixpkgs/pkgs/shells/ion/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchFromGitHub, rustPlatform }:
+
+with rustPlatform;
+
+buildRustPackage rec {
+ pname = "ion";
+ version = "1.0.5";
+
+ src = fetchFromGitHub {
+ owner = "redox-os";
+ repo = "ion";
+ rev = version;
+ sha256 = "0i0acl5nw254mw8dbfmb4792rr71is98a5wg32yylfnlrk7zlf8z";
+ };
+
+ cargoSha256 = "0f266kygvw2id771g49s25qsbqb6a0gr1r0czkcj96n5r0wg8wrn";
+
+ 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;
+ # This has not had a release since 2017, and no longer compiles with the
+ # latest Rust compiler.
+ broken = false;
+ };
+
+ passthru = {
+ shellPath = "/bin/ion";
+ };
+}