Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: aacb816eb6ad
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 154efd8ec558
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Jul 9, 2017

  1. ion: init at 1.0.3

    dywedir committed Jul 9, 2017
    Copy the full SHA
    3483c09 View commit details
  2. Merge pull request #27246 from dywedir/ion

    ion: init at 1.0.3
    Mic92 authored Jul 9, 2017
    Copy the full SHA
    154efd8 View commit details
Showing with 28 additions and 0 deletions.
  1. +1 −0 lib/maintainers.nix
  2. +25 −0 pkgs/shells/ion/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
1 change: 1 addition & 0 deletions lib/maintainers.nix
Original file line number Diff line number Diff line change
@@ -156,6 +156,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>";
25 changes: 25 additions & 0 deletions pkgs/shells/ion/default.nix
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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 { };