gucci: init at 0.1.0 (#49813)

* gucci: init at 0.1.0

* gucci: init at 0.1.0
This commit is contained in:
Brayden Willenborg
2018-11-07 10:21:55 +01:00
committed by Sarah Brofeldt
parent 5fc73fd52e
commit e11c3a08b0
4 changed files with 67 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "gucci-${version}";
version = "0.1.0";
goPackagePath = "github.com/noqcks/gucci";
src = fetchFromGitHub {
owner = "noqcks";
repo = "gucci";
rev = version;
sha256 = "0ksrmzb3iggc7gm51fl0jbb15d0gmpclslpkq2sl2xjzk29pkllq";
};
goDeps = ./deps.nix;
buildFlagsArray = ''
-ldflags=-X main.AppVersion=${version}
'';
meta = with stdenv.lib; {
description = "A simple CLI templating tool written in golang";
homepage = https://github.com/noqcks/gucci;
license = licenses.mit;
maintainers = [ maintainers.braydenjw ];
platforms = platforms.unix;
};
}