lol
at 18.03-beta 25 lines 637 B view raw
1{ stdenv, fetchFromGitHub, rustPlatform }: 2 3with rustPlatform; 4 5buildRustPackage rec { 6 name = "ion-${version}"; 7 version = "1.0.5"; 8 9 src = fetchFromGitHub { 10 owner = "redox-os"; 11 repo = "ion"; 12 rev = version; 13 sha256 = "0i0acl5nw254mw8dbfmb4792rr71is98a5wg32yylfnlrk7zlf8z"; 14 }; 15 16 cargoSha256 = "0ffp6r5jqyf9j8jd77vbvc6l3xm09ipbraj6av6iciw1sxskib33"; 17 18 meta = with stdenv.lib; { 19 description = "Modern system shell with simple (and powerful) syntax"; 20 homepage = https://github.com/redox-os/ion; 21 license = licenses.mit; 22 maintainers = with maintainers; [ dywedir ]; 23 platforms = platforms.all; 24 }; 25}