nixpkgs/pkgs/shells/elvish/default.nix

24 lines
587 B
Nix
Raw Normal View History

{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "elvish-${version}";
2017-07-05 23:37:11 +03:00
version = "0.9";
goPackagePath = "github.com/elves/elvish";
src = fetchFromGitHub {
repo = "elvish";
owner = "elves";
2017-02-12 02:19:22 +03:00
rev = version;
2017-07-05 23:37:11 +03:00
sha256 = "0alsv04iihrk1nffp6fmyzxid26dqhg1k45957c2ymyzyq9cglxj";
};
meta = with stdenv.lib; {
2017-07-05 23:37:11 +03:00
description = "A friendly and expressive Unix shell";
homepage = https://github.com/elves/elvish;
license = licenses.bsd2;
maintainers = with maintainers; [ vrthra ];
2017-02-12 02:19:22 +03:00
platforms = with platforms; linux;
};
}