elvish: init at 0.1

A novel unix shell written in go language.
This commit is contained in:
Rahul Gopinath
2016-06-18 23:12:21 -07:00
parent 20a8349d62
commit 293d23abb4
4 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "elvish-${version}";
version = "0.1";
goPackagePath = "github.com/elves/elvish";
src = fetchFromGitHub {
repo = "elvish";
owner = "elves";
rev = "4125c2bb927330b0100b354817dd4ad252118ba6";
sha256 = "1xwhjbw0y6j5xy19hz39456l0v6vjg2icd7c1jx4h1cydk3yn39f";
};
goDeps = ./deps.json;
meta = with stdenv.lib; {
description = "A Novel unix shell in go language";
homepage = https://github.com/elves/elvish;
license = licenses.bsd2;
maintainers = with maintainers; [ vrthra ];
};
}

View File

@@ -0,0 +1,9 @@
[
{
"include": "../../libs.json",
"packages": [
"github.com/mattn/go-sqlite3",
"github.com/elves/getopt"
]
}
]