mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
e11c3a08b0
* gucci: init at 0.1.0 * gucci: init at 0.1.0
31 lines
680 B
Nix
31 lines
680 B
Nix
{ 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;
|
|
};
|
|
}
|
|
|