mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
ion: init at 1.0.3
This commit is contained in:
parent
b963ba1bee
commit
3483c09f59
|
@ -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>";
|
||||
|
|
25
pkgs/shells/ion/default.nix
Normal file
25
pkgs/shells/ion/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue