at 17.09-beta 23 lines 587 B view raw
1{ stdenv, lib, buildGoPackage, fetchFromGitHub }: 2 3buildGoPackage rec { 4 name = "elvish-${version}"; 5 version = "0.9"; 6 7 goPackagePath = "github.com/elves/elvish"; 8 9 src = fetchFromGitHub { 10 repo = "elvish"; 11 owner = "elves"; 12 rev = version; 13 sha256 = "0alsv04iihrk1nffp6fmyzxid26dqhg1k45957c2ymyzyq9cglxj"; 14 }; 15 16 meta = with stdenv.lib; { 17 description = "A friendly and expressive Unix shell"; 18 homepage = https://github.com/elves/elvish; 19 license = licenses.bsd2; 20 maintainers = with maintainers; [ vrthra ]; 21 platforms = with platforms; linux; 22 }; 23}